:root {
  --navy-900: #0a1731;
  --navy-800: #0d1e42;
  --navy-700: #122a5a;
  --navy-600: #1b3a74;
  --gold-500: #c9a227;
  --gold-400: #d9b53d;
  --gold-300: #e8cd6d;
  --gold-grad: linear-gradient(
    135deg,
    #e8cd6d 0%,
    #c9a227 45%,
    #f0d98f 70%,
    #b8901d 100%
  );
  --cream: #f7f4ec;
  --ink: #1a2436;
  --muted: #5c6577;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(10, 23, 49, 0.45);
  --shadow-sm: 0 8px 24px -12px rgba(10, 23, 49, 0.35);
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.12;
  letter-spacing: 0.5px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  box-shadow: 0 10px 28px -10px rgba(201, 162, 39, 0.7);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -10px rgba(201, 162, 39, 0.85);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(232, 205, 109, 0.55);
}
.btn-ghost:hover {
  background: rgba(232, 205, 109, 0.12);
  transform: translateY(-3px);
}
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover {
  transform: translateY(-3px);
  background: var(--navy-700);
}

/* ---------- NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #000e29;
  border-bottom: 1px solid rgba(232, 205, 109, 0.22);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--white);
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: #d6ddec;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-300);
}
.nav-cta {
  padding: 11px 22px;
  font-size: 0.82rem;
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--gold-300);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(
      1100px 520px at 50% -10%,
      rgba(27, 58, 116, 0.55),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 85% 110%,
      rgba(201, 162, 39, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--navy-900),
      var(--navy-800) 60%,
      var(--navy-700)
    );
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 11vw, 150px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(232, 205, 109, 0.5) 1px,
    transparent 1px
  );
  background-size: 34px 34px;
  opacity: 0.06;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero p {
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  color: #c6d0e4;
  max-width: 640px;
  margin: 0 auto 38px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SERVICE CARDS ---------- */
.hero-services {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}
.svc-card {
  flex: 1 1 240px;
  max-width: 262px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 158px;
  box-shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.7);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
a.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px -18px rgba(232, 205, 109, 0.55);
}
.svc-card img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  display: block;
}
.svc-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}
a.svc-card:hover .svc-cta {
  color: var(--navy-700);
}
.svc-card.soon {
  opacity: 0.94;
  cursor: default;
}
.svc-card.soon img {
  filter: grayscale(0.15);
}
.svc-card.soon .svc-cta {
  color: #9aa3b5;
}
.svc-card.soon::after {
  content: "Próximamente";
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--gold-grad);
  color: var(--navy-900);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
/* Placeholder de Consultorios (mientras llega el logo) */
.svc-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
  text-align: center;
}
.svc-ph small {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: #123a86;
  text-transform: uppercase;
}
.svc-ph b {
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: #0a3a8c;
  line-height: 1;
}
.svc-ph .tag {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  color: #c9a227;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
}
.hero-stats {
  display: flex;
  gap: clamp(24px, 6vw, 64px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}
.hero-stats .stat b {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold-300);
  display: block;
}
.hero-stats .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fabc4;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--navy-800);
}
.about p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-panel::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gold-grad);
  opacity: 0.14;
  filter: blur(6px);
}
.about-panel h3 {
  font-size: 1.7rem;
  color: var(--gold-300);
  margin-bottom: 20px;
  position: relative;
}
.pillars {
  list-style: none;
  display: grid;
  gap: 16px;
  position: relative;
}
.pillars li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: #d6ddec;
  font-weight: 300;
}
.pillars li i {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 205, 109, 0.16);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ---------- SERVICES ---------- */
.services {
  background: linear-gradient(180deg, #fff, var(--cream));
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.sec-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 16px;
}
.sec-head p {
  color: var(--muted);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 23, 49, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
}
.card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-300);
}
.card h3 {
  font-size: 1.55rem;
  color: var(--navy-800);
  margin-bottom: 10px;
  font-weight: 700;
}
.card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.card ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--ink);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gold-grad);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ---------- FLOW ---------- */
.flow {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.flow .sec-head h2 {
  color: var(--white);
}
.flow .sec-head p {
  color: #b9c3da;
}
.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 150px;
  max-width: 210px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 205, 109, 0.22);
  border-radius: var(--radius);
  padding: 28px 18px;
  position: relative;
}
.step .num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy-900);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}
.step h4 {
  font-size: 1.05rem;
  color: var(--gold-300);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: "Montserrat";
}
.step p {
  font-size: 0.8rem;
  color: #aab6d0;
}
.flow-note {
  text-align: center;
  color: #b9c3da;
  max-width: 640px;
  margin: 44px auto 0;
  font-weight: 300;
}

/* ---------- WHY / GRID CHIPS ---------- */
.why {
  background: var(--cream);
}
.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.chip {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 23, 49, 0.05);
  display: flex;
  gap: 14px;
  align-items: center;
  transition: transform 0.25s;
}
.chip:hover {
  transform: translateY(-5px);
}
.chip .dot {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: grid;
  place-items: center;
}
.chip .dot svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-300);
}
.chip span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-800);
}

