/* =====================================================================
   360DREAM — Estilos  (inspirado en Vouch: limpio, premium, modular)
   Paleta: navy profundo + acento esmeralda + detalles claros
   ===================================================================== */

:root {
  --navy-900: #0a1426;
  --navy-800: #0d1c34;
  --navy-700: #122a4d;
  --navy: #0f2240;
  --ink: #0f1b2d;
  --slate: #5a6b82;
  --line: #e6eaf0;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;

  --emerald: #0fa968;
  --emerald-dark: #0c8a55;
  --teal: #0e7c86;
  --gold: #c9a227;

  --grad-hero: radial-gradient(60% 120% at 80% 0%, #16365f 0%, rgba(10,20,38,0) 60%),
               radial-gradient(50% 100% at 0% 100%, #0c5a4d 0%, rgba(10,20,38,0) 55%),
               linear-gradient(160deg, #0a1426 0%, #0d2240 100%);

  --radius: 18px;
  --shadow: 0 20px 50px -24px rgba(15, 27, 45, .25);
  --maxw: 1180px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }

a { color: inherit; text-decoration: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: #fff; box-shadow: 0 12px 28px -12px rgba(15,169,104,.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(15,169,104,.8); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: .18em; color: rgba(255,255,255,.65);
  text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow--dark { color: var(--teal); }

.grad {
  background: linear-gradient(120deg, #2fd396 0%, #36c6f0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(15,27,45,.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.03em; display: inline-flex; align-items: center; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand--light .brand__logo { background: #fff; padding: 6px 10px; border-radius: 8px; }
.brand__mark {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__name { color: var(--ink); }
.brand--light .brand__name { color: #fff; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { padding: 10px 20px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-hero), #0a1426;
  color: #fff; padding: 110px 0 96px;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 70% 20%, rgba(54,198,240,.18), transparent 70%);
}
.hero__inner { position: relative; max-width: 820px; }
.hero__title { font-size: clamp(38px, 6vw, 68px); font-weight: 800; color: #fff; }
.hero__sub { margin: 22px 0 34px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.78); max-width: 620px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__trust { display: flex; align-items: center; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.trust__item { display: flex; flex-direction: column; }
.trust__item strong { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; }
.trust__item span { font-size: 13px; color: rgba(255,255,255,.6); }
.trust__divider { width: 1px; height: 38px; background: rgba(255,255,255,.18); }

/* ---------- SOCIAL PROOF ---------- */
.proof { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 36px 0; }
.proof__label { text-align: center; font-size: 12px; letter-spacing: .16em; color: var(--slate); font-weight: 600; margin-bottom: 20px; }
.proof__logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 44px; }
.proof__logos span { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #b3bdcc; letter-spacing: -.02em; }

/* ---------- SECTIONS ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
.section__lead { margin-top: 16px; color: var(--slate); font-size: 18px; }

/* ---------- CARDS (productos) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d3f0e2; }
.card__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 14px; background: linear-gradient(135deg, #eafaf2, #e6f6f6);
  color: var(--emerald-dark); margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { background: linear-gradient(135deg, var(--emerald), var(--teal)); color: #fff; transition: background .25s, color .25s; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15px; margin-bottom: 20px; }
.card__list { list-style: none; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.card__list li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--slate); }
.card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--teal)); }
.card__cta { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--emerald-dark); cursor: pointer; display: inline-flex; gap: 6px; transition: gap .2s; margin-top: auto; }
.card__cta:hover { gap: 12px; }
.card { display: flex; flex-direction: column; }

/* ---------- TABS (Personas / Empresas) ---------- */
.tabs { position: relative; display: inline-flex; gap: 4px; padding: 5px; margin: 0 auto 44px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; display: flex; width: fit-content; }
.tabs { left: 50%; transform: translateX(-50%); }
.tab { position: relative; z-index: 2; border: 0; background: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--slate);
  padding: 11px 34px; border-radius: 999px; transition: color .3s; }
.tab.active { color: #fff; }
.tabs__pill { position: absolute; z-index: 1; top: 5px; bottom: 5px; left: 5px; width: 120px;
  border-radius: 999px; background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 8px 18px -8px rgba(15,169,104,.7); transition: transform .35s cubic-bezier(.4,0,.2,1), width .35s; }
.tabpanel { display: none; animation: fadeUp .5s ease; }
.tabpanel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- NAV: mega-menú desplegable ---------- */
.nav__item { position: relative; }
/* el padding amplía el área de hover del botón hacia abajo para que el cursor
   nunca cruce un hueco vacío al ir hacia el menú; el margin negativo lo compensa */
.nav__drop { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--slate);
  padding: 26px 4px; margin: -26px -4px; transition: color .2s; }
.nav__drop:hover { color: var(--ink); }
.nav__drop svg { transition: transform .3s; }
.nav__item:hover .nav__drop svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  box-shadow: 0 24px 50px -20px rgba(15,27,45,.28);
  opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s; z-index: 40;
}
.nav__item:hover .dropdown,
.dropdown:hover { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown a { display: block; padding: 11px 14px; border-radius: 10px; transition: background .2s; cursor: pointer; }
.dropdown a:hover { background: var(--bg-alt); }
.dropdown a strong { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--ink); }
.dropdown a small { color: var(--slate); font-size: 13px; }

/* ---------- GRID3 (servicios) ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.feature__num { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--emerald); margin-bottom: 16px; }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--slate); font-size: 15px; }

/* ---------- STATS ---------- */
.stats { background: linear-gradient(135deg, #0a1426 0%, #122a4d 100%); color: #fff; padding: 60px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); font-weight: 800; display: block; }
.stat span { color: rgba(255,255,255,.65); font-size: 14px; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--slate); margin: 16px 0; font-size: 16px; }
.about__text .btn { margin-top: 12px; }
.about__card { background: linear-gradient(160deg, #0d1c34, #0a1426); border-radius: var(--radius); padding: 38px 34px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.checklist li { position: relative; padding-left: 36px; color: rgba(255,255,255,.9); font-size: 16px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; display: grid; place-items: center; font-size: 13px; font-weight: 700;
  border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--teal)); color: #fff;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.acc__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink);
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc__plus { font-size: 24px; color: var(--emerald); transition: transform .3s; line-height: 1; }
.acc__item.open .acc__plus { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__a p { padding: 0 24px 22px; color: var(--slate); font-size: 15px; }

/* ---------- CTA FINAL ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #0a1426, #0c5a4d); color: #fff; padding: 88px 0; text-align: center; }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(40% 80% at 50% 0%, rgba(47,211,150,.25), transparent 70%); pointer-events: none; }
.cta__inner { position: relative; max-width: 640px; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.78); font-size: 18px; margin-bottom: 30px; }

/* ---------- FOOTER ---------- */
.footer { background: #081120; color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 14px; font-size: 14px; max-width: 280px; }
.footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .04em; }
.footer__col a { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.65); transition: color .2s; cursor: pointer; }
.footer__col a:hover { color: #fff; }
.footer__muted { color: rgba(255,255,255,.4); font-size: 13px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

/* ---------- WHATSAPP FLOTANTE ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 30px -8px rgba(18,140,126,.7);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- REVEAL (animación scroll) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- HERO: orbes flotantes + degradado animado ---------- */
.hero { background-size: 160% 160%; animation: heroPan 18s ease-in-out infinite; }
@keyframes heroPan { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 30%; } }
.hero__glow::before, .hero__glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.hero__glow::before { width: 420px; height: 420px; top: -80px; right: -60px;
  background: radial-gradient(circle, #1f7a8c, transparent 70%); animation: float1 14s ease-in-out infinite; }
.hero__glow::after { width: 360px; height: 360px; bottom: -120px; left: -40px;
  background: radial-gradient(circle, #0c8a55, transparent 70%); animation: float2 16s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px, -30px); } }

/* brillo deslizante en botón primario */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
}
.btn--primary:hover::after { animation: shine .9s ease; }
@keyframes shine { to { left: 130%; } }

/* ---------- MARQUEE (logos infinitos) ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #b3bdcc; letter-spacing: -.02em; white-space: nowrap; transition: color .2s; }
.marquee__track span:hover { color: var(--teal); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- TESTIMONIOS (carrusel) ---------- */
.tcarousel { position: relative; overflow: hidden; }
.tcarousel__track { display: flex; gap: 24px; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.tcard {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
}
.tcard__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.tcard blockquote { font-size: 16px; color: var(--ink); line-height: 1.6; margin-bottom: 22px; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
}
.tcard figcaption strong { display: block; font-family: var(--font-display); font-size: 15px; }
.tcard figcaption small { color: var(--slate); font-size: 13px; }
.tcarousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.tbtn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  font-size: 22px; color: var(--ink); cursor: pointer; transition: all .2s; line-height: 1;
}
.tbtn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.tdots { display: flex; gap: 8px; }
.tdots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: all .25s; }
.tdots button.active { width: 24px; border-radius: 4px; background: var(--emerald); }

@media (max-width: 900px) { .tcard { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 720px) { .tcard { flex-basis: 100%; } }

/* ---------- PÁGINAS DE SERVICIO (internas) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--grad-hero), #0a1426; color: #fff; padding: 70px 0 78px; }
.page-hero__inner { position: relative; max-width: 780px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.8); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }
.page-hero__badge { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 16px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(15,169,104,.28), rgba(14,124,134,.28)); border: 1px solid rgba(255,255,255,.16); color: #fff; }
.page-hero__badge svg { width: 30px; height: 30px; }
.page-hero h1 { font-size: clamp(32px, 5.2vw, 56px); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.page-hero .lead { margin: 20px 0 30px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.78); max-width: 640px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.incexc { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.incexc__col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.incexc__col h3 { font-size: 19px; margin-bottom: 18px; }
.checklist--light li { color: var(--ink); }
.checklist--x li::before { content: "✕"; background: linear-gradient(135deg, #f07282, #d9455a); }

/* rejilla de 3 columnas para secciones con 6 tarjetas (balance visual) */
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* tabla comparativa */
.ctable__wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.ctable { width: 100%; border-collapse: collapse; background: #fff; min-width: 520px; }
.ctable th, .ctable td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--slate); }
.ctable thead th { background: var(--bg-alt); font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.ctable td:first-child, .ctable th:first-child { color: var(--ink); font-weight: 600; }
.ctable td:not(:first-child), .ctable th:not(:first-child) { text-align: center; }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable .yes { color: var(--emerald-dark); font-weight: 700; }
.ctable .no { color: #c2410c; font-weight: 600; }
.ctable .hl { background: rgba(15,169,104,.05); }

/* banner de enlace cruzado (persona <-> empresa) */
.xlink { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: linear-gradient(135deg, #0d1c34, #0a1426); color: #fff; border-radius: var(--radius); padding: 32px 36px; position: relative; overflow: hidden; }
.xlink::after { content: ""; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,169,104,.25), transparent 70%); pointer-events: none; }
.xlink__text { position: relative; max-width: 640px; }
.xlink h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.xlink p { color: rgba(255,255,255,.72); font-size: 15px; }
.xlink .btn { position: relative; white-space: nowrap; }

/* botón ghost legible sobre fondos claros (intro/about) */
.about .btn--ghost, .section .about__text .btn--ghost { color: var(--ink); border-color: var(--line); }
.about .btn--ghost:hover { background: var(--bg-alt); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .incexc { grid-template-columns: 1fr; } .cards--3 { grid-template-columns: 1fr; } .xlink { padding: 26px; } }
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px;
  }
  .nav__links.open > a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links.open .nav__item { width: 100%; }
  .nav__drop { width: 100%; justify-content: space-between; padding: 16px 0 8px; margin: 0;
    color: var(--ink); font-weight: 700; font-family: var(--font-display); }
  .nav__item:hover .nav__drop svg { transform: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible;
    width: 100%; box-shadow: none; border: 0; padding: 0 0 10px; border-bottom: 1px solid var(--line); }
  .dropdown::before { display: none; }
  .dropdown a { padding: 8px 10px; }
  .tabs { width: 100%; }
  .tab { flex: 1; padding: 11px 0; }
  .hero { padding: 80px 0 70px; }
  .hero__trust { gap: 18px; }
  .trust__divider { display: none; }
  .cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
}
