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

:root {
  --brand: #4f46e5;
  --brand-2: #6366f1;
  --indigo-dark: #3730a3;
  --green: #10b981;
  --amber: #f59e0b;
  --ink: #0b1020;
  --muted: #5a6474;
  --line: rgba(15,23,42,.1);
  --bg-alt: #f5f6fb;
  --dark: #070b16;
  --dark-2: #0d1428;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(15,23,42,.10);
  --shadow-lg: 0 26px 60px rgba(79,70,229,.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography helpers ---------- */
section > .container > .eyebrow { display: block; text-align: center; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; color: var(--brand); margin-bottom: 14px; }
section > .container > h2.sec { text-align: center; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.6px; line-height: 1.15; }
section > .container > .sec-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 14px auto 46px; font-size: 17px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 14px; font-weight: 700; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, filter .16s; white-space: nowrap; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 26px rgba(79,70,229,.4); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(79,70,229,.5); filter: saturate(1.1); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: #fff; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: #f0f1ff; }
.btn-light { background: #fff; color: var(--brand); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: 11px; }

/* ================= NAV ================= */
.nav { position: fixed; top: 0; width: 100%; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s; background: transparent; }
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(16px); box-shadow: 0 6px 24px rgba(15,23,42,.06); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.brand-logo { width: 36px; height: 36px; }
.brand-name { color: #fff; transition: color .3s; }
.nav.scrolled .brand-name { color: var(--ink); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 600; color: rgba(255,255,255,.9); font-size: 15px; position: relative; transition: color .2s; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--brand); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--brand-2); transition: width .25s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav.dark { background: rgba(7,11,22,.7); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav.dark .brand-name, .nav.dark .nav-links a:hover { color: #fff; }
.nav.dark .nav-links a { color: rgba(255,255,255,.85); }
.nav.dark.scrolled { background: rgba(255,255,255,.85); border-bottom-color: var(--line); }
.nav.dark.scrolled .brand-name { color: var(--ink); }
.nav.dark.scrolled .nav-links a { color: var(--muted); }
.nav.dark.scrolled .nav-links a:hover { color: var(--brand); }
.nav-cta { padding: 10px 20px; }

/* ================= HERO ================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 90px; background: linear-gradient(150deg, #0b1020 0%, #191446 55%, #24205e 100%); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: float 12s ease-in-out infinite; }
.hero-bg .blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #6366f1, transparent 70%); top: -160px; right: -80px; }
.hero-bg .blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, #10b981, transparent 70%); bottom: -160px; left: -100px; animation-delay: -4s; }
.hero-bg .blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, #f59e0b, transparent 70%); top: 30%; left: 40%; opacity: .3; animation-delay: -8s; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.08); } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero .pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.4); color: #6ee7b7; padding: 7px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 600; margin-bottom: 24px; }
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6);} 70% { box-shadow: 0 0 0 10px rgba(16,185,129,0);} 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0);} }
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; color: #fff; }
.hero h1 .grad { background: linear-gradient(120deg, #818cf8, #34d399); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin: 22px 0 30px; font-size: clamp(16px, 2vw, 19px); color: #c4cbe0; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: 30px; font-weight: 800; color: #fff; }
.hero-stats .stat .num em { font-style: normal; color: #34d399; }
.hero-stats .stat .lbl { font-size: 13px; color: #aab1c9; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card { position: relative; width: 100%; max-width: 460px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 26px; padding: 28px; backdrop-filter: blur(14px); box-shadow: 0 40px 90px rgba(0,0,0,.4); }
.hero-card .chip { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; font-size: 15px; }
.hero-card .chip span { font-size: 26px; }
.hero-card .chart { margin: 20px 0; width: 100%; height: auto; }
.hero-card .card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card .card-foot .flo { color: #aab3cc; font-size: 13px; }
.hero-card .card-foot .amount { color: #34d399; font-weight: 800; font-size: 17px; }
.float-chip { position: absolute; background: rgba(255,255,255,.95); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-lg); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.float-chip .ic { font-size: 22px; }
.float-chip small { display: block; font-weight: 600; color: var(--muted); font-size: 11.5px; }
.float-chip b { color: var(--ink); font-size: 15px; }
.float-1 { top: -10px; left: -16px; animation: rise 5s ease-in-out infinite; }
.float-2 { bottom: 40px; right: -14px; animation: rise 6s ease-in-out infinite; animation-delay: -2s; }
@keyframes rise { 0%,100%{ transform: translateY(0);} 50% { transform: translateY(-12px);} }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 4px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0);} 100% { opacity: 0; transform: translateY(12px);} }

/* ================= MARQUEE ================= */
.marquee { background: var(--dark-2); padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: scrollX 28s linear infinite; width: max-content; }
.marquee-track span { color: rgba(255,255,255,.55); font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.marquee-track .dot { color: var(--green); }
@keyframes scrollX { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ================= SECTIONS ================= */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(150deg, var(--dark), var(--dark-2)); color: #e7eaf4; }
.section-dark h2 { color: #fff; }
.section-dark .sec-sub { color: #a9b1c9; }

/* ================= CARDS ================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { position: relative; display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(99,102,241,.06), transparent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,.4); }
.card:hover::before { opacity: 1; }
.card .card-icon { font-size: 34px; background: #eef0ff; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 16px; }
.card h3 { margin: 18px 0 8px; font-size: 19px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--brand); font-weight: 700; font-size: 14.5px; }
.card .card-more .arr { transition: transform .2s; }
.card:hover .card-more .arr { transform: translateX(4px); }
.card-cta { border: 2px dashed var(--brand-2); background: linear-gradient(135deg,#f6f6ff,#ffffff); }

/* ================= VIDEO ================= */
.video-mount { max-width: 540px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: 0 30px 70px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.1); }

/* ================= STEPS (timeline) ================= */
.steps { list-style: none; position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 20px; }
.steps::before { content: ""; position: absolute; top: 42px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--brand), var(--green)); opacity: .18; border-radius: 3px; }
.step { position: relative; text-align: center; padding: 0 10px; }
.step .num { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: #fff; border: 3px solid #eef0ff; color: var(--brand); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 6px 18px rgba(79,70,229,.18); }
.step:nth-child(2) .num { border-color: #e0e7ff; background: #eef2ff; }
.step .icon { font-size: 30px; margin-bottom: 10px; }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ================= FEATURES ================= */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .2s; }
.feature:hover { transform: translateY(-5px); }
.feature-img { width: 100%; height: auto; border-radius: 13px; margin-bottom: 16px; }
.feature h3 { margin-bottom: 8px; font-size: 18px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ================= STATS BAND ================= */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 18px; box-shadow: var(--shadow); }
.stat-card .big { font-size: 40px; font-weight: 800; background: linear-gradient(135deg, var(--brand), var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .lbl { color: var(--muted); font-size: 14px; margin-top: 4px; font-weight: 500; }

/* ================= TESTIMONIALS ================= */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.testi .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: var(--muted); font-size: 14.5px; flex: 1; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--green)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi .who b { display: block; font-size: 14.5px; }
.testi .who small { color: var(--muted); font-size: 12.5px; }

/* ================= FAQ ================= */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 16.5px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--ink); font-family: inherit; }
.faq-q .plus { width: 26px; height: 26px; border-radius: 8px; background: #eef0ff; color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 700; transition: transform .3s; font-size: 18px; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 20px; color: var(--muted); font-size: 15px; }

/* ================= ADVISORS ================= */
.advisors { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.advisor { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.advisor:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.advisor-avatar { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--green)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px; margin: 0 auto 16px; box-shadow: 0 10px 24px rgba(79,70,229,.3); }
.advisor .cert { color: var(--green); font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }
.advisor h3 { font-size: 18px; }
.advisor-role { color: var(--muted); font-size: 13.5px; display: block; margin: 6px 0 16px; }
.advisor-phone { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; margin-bottom: 16px; color: var(--ink); }
.advisor-phone:hover { color: var(--brand); }
.advisor .btn { width: 100%; justify-content: center; }

.contact-bar { margin-top: 34px; background: linear-gradient(135deg,var(--dark),#1b2150); color: #fff; border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.contact-bar strong { display: block; font-size: 13.5px; color: #aab3d0; font-weight: 600; margin-bottom: 4px; }
.phone-lg { font-size: 24px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.phone-lg:hover { color: #a5f3cb; }

/* ================= LOCATION ================= */
.location { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; align-items: stretch; }
.location-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.location-info h3 { margin-bottom: 16px; font-size: 20px; }
.loc-row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.loc-row .loc-ic { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px; background: #eef0ff; color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.loc-row .loc-ic b { font-size: 15px; }
.loc-row small { color: var(--muted); font-size: 13.5px; }
.loc-row h4 { font-size: 15px; }
.loc-note { font-size: 13.5px; color: var(--muted); background: #eef2ff; padding: 12px 16px; border-radius: 12px; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.location-map iframe { display: block; }

/* ================= FOOTER ================= */
.footer { background: var(--dark); color: #c3cad9; padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer .brand-name { color: #fff; }
.footer-tagline { margin: 14px 0 20px; color: #8f99ad; max-width: 300px; font-size: 14.5px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--brand); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 15px; }
.footer-grid a { display: block; padding: 5px 0; color: #a3adc2; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-meta { font-size: 14.5px; margin-bottom: 8px; }
.footer-meta a { display: inline; padding: 0; }
.footer-newsletter .nl-form { display: flex; gap: 8px; margin-top: 4px; }
.footer-newsletter input { flex: 1; padding: 11px 14px; border-radius: 11px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-family: inherit; }
.footer-newsletter input:focus { outline: none; border-color: var(--brand-2); }
.footer-newsletter input::placeholder { color: #6c7690; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; text-align: center; font-size: 13px; color: #7c8698; }
.disclaimer { margin-top: 12px; font-size: 12px; max-width: 820px; margin-left: auto; margin-right: auto; opacity: .85; }

/* ================= REVEAL / ANIM ================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* scroll-to-top */
.totop { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(79,70,229,.4); z-index: 90; font-size: 20px; }
.totop.show { display: flex; animation: pop .3s ease; }
@keyframes pop { from { transform: scale(.7); opacity: 0;} to { transform: scale(1); opacity: 1;} }

/* ================= SERVICIOS PAGE ================= */
.svc { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.svc-media .svc-img { width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow); }
.svc-body h2 { font-size: clamp(26px,3vw,34px); letter-spacing: -.02em; margin-bottom: 12px; }
.svc-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); background: #eef0ff; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.svc-sub { color: var(--muted); margin-bottom: 20px; font-size: 16.5px; }
.svc-body h4 { margin-bottom: 12px; color: var(--ink); font-size: 16px; }
.svc-list { margin: 0 0 18px 20px; }
.svc-list li { margin: 8px 0; color: var(--muted); position: relative; }
.svc-list li::marker { color: var(--brand); }
.svc-note { font-size: 13px; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.svc-contact { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 18px; margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.svc-contact span, .svc-contact strong { font-weight: 700; }
.svc-contact a { color: var(--muted); font-weight: 600; }
.svc-contact a[href^="tel"], .svc-contact a[href^="http"] { color: var(--ink); }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: 11px; }
@media (max-width: 860px) { .svc { grid-template-columns: 1fr; } }

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero .lead, .hero p, .hero-actions, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .hero-stats { justify-content: center; }
  .cards, .feature-grid, .advisors, .testi-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .steps::before { display: none; }
  .location { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 580px) {
  .cards, .feature-grid, .advisors, .testi-grid, .stats-band { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}