/* ====== Tokens ====== */
:root {
  --navy: #1B2B4B; --navy-700: #243a66; --navy-50: #eef1f7;
  --amber: #F59E0B; --amber-600: #d98506;
  --off-white: #F9FAFB; --ink: #0f172a; --muted: #5b6577; --line: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 6px 16px -6px rgba(15,23,42,.12), 0 4px 8px -4px rgba(15,23,42,.06);
  --shadow-lg: 0 24px 48px -16px rgba(15,23,42,.18);
  --radius: 14px; --radius-lg: 22px; --container: 1180px;
}

/* ====== Base ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: var(--ink); background: var(--off-white); line-height: 1.55; font-weight: 400; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--navy); margin: 0; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-weight: 800; font-size: clamp(2rem, 4.5vw + 1rem, 3.75rem); }
h2 { font-weight: 700; font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem); }
h3 { font-weight: 600; font-size: 1.125rem; }
p { margin: 0; text-wrap: pretty; color: #334155; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-600); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--amber); display: inline-block; }
.muted { color: var(--muted); }

/* ====== Buttons ====== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; white-space: nowrap; min-height: 48px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-600); }
.btn-navy { background: var(--navy); color: var(--amber); }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-whatsapp { background: #25D366; color: #082b14; }
.btn-whatsapp:hover { filter: brightness(.95); }
.btn-facebook { background: #1877F2; color: #fff; }
.btn-facebook:hover { filter: brightness(.95); }
.btn-call { background: var(--navy); color: #fff; }
.btn-call:hover { background: var(--navy-700); }
.btn-google { background: #fff; color: #3c4043; border-color: #dadce0; box-shadow: var(--shadow-sm); }
.btn-google:hover { background: #f8f9fa; box-shadow: var(--shadow-md); }

/* ====== Navbar ====== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(249,250,251,0.85); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-mark { height: 40px; display: inline-flex; align-items: center; --mark-bg: var(--navy); --mark-fg: var(--amber); filter: drop-shadow(0 1px 2px rgba(15,23,42,.08)); }
.logo-mark svg { height: 100%; width: auto; display: block; }
.logo-text { line-height: 1; }
.logo-text .top { font-weight: 800; font-size: 1.4rem; color: var(--navy); letter-spacing: -0.02em; }
.logo-text .sub { display: block; font-size: 0.66rem; font-weight: 500; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: none; gap: 4px; }
.nav-link { padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; color: var(--navy); transition: background .15s ease, color .15s ease; }
.nav-link:hover { background: var(--navy-50); }
.nav-link.active { background: var(--navy); color: #fff; }
.nav-cta { display: none; }
.nav-burger { display: inline-grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 12px; }
.nav-burger i { color: var(--navy); font-size: 1.1rem; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 24px; border-bottom: 1px solid var(--line); background: var(--off-white); }
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 14px 16px; border-radius: 12px; font-size: 1rem; }
.mobile-menu .btn { margin-top: 8px; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } .nav-cta { display: inline-flex; } .nav-burger { display: none; } .mobile-menu { display: none !important; } }

/* ====== Sections ====== */
section { padding: 72px 0; }
@media (max-width: 700px) { section { padding: 48px 0; } }

