/* =========================
   Variables y estilos base
========================= */
:root {
  --navy: rgb(2, 35, 68);
  --cyan: rgb(0, 110, 137);
  --blue: rgb(1, 55, 91);
  --light-blue: #e9f7fa;
  --background: #f7fbfd;
  --white: #ffffff;
  --text: #17324d;
  --muted: #657a8e;
  --border: rgba(2, 35, 68, 0.1);
  --shadow: 0 25px 70px rgba(2, 35, 68, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
      linear-gradient(180deg, #f8fcfd 0%, #ffffff 42%, #f6fbfc 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

/* ====================================
   Sombras en las esquinas background
==================================== */
.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.page-glow-one {
  top: -180px;
  right: -170px;
  width: 520px;
  height: 520px;
  background: rgba(0, 164, 190, 0.12);
}

.page-glow-two {
  top: 680px;
  left: -260px;
  width: 520px;
  height: 520px;
  background: rgba(1, 55, 91, 0.08);
}

/* =========================
   Encabezado
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.header.scrolled {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(2, 35, 68, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 10px 25px rgba(0, 110, 137, 0.24);

  img {
    width: 85%;
    height: 85%;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav > a:not(.button) {
  position: relative;
  color: #35536e;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav > a:not(.button)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--cyan);
  content: "";
  transition: width 0.25s ease;
}

.nav > a:not(.button):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 110, 137, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--navy);
  transition: 0.25s ease;
}

/* =========================
   Botones
========================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 14px 30px rgba(0, 110, 137, 0.22);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 110, 137, 0.28);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button-secondary {
  border-color: var(--border);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-light {
  width: 100%;
  color: var(--navy);
  background: var(--white);
}

/* =========================
   Hero
========================= */
.hero {
  display: flex;
  min-height: 800px;
  align-items: center;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 110, 137, 0.14);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 110, 137, 0.07);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.15);
  color: #8ce0ef;
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #08a9c4);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.hero-trust div {
  display: grid;
  gap: 2px;
}

.hero-trust strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dashboard-scene {
  position: relative;
  perspective: 1200px;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 248, 250, 0.76));
  box-shadow: var(--shadow);
  transform: rotateY(-5deg) rotateX(2deg);
  backdrop-filter: blur(22px);
}

.dashboard-topbar,
.card-heading,
.asset-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar {
  padding-bottom: 20px;
}

.dashboard-topbar > div {
  display: grid;
}