/* ---------- ENTERPRISE ---------- */
.enterprise .about-grid {
  grid-template-columns: 1.1fr 1fr;
}
.enterprise {
  background: linear-gradient(180deg, #fff, var(--cream));
}
.ent-panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  color: #fff;
  box-shadow: var(--shadow);
}
.ent-panel h3 {
  color: var(--gold-300);
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.ent-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ent-list li {
  font-size: 0.86rem;
  color: #d6ddec;
  font-weight: 300;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.ent-list li::before {
  content: "◆";
  color: var(--gold-400);
  font-size: 0.6rem;
  margin-top: 5px;
}
.enterprise h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 20px;
}
.enterprise > .wrap > .about-grid > div > p {
  color: var(--muted);
  margin-bottom: 26px;
}

/* ---------- AUDIENCE ---------- */
.audience {
  background: var(--cream);
}
.aud-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.aud {
  text-align: center;
  padding: 26px 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 23, 49, 0.05);
  transition:
    transform 0.25s,
    background 0.25s;
}
.aud:hover {
  transform: translateY(-6px);
}
.aud .ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: grid;
  place-items: center;
}
.aud .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-300);
}
.aud b {
  display: block;
  font-size: 0.82rem;
  color: var(--navy-800);
  font-weight: 600;
  font-family: "Montserrat";
}

/* ---------- VALUES ---------- */
.values {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
}
.values .sec-head h2 {
  color: #fff;
}
.values .sec-head p {
  color: #b9c3da;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.val {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 205, 109, 0.2);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
}
.val .vi {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
}
.val .vi svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy-900);
}
.val h4 {
  color: var(--gold-300);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: "Montserrat";
  font-weight: 600;
}
.val p {
  font-size: 0.82rem;
  color: #aab6d0;
  font-weight: 300;
}

/* ---------- MISSION / VISION ---------- */
.mv {
  background: var(--cream);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold-500);
  position: relative;
}
.mv-card .eyebrow {
  margin-bottom: 14px;
}
.mv-card h3 {
  font-size: 1.9rem;
  color: var(--navy-800);
  margin-bottom: 14px;
}
.mv-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- LOCATION ---------- */
.location {
  background: linear-gradient(180deg, #fff, var(--cream));
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.location h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 18px;
}
.location > .wrap > .loc-grid > div > p {
  color: var(--muted);
  margin-bottom: 26px;
}
.loc-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.loc-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  color: var(--navy-800);
}
.loc-list li i {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  font-style: normal;
}
.loc-list li i svg {
  width: 17px;
  height: 17px;
  stroke: var(--navy-900);
}
.loc-list li small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.78rem;
}
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  min-height: 340px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 40px;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(232, 205, 109, 0.4) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  opacity: 0.1;
}
.map-card .pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px -8px rgba(232, 205, 109, 0.6);
  position: relative;
}
.map-card .pin svg {
  width: 30px;
  height: 30px;
  stroke: var(--navy-900);
}
.map-card h4 {
  font-size: 1.5rem;
  color: var(--gold-300);
  position: relative;
  margin-bottom: 6px;
}
.map-card p {
  color: #c6d0e4;
  position: relative;
  font-weight: 300;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gold-grad);
  opacity: 0.1;
  filter: blur(30px);
}
.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}
.cta-band p {
  color: #c6d0e4;
  max-width: 560px;
  margin: 0 auto 34px;
  position: relative;
  font-weight: 300;
}
.cta-band .hero-actions {
  position: relative;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-900);
  color: #9fabc4;
  padding: 64px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}
.foot-brand .brand {
  margin-bottom: 8px;
}
.foot-brand .brand img {
  height: 130px;
}
.foot-brand p {
  font-size: 0.86rem;
  font-weight: 300;
  max-width: 280px;
}
footer h5 {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
footer ul li a {
  font-size: 0.86rem;
  font-weight: 300;
  transition: color 0.2s;
}
footer ul li a:hover {
  color: var(--gold-300);
}
.foot-contact li {
  font-size: 0.86rem;
  font-weight: 300;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.foot-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-400);
  flex: none;
  margin-top: 3px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 300;
}

/* ---------- REVEAL ANIM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .about-grid,
  .loc-grid,
  .mv-grid,
  .enterprise .about-grid {
    grid-template-columns: 1fr;
  }
  .chips {
    grid-template-columns: 1fr 1fr;
  }
  .aud-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ent-list {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(232, 205, 109, 0.2);
    padding: 10px 0;
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a {
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links .nav-cta {
    margin: 14px 24px;
    justify-content: center;
  }
  .burger {
    display: block;
  }
}
@media (max-width: 520px) {
  .chips,
  .aud-grid,
  .val-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    max-width: 100%;
    width: 100%;
  }
}
