/* =================================================================
   STRATOS ASESORES — Design System
   Brand: Navy #1d1a55 · Orange #ec6907 / #ea5b13 · Cream #F5F2F0
   Type: Oswald (display) · Montserrat (headings) · Lato (body)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy:        #1d1a55;
  --navy-700:    #16143f;
  --navy-900:    #0f0d2b;
  --orange:      #ec6907;
  --orange-deep: #ea5b13;
  --cream:       #f5f2f0;
  --white:       #ffffff;
  --ink:         #1b1b29;
  --muted:       #5b5b6b;
  --line:        #e6e2df;

  --grad-orange: linear-gradient(135deg, #ec6907 0%, #ea5b13 100%);
  --grad-navy:   linear-gradient(160deg, #1d1a55 0%, #0f0d2b 100%);

  --shadow-sm: 0 2px 8px rgba(15,13,43,.06);
  --shadow-md: 0 10px 30px rgba(15,13,43,.10);
  --shadow-lg: 0 24px 60px rgba(15,13,43,.16);

  --radius:    14px;
  --radius-lg: 22px;
  --container:  1400px;

  --ff-display: "Oswald", "Arial Narrow", sans-serif;
  --ff-head:    "Montserrat", system-ui, sans-serif;
  --ff-body:    "Lato", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.06; letter-spacing: .01em; color: var(--navy); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
p { color: var(--muted); }
strong { color: var(--ink); }

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
@media (min-width: 768px)  { .container { padding-inline: 40px; } }
@media (min-width: 1280px) { .container { padding-inline: 56px; } }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #d9d8ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  padding: 15px 30px; border-radius: 50px; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: 0 10px 24px rgba(236,105,7,.32); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(236,105,7,.42); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: transform .38s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 52px; width: auto; display: block; }
.logo__mark { width: 42px; height: 42px; object-fit: contain; }
.logo__text { display: flex; flex-direction: column; line-height: .98; }
.logo__text b { font-family: var(--ff-display); font-weight: 700; font-size: 1.32rem; letter-spacing: .14em; color: var(--navy); text-transform: uppercase; }
.logo__text span { font-family: var(--ff-display); font-weight: 500; font-size: .82rem; letter-spacing: .42em; color: var(--orange); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem;
  color: var(--navy); padding: 10px 16px; border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--orange); }
.nav a.is-active { color: var(--orange); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--orange); border-radius: 2px;
}

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 10px; min-width: 290px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 12px 14px; border-radius: 10px; }
.dropdown a:hover { background: var(--cream); }
.dropdown a b { display: block; font-family: var(--ff-head); color: var(--navy); font-size: .95rem; }
.dropdown a small { color: var(--muted); font-size: .82rem; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: .3s var(--ease); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
  background: var(--navy); color: #fff; z-index: 200;
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 90px 28px 40px; display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { font-family: var(--ff-head); font-weight: 600; padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.05rem; }
.mobile-nav a small { display: block; font-weight: 400; color: #b9b8da; font-size: .8rem; }
.mobile-nav .btn { margin-top: 18px; justify-content: center; }
.mobile-nav__close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; }
.overlay { position: fixed; inset: 0; background: rgba(15,13,43,.5); z-index: 150; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  padding: clamp(80px,12vw,150px) 0 clamp(90px,12vw,140px);
  background:
    linear-gradient(105deg, rgba(15,13,43,.94) 0%, rgba(29,26,85,.84) 50%, rgba(29,26,85,.70) 100%),
    url('../hero-bg.jpg') center/cover no-repeat;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__star { position: absolute; opacity: .07; color: var(--orange); }
.hero__star--1 { top: -60px; right: -40px; width: 380px; }
.hero__star--2 { bottom: -80px; left: -60px; width: 300px; opacity: .05; }
.hero__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(236,105,7,.35), transparent 70%); top: -160px; right: -120px; filter: blur(20px); }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin: 18px 0 22px; }
.hero h1 .accent { color: var(--orange); }
.hero__lead { font-size: 1.18rem; color: #c9c8e6; max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero .eyebrow { color: #ffb877; }
.hero .eyebrow::before { background: #ffb877; }

.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 34px; backdrop-filter: blur(6px);
}
.hero__card h3 { color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.hero__card p { color: #c1c0e0; font-size: .98rem; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.hero__stat b { font-family: var(--ff-display); font-size: 2.4rem; color: var(--orange); display: block; line-height: 1; }
.hero__stat span { font-size: .85rem; color: #b9b8da; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--orange); color: #fff; }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-block: 26px; }
.trustbar__item { display: flex; align-items: center; gap: 12px; font-family: var(--ff-head); font-weight: 600; font-size: .95rem; }
.trustbar__item svg { width: 26px; height: 26px; flex-shrink: 0; }

/* ---------- Service cards ---------- */
.cards { display: grid; gap: 30px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; left:0; top:0; height:4px; width:0; background: var(--grad-orange); transition: width .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--cream);
  display: grid; place-items: center; margin-bottom: 22px; color: var(--orange);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .card__icon { background: var(--grad-orange); color: #fff; }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 22px; }
.card__link { font-family: var(--ff-head); font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; transition: gap .25s var(--ease), color .25s var(--ease); }
.card__link svg { width: 16px; height: 16px; }
.card:hover .card__link { color: var(--orange); gap: 14px; }

/* feature list inside cards */
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag { font-family: var(--ff-head); font-size: .76rem; font-weight: 600; color: var(--navy); background: var(--cream); padding: 6px 12px; border-radius: 50px; }

/* ---------- Feature / about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--grad-orange); color: #fff;
  padding: 22px 28px; border-radius: 18px; box-shadow: var(--shadow-md);
}
.split__badge b { font-family: var(--ff-display); font-size: 2.6rem; display: block; line-height: 1; }
.split__badge span { font-family: var(--ff-head); font-size: .82rem; letter-spacing: .04em; }
.split h2 { margin: 14px 0 20px; }
.split p + p { margin-top: 16px; }

/* check list */
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.checklist svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ---------- Pillars (Mision/Vision/Proposito) ---------- */
.pillar { background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar__pill { display:inline-block; font-family: var(--ff-head); font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:#fff; background: var(--grad-orange); padding:7px 16px; border-radius:50px; margin-bottom:18px; }
.pillar h3 { color: var(--navy); margin-bottom: 10px; font-family: var(--ff-head); font-weight: 700; }
.section--navy .pillar { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--navy .pillar h3 { color:#fff; }
.section--navy .pillar p { color:#c1c0e0; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat b { font-family: var(--ff-display); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--orange); display:block; line-height:1; }
.stat span { font-family: var(--ff-head); font-weight: 600; color:#fff; font-size: .92rem; letter-spacing:.03em; }
.stat small { display:block; color:#b9b8da; font-size:.82rem; margin-top:4px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.member { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.member__photo { position: relative; aspect-ratio: 3/3.4; overflow:hidden; background: var(--cream); }
.member__photo img { width:100%; height:100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); }
.member__role-tag { position:absolute; top:16px; left:16px; background: rgba(29,26,85,.92); color:#fff; font-family: var(--ff-head); font-weight:600; font-size:.72rem; padding:6px 12px; border-radius:50px; }
.member__body { padding: 24px; }
.member__body h3 { font-family: var(--ff-head); font-weight:700; font-size:1.2rem; color: var(--navy); margin-bottom:4px; }
.member__body .role { font-family: var(--ff-head); font-weight:600; color: var(--orange); font-size:.9rem; margin-bottom:14px; }
.member__body p { font-size:.92rem; line-height:1.6; }
.member__creds { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.member__creds span { font-size:.72rem; font-weight:600; font-family:var(--ff-head); color:var(--navy); background:var(--cream); padding:5px 10px; border-radius:6px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-orange); color:#fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,68px); text-align:center; position:relative; overflow:hidden; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width:600px; margin: 14px auto 30px; font-size:1.1rem; }
.cta-band__actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-band__star { position:absolute; opacity:.12; color:#fff; width:280px; top:-60px; right:-40px; }

/* Full-width (full-bleed) CTA band */
.cta-full { background: var(--grad-orange); color:#fff; position:relative; overflow:hidden; text-align:center; padding: clamp(60px,9vw,120px) 0; }
.cta-full h2 { color:#fff; }
.cta-full p { color: rgba(255,255,255,.92); max-width:640px; margin:14px auto 32px; font-size:1.14rem; }
.cta-full .cta-band__actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-full .cta-band__star { position:absolute; opacity:.12; color:#fff; width:340px; top:-70px; right:-50px; }
.cta-full .cta-band__star--left { right:auto; left:-60px; top:auto; bottom:-80px; width:300px; opacity:.1; }

/* ---------- Contact / Forms ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap:50px; align-items:start; }
.info-list { display:grid; gap:18px; margin-top:30px; }
.info-item { display:flex; gap:18px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px 22px; transition: box-shadow .3s var(--ease); }
.info-item:hover { box-shadow: var(--shadow-sm); }
.info-item__icon { width:48px; height:48px; border-radius:12px; background: var(--cream); color: var(--orange); display:grid; place-items:center; flex-shrink:0; }
.info-item__icon svg { width:22px; height:22px; }
.info-item b { display:block; font-family:var(--ff-head); color:var(--navy); font-size:.95rem; }
.info-item span, .info-item a { color: var(--muted); font-size:.98rem; }
.info-item a:hover { color: var(--orange); }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); }
.form__row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { margin-bottom:18px; }
.field label { display:block; font-family:var(--ff-head); font-weight:600; font-size:.85rem; color:var(--navy); margin-bottom:8px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width:100%; padding:14px 16px; border:1.5px solid var(--line); border-radius:12px;
  font-family: var(--ff-body); font-size:1rem; color:var(--ink); background:#fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(236,105,7,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width:100%; justify-content:center; margin-top: 6px; }
.form__note { font-size:.82rem; color: var(--muted); text-align:center; margin-top:14px; }

.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); border:1px solid var(--line); }
.map-embed iframe { display:block; width:100%; height:340px; border:0; }

/* Full-width map */
.map-full { line-height:0; }
.map-full iframe { display:block; width:100%; height:480px; border:0; }
@media (max-width:600px){ .map-full iframe { height:380px; } }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  color:#fff; padding: clamp(70px,10vw,120px) 0 clamp(56px,7vw,90px); position:relative; overflow:hidden;
  background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero__star { position:absolute; opacity:.06; color:var(--orange); width:340px; top:-50px; right:-30px; }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { color:#fff; margin:16px 0 16px; }
.page-hero p { color:#c9c8e6; max-width:640px; font-size:1.12rem; }
.breadcrumb { font-family:var(--ff-head); font-size:.85rem; color:#b9b8da; display:flex; gap:10px; align-items:center; }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color:#b9b8da; padding-top: 72px; }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px; }
.footer .logo__text b { color:#fff; }
.footer__about p { margin-top:18px; font-size:.95rem; color:#9d9cc4; max-width:300px; }
.footer h4 { color:#fff; font-family:var(--ff-head); font-weight:700; letter-spacing:.04em; margin-bottom:20px; font-size:1rem; }
.footer__links a { display:block; padding:7px 0; color:#a9a8cc; font-size:.95rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer__links a:hover { color: var(--orange); padding-left:6px; }
.footer__contact li { display:flex; gap:12px; margin-bottom:14px; font-size:.93rem; color:#a9a8cc; align-items:flex-start; }
.footer__contact svg { width:18px; height:18px; color:var(--orange); flex-shrink:0; margin-top:3px; }
.socials { display:flex; gap:12px; margin-top:20px; }
.socials a { width:42px; height:42px; border-radius:10px; background: rgba(255,255,255,.07); display:grid; place-items:center; color:#fff; transition: background .25s var(--ease), transform .25s var(--ease); }
.socials a:hover { background: var(--grad-orange); transform: translateY(-3px); }
.socials svg { width:20px; height:20px; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.08); padding:24px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color:#8584ad; }
.footer__bottom .slogan { color: var(--orange); font-family:var(--ff-display); letter-spacing:.18em; text-transform:uppercase; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap:44px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap:40px; }
  .grid-3, .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav, .header__cta .btn { display:none; }
  .nav-toggle { display:flex; }
  .stats { grid-template-columns: repeat(2,1fr); gap:36px 20px; }
  .split__badge { left:0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .team-grid, .cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .trustbar .container { justify-content:flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .logo__text b { font-size: 1.12rem; }
  .logo__img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
}