.dashboard-label {
  color: var(--muted);
  font-size: 0.72rem;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #14744a;
  background: #e8f8ef;
  font-size: 0.68rem;
  font-weight: 700;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 5px rgba(43, 182, 115, 0.12);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-metrics article,
.chart-card,
.asset-list {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-metrics article {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.dashboard-metrics span,
.card-heading span {
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-metrics strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.dashboard-metrics small {
  color: var(--cyan);
  font-size: 0.62rem;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 12px;
}

.chart-card,
.asset-list {
  padding: 16px;
}

.card-heading strong {
  color: var(--navy);
  font-size: 0.75rem;
}

.chart {
  display: flex;
  height: 168px;
  align-items: flex-end;
  gap: 9px;
  margin-top: 22px;
  padding: 0 5px;
  border-bottom: 1px solid var(--border);
}

.chart span {
  flex: 1;
  height: var(--height);
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, #10b4ce, var(--blue));
  animation: chartGrow 1.2s ease both;
  transform-origin: bottom;
}

.asset-row {
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.asset-row:last-child {
  border-bottom: 0;
}

.asset-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--cyan);
  background: var(--light-blue);
  font-size: 0.64rem;
  font-weight: 800;
}

.asset-row > div {
  display: grid;
  flex: 1;
}

.asset-row strong {
  color: var(--navy);
  font-size: 0.72rem;
}

.asset-row small {
  color: var(--muted);
  font-size: 0.62rem;
}

.asset-status {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
}

.asset-status.online {
  color: #14744a;
  background: #e8f8ef;
}

.asset-status.warning {
  color: #9b6811;
  background: #fff5da;
}

.floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 36px rgba(2, 35, 68, 0.13);
  backdrop-filter: blur(14px);
  animation: floating 4s ease-in-out infinite;
}

.floating-card-one {
  bottom: -34px;
  left: -34px;
  display: grid;
  padding: 15px 20px;
}

.floating-card-one span {
  color: var(--muted);
  font-size: 0.68rem;
}

.floating-card-one strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.floating-card-two {
  top: 70px;
  right: -35px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  animation-delay: -1.5s;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 7px rgba(43, 182, 115, 0.11);
}

/* =========================
   Franja e información
========================= */
.logo-strip {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.logo-strip p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.industries-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: #668096;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.benefits-content h2,
.cta-card h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 45px rgba(2, 35, 68, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(0, 110, 137, 0.25);
  box-shadow: 0 24px 55px rgba(2, 35, 68, 0.11);
  transform: translateY(-8px);
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(2, 35, 68, 0.12);
  font-size: 2rem;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  color: var(--cyan);
  background: linear-gradient(135deg, #e9f7fa, #d9f1f5);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================
   Beneficios
========================= */
.section-dark {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 160, 184, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy), #001c37);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.benefits-content h2,
.cta-card h2 {
  color: var(--white);
}

.benefits-content > p {
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 15px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #8ce0ef;
  background: rgba(140, 224, 239, 0.1);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stats-panel article {
  display: grid;
  min-height: 185px;
  align-content: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.stats-panel strong {
  color: #8ce0ef;
  font-size: 2.4rem;
}

.stats-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

/* =========================
   Industrias
========================= */
.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.industry-tab {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.industry-tab.active,
.industry-tab:hover {
  border-color: var(--cyan);
  color: var(--white);
  background: var(--cyan);
}

.industry-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
  min-height: 420px;
  padding: 45px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.industry-panel h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.industry-panel p {
  color: var(--muted);
}

.industry-visual {
  position: relative;
  min-height: 310px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(0, 110, 137, 0.16), transparent 48%),
    linear-gradient(145deg, #f3fbfc, #e7f3f6);
}

.network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 94px;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(0, 110, 137, 0.18);
  border-radius: 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 25px rgba(2, 35, 68, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.node-main {
  top: 50%;
  left: 50%;
  min-width: 120px;
  min-height: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  transform: translate(-50%, -50%);
}

.node-one {
  top: 28px;
  left: 42px;
}

.node-two {
  top: 40px;
  right: 40px;
}

.node-three {
  bottom: 35px;
  left: 48px;
}

.node-four {
  right: 42px;
  bottom: 30px;
}

.connection {
  position: absolute;
  z-index: 1;
  width: 2px;
  height: 125px;
  background: linear-gradient(var(--cyan), transparent);
  transform-origin: bottom;
}

.line-one {
  top: 73px;
  left: 46%;
  transform: rotate(-53deg);
}

.line-two {
  top: 65px;
  right: 45%;
  transform: rotate(55deg);
}

.line-three {
  bottom: 70px;
  left: 46%;
  transform: rotate(55deg);
}

.line-four {
  right: 45%;
  bottom: 66px;
  transform: rotate(-55deg);
}

/* =========================
   Contacto y footer
========================= */
.cta-section {
  padding-top: 30px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 60px;
  padding: 55px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 181, 208, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 28px 65px rgba(2, 35, 68, 0.25);
}

.cta-card > div > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
}

.contact-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus {
  border-color: #8ce0ef;
  background: rgba(255, 255, 255, 0.12);
}

.contact-form input.is-invalid,
.contact-form label:has(.contact-form__error) input {
  border-color: #ffb4ab;
  box-shadow: 0 0 0 3px rgba(255, 180, 171, 0.14);
}

.contact-form__error {
  color: #ffd2cd;
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-form__summary {
  padding: 10px 12px;
  border: 1px solid rgba(255, 180, 171, 0.42);
  border-radius: 10px;
  color: #ffd2cd;
  background: rgba(117, 20, 12, 0.2);
  font-size: 0.75rem;
}

.contact-form__summary ul {
  margin: 0;
  padding-left: 18px;
}

.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  min-height: 20px;
  color: #a9effa;
  font-size: 0.75rem;
  text-align: center;
}

.form-message.is-success {
  padding: 10px 12px;
  border-radius: 10px;
  color: #d1fadf;
  background: rgba(18, 183, 106, 0.15);
}

.footer {
  padding: 32px 0;
  color: var(--muted);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-footer {
  font-size: 1rem;
}

.brand-footer .brand-icon {
  width: 35px;
  height: 35px;

  img {
    width: 70%;
  }
}

.footer p,
.footer span {
  font-size: 0.77rem;
}

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 50;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 12px 26px rgba(0, 110, 137, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================
   Animaciones
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes chartGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .benefits-grid,
  .industry-panel,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 85px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .dashboard-scene {
    max-width: 680px;
    margin: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    gap: 50px;
  }

  .industry-panel {
    gap: 30px;
  }

  .cta-card {
    gap: 35px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav > a {
    padding: 10px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-trust {
    flex-wrap: wrap;
  }

  .dashboard-card {
    padding: 14px;
    transform: none;
  }

  .dashboard-metrics,
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .floating-card-two {
    right: -8px;
  }

  .floating-card-one {
    left: -8px;
  }

  .features-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .industry-tabs {
    flex-wrap: wrap;
  }

  .industry-panel,
  .cta-card {
    padding: 28px;
  }

  .industries-inline {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 18px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    gap: 10px;
  }

  .status-pill {
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .industry-visual {
    min-height: 280px;
  }

  .network-node {
    min-width: 76px;
    font-size: 0.62rem;
  }

  .node-one {
    left: 15px;
  }

  .node-two {
    right: 15px;
  }

  .node-three {
    left: 15px;
  }

  .node-four {
    right: 15px;
  }
}