/* ====== Hero ====== */
.hero { position: relative; background: radial-gradient(1200px 600px at 90% -10%, rgba(245,158,11,0.18), transparent 60%), radial-gradient(800px 500px at -10% 110%, rgba(36,58,102,0.16), transparent 60%), linear-gradient(180deg, #fff, var(--off-white)); padding: 88px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.hero h1 span.amber { color: var(--amber-600); }
.hero p.lead { font-size: 1.125rem; color: #334155; margin-top: 18px; max-width: 56ch; }
.hero .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .85rem; font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm); }
.pill-highlight { background: #FAEEDA; border-color: #EF9F27; }
.pill-highlight i, .pill-highlight { color: #633806; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-card { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: repeating-linear-gradient(45deg, rgba(27,43,75,0.04) 0 12px, transparent 12px 24px), linear-gradient(160deg, #eaf0fb, #fff); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; place-items: center; }
.hero-badge { position: absolute; left: 18px; bottom: 18px; background: var(--navy); color: #fff; border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.hero-badge .price { font-weight: 800; font-size: 1.4rem; color: var(--amber); line-height: 1; }
.hero-badge .lbl { font-size: .72rem; color: #cbd5e1; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; display: block; }
.hero-rating { position: absolute; right: 18px; top: 18px; background: #fff; border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); font-size: .8rem; font-weight: 600; color: var(--navy); }
.hero-rating i { color: var(--amber); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); }

/* ====== Trust bar ====== */
.trust { background: var(--navy); color: #fff; }
.trust-inner { display: grid; grid-template-columns: 1fr; gap: 18px; padding: 22px 0; align-items: center; text-align: center; }
@media (min-width: 800px) { .trust-inner { grid-template-columns: repeat(4, 1fr); text-align: left; } }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
@media (min-width: 800px) { .trust-item { justify-content: flex-start; } }
.trust-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; position: relative; background: rgba(245,158,11,.15); color: var(--amber); }
.trust-icon i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.1rem; line-height: 1; }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; font-size: .8rem; color: #cbd5e1; }

/* ====== Section header ====== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head p { margin-top: 12px; color: var(--muted); }

/* ====== Audience cards ====== */
.grid-4 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.aud-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.aud-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.aud-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; position: relative; background: var(--navy-50); color: var(--navy); margin-bottom: 16px; }
.aud-icon i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.2rem; line-height: 1; }
.aud-card h3 { margin-bottom: 6px; }
.aud-card p { font-size: .92rem; color: var(--muted); }

/* ====== Grid layouts ====== */
.grid-3 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ====== Services snapshot tiles ====== */
.svc-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s ease, box-shadow .2s ease; }
.svc-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.svc-tile .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.svc-tile h3 { font-size: 1.1rem; }
.svc-tile p { font-size: .92rem; color: var(--muted); }
.price-tag { background: var(--amber); color: var(--navy); font-weight: 700; padding: 6px 12px; border-radius: 999px; font-size: .85rem; white-space: nowrap; }
.svc-tile.featured { background: var(--navy); border-color: var(--navy); }
.svc-tile.featured h3 { color: #fff; }
.svc-tile.featured p { color: #cbd5e1; }

/* ====== Testimonials ====== */
.reviews-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--amber); font-size: .95rem; letter-spacing: 2px; }
.review-text { color: var(--ink); font-size: 1rem; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--amber); display: grid; place-items: center; font-weight: 700; }
.reviewer-name { font-weight: 600; font-size: .95rem; }
.reviewer-name span { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }

/* ====== Coverage / Map ====== */
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .coverage-grid { grid-template-columns: .9fr 1.1fr; gap: 48px; } }
.map-placeholder { aspect-ratio: 16/10; border-radius: var(--radius-lg); background: linear-gradient(180deg, #eaf0fb 0%, #dbe5f6 100%); border: 1px solid var(--line); position: relative; overflow: hidden; box-shadow: var(--shadow-md); text-decoration: none; display: block; transition: box-shadow .2s ease; }
.map-placeholder:hover { box-shadow: var(--shadow-lg); }
.map-placeholder::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(27,43,75,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(27,43,75,.08) 1px, transparent 1px); background-size: 32px 32px; }
.map-placeholder::after { content: "📍 Click to open in Google Maps"; position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,.95); padding: 9px 16px; border-radius: 99px; font-size: .8rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); white-space: nowrap; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); display: grid; place-items: center; }
.map-pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--amber); border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(245,158,11,.25), 0 6px 18px rgba(0,0,0,.2); }
.map-pin .ring { position: absolute; width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(245,158,11,.45); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.2); opacity: 0; } }
.areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; margin-top: 20px; }
.areas-list li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--ink); }
.areas-list i { color: var(--amber); font-size: .8rem; }

/* ====== Footer CTA ====== */
.footer-cta { background: radial-gradient(800px 300px at 10% 0%, rgba(245,158,11,.18), transparent 60%), var(--navy); color: #fff; text-align: center; }
.footer-cta h2 { color: #fff; }
.footer-cta p { color: #cbd5e1; margin-top: 14px; }
.footer-cta .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ====== Footer ====== */
.footer { background: #0f1830; color: #cbd5e1; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: #cbd5e1; font-size: .92rem; transition: color .15s; }
.footer a:hover { color: var(--amber); }
.footer .logo-text .top { color: #fff; }
.footer .logo-text .sub { color: #94a3b8; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 8px; font-size: .82rem; color: #94a3b8; align-items: center; }
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ====== About page ====== */
.about-hero { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; } }
.about-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: repeating-linear-gradient(135deg, rgba(27,43,75,0.05) 0 14px, transparent 14px 28px), linear-gradient(160deg, #eaf0fb, #fff); border: 1px solid var(--line); box-shadow: var(--shadow-lg); display: grid; place-items: center; position: relative; overflow: hidden; }
.about-bio p + p { margin-top: 14px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.badge i { color: var(--amber); }
.about-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); }

/* ====== Services / Pricing page ====== */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.price-card .icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; position: relative; background: var(--navy-50); color: var(--navy); }
.price-card .icon i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.3rem; line-height: 1; }
.price-card h3 { font-size: 1.15rem; }
.price-card .price { font-size: 1.75rem; font-weight: 800; color: var(--navy); display: flex; align-items: baseline; gap: 6px; }
.price-card .price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card p { font-size: .92rem; color: var(--muted); flex: 1; }
.price-card.poa .price { color: var(--amber-600); }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; transition: border-color .15s ease; }
.faq-item[open] { border-color: var(--navy); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; color: var(--navy); font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\f067"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--amber-600); transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\f068"; }
.faq-item .answer { padding: 0 24px 22px; color: #334155; font-size: .95rem; line-height: 1.6; }

/* ====== Gallery ====== */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery-img { aspect-ratio: 4/3; background: repeating-linear-gradient(45deg, rgba(27,43,75,0.05) 0 12px, transparent 12px 24px), linear-gradient(160deg, #eaf0fb, #fff); display: grid; place-items: center; color: var(--navy); opacity: .9; position: relative; }
.gallery-img i { font-size: 2.2rem; opacity: .25; }
.gallery-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.gallery-cap { padding: 16px 18px; }
.gallery-cap h4 { font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.gallery-cap p { font-size: .85rem; color: var(--muted); }

/* ====== Contact page ====== */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 800px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { display: flex; flex-direction: column; gap: 14px; padding: 32px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; min-height: 220px; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .icon { width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0; position: relative; }
.contact-card .icon i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.4rem; line-height: 1; }
.contact-card.call .icon { background: var(--navy-50); color: var(--navy); }
.contact-card.whatsapp .icon { background: #dcfce7; color: #15803d; }
.contact-card.facebook .icon { background: #dbeafe; color: #1d4ed8; }
.contact-card h3 { font-size: 1.15rem; }
.contact-card .number { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.contact-card p { font-size: .9rem; color: var(--muted); }
.contact-card .arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--amber-600); font-weight: 600; font-size: .9rem; }

/* ====== Utilities ====== */
.center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }
.pb-0 { padding-bottom: 0; }

/* ====== Results / Pass rate section ====== */
.results-section { background: var(--navy); color: #fff; }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.results-intro h2 { color: #fff; }
.results-intro p { color: #cbd5e1; margin-top: 14px; line-height: 1.65; }
.results-intro .source-note { font-size: .78rem; color: #64748b; margin-top: 20px; }
.stat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.stat-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px 20px; }
.stat-box .stat-number { font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--amber); }
.stat-box .stat-label { font-size: .8rem; font-weight: 500; color: #94a3b8; margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
.stat-box .stat-context { font-size: .82rem; color: #cbd5e1; margin-top: 8px; line-height: 1.5; }
.bar-chart-wrap { display: flex; flex-direction: column; gap: 20px; }
.bar-item {}
.bar-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bar-header .bar-name { font-size: .88rem; color: #cbd5e1; font-weight: 500; }
.bar-header .bar-pct { font-size: 1.1rem; font-weight: 700; color: #fff; }
.bar-track { height: 12px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width .6s ease; }
.bar-fill.bar-daz { background: var(--amber); }
.bar-fill.bar-nat { background: rgba(255,255,255,.25); }
.bar-sublabel { font-size: .75rem; color: #64748b; margin-top: 5px; }
.bar-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }

/* ── Floating mobile CTA bar ── */
.mobile-cta-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--line); padding: 10px 16px; gap: 10px; box-shadow: 0 -2px 12px rgba(15,23,42,.10); }
.mobile-cta-bar .btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 72px; } }
