@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --line: #26344a;
  --paper: #0d1424;
  --soft: #111a2d;
  --navy: #101729;
  --blue: #183a73;
  --blue-dark: #102b55;
  --heading-blue: #f8fafc;
  --gold: #069668;
  --green: #069668;
  --surface-shadow: none;
  --shadow: none;
  --shadow-soft: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #080e1a; font-size: 16px; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(6,150,104,.42); outline-offset: 3px; }
img { display: block; max-width: 100%; }
p { color: #d8e2ee; line-height: 1.72; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--heading-blue); font-weight: 900; letter-spacing: 0; }

.topbar { background: #0b1220; color: #fff; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner, .nav-inner, .section-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; gap: 16px; overflow: hidden; }
.topbar-inner span { flex: 1 1 auto; min-width: 0; white-space: nowrap; animation: headlineTicker 14s linear infinite; }
.topbar a { color: #fff; font-weight: 800; }
.topbar-inner > a { display: none; }

.navbar { position: sticky; top: 0; z-index: 20; background: rgba(16,23,41,.97); border-bottom: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(14px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 23px; font-weight: 950; }
.brand-logo { display: grid; place-items: center; width: 112px; height: 112px; flex: 0 0 112px; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(0,0,0,.22)); }
.brand-name { white-space: nowrap; letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #cbd5e1; font-size: 15px; font-weight: 750; }
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.header-phone { position: relative; display: inline-grid; gap: 3px; align-content: center; min-height: 42px; overflow: hidden; padding: 8px 14px; border: 1px solid rgba(6,150,104,.32); border-radius: 10px; background: rgba(255,255,255,.04); color: #fff; line-height: 1.08; text-align: left; white-space: nowrap; box-shadow: none; animation: none; }
.header-phone::before { content: none; }
.header-phone::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.34) 48%, transparent 72%); transform: translateX(-130%); animation: tollFreeSweep 2.2s ease-in-out infinite; pointer-events: none; }
.header-phone strong::before { content: none; }
.header-phone strong { position: relative; z-index: 1; display: block; color: #fff; font-size: 15px; font-weight: 950; text-shadow: none; animation: tollFreeGlow 1.6s ease-in-out infinite; }
.header-phone span { position: relative; z-index: 1; display: block; color: #bfeedd; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.header-phone:hover { border-color: rgba(6,150,104,.72); background: rgba(6,150,104,.16); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: #172033; color: #fff; cursor: pointer; place-items: center; gap: 4px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 8px; font-weight: 850; font-size: 15px; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.btn-primary { background: linear-gradient(180deg, #09a775, var(--green)); color: #fff; }
.btn-primary:hover { background: linear-gradient(180deg, #078f63, #057b56); box-shadow: 0 12px 24px rgba(6,150,104,.24); transform: translateY(-2px); }
.btn-light { background: #172033; color: #f8fafc; border-color: rgba(255,255,255,.18); }
.btn-gold { background: linear-gradient(180deg, #09a775, var(--green)); color: #fff; }
.btn-light:hover { border-color: rgba(255,255,255,.36); transform: translateY(-2px); }
.btn-gold:hover { background: linear-gradient(180deg, #078f63, #057b56); box-shadow: 0 12px 24px rgba(6,150,104,.24); transform: translateY(-2px); }

.hero { min-height: clamp(500px, 62vh, 680px); position: relative; display: grid; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(90deg, rgba(16,23,41,.95), rgba(16,23,41,.72) 48%, rgba(6,150,104,.18)), url("assets/usa-cdl-driver-trucks.png") center / cover; animation: heroImageSettle 900ms ease both; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 42px; background: linear-gradient(180deg, rgba(8,14,26,0), #0d1424); }
.hero-content { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 58px 0 76px; }
.hero h1 { max-width: 700px; margin-bottom: 18px; color: #fff; font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: 0; }
.hero p { max-width: 610px; color: rgba(255,255,255,.9); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-proof span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border: 1px solid rgba(255,255,255,.20); border-radius: 999px; background: rgba(16,23,41,.44); color: #fff; font-size: 13px; font-weight: 850; backdrop-filter: blur(10px); }
.page-hero .hero-proof span { background: rgba(255,255,255,.08); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageSettle {
  from { filter: saturate(.92) contrast(.96); }
  to { filter: saturate(1) contrast(1); }
}
@keyframes tollFreeGlow {
  0%, 100% { color: #fff; text-shadow: 0 0 0 rgba(6,150,104,0); }
  50% { color: #eafff7; text-shadow: 0 0 10px rgba(6,150,104,.62), 0 0 18px rgba(6,150,104,.22); }
}
@keyframes tollFreeBadgePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(6,150,104,.10), 0 0 18px rgba(6,150,104,.18); }
  50% { box-shadow: 0 0 0 1px rgba(6,150,104,.42), 0 0 32px rgba(6,150,104,.42); }
}
@keyframes tollFreeSweep {
  0%, 44% { transform: translateX(-130%); opacity: 0; }
  55% { opacity: .9; }
  76%, 100% { transform: translateX(130%); opacity: 0; }
}
.hero-content > *, .page-hero .section-inner > * { opacity: 0; animation: fadeUp 680ms ease forwards; }
.hero-content > :nth-child(1), .page-hero .section-inner > :nth-child(1) { animation-delay: 80ms; }
.hero-content > :nth-child(2), .page-hero .section-inner > :nth-child(2) { animation-delay: 180ms; }
.hero-content > :nth-child(3), .page-hero .section-inner > :nth-child(3) { animation-delay: 280ms; }
.hero-content > :nth-child(4), .page-hero .section-inner > :nth-child(4) { animation-delay: 380ms; }
.trust-grid, .image-panel, .card, .plan-card, .story-main, .story-tile, .comparison, .phone-mock, .location-card, .cta-content, .cta-image { animation: fadeUp 720ms ease both; animation-delay: 120ms; }

.page-hero { background: linear-gradient(180deg, #101729, #0d1424); color: var(--ink); padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.page-hero h1 { max-width: 820px; color: var(--heading-blue); font-size: clamp(34px, 4.2vw, 54px); line-height: 1.08; margin-bottom: 18px; letter-spacing: 0; }
.page-hero p { max-width: 720px; color: #d8e2ee; font-size: 18px; line-height: 1.72; }
.page-hero-image { position: relative; min-height: clamp(380px, 46vh, 520px); display: grid; align-items: center; overflow: hidden; background-position: center right; background-size: cover; background-repeat: no-repeat; animation: heroImageSettle 900ms ease both; }
.page-hero-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,23,41,.94), rgba(16,23,41,.76) 50%, rgba(5,150,105,.24)); }
.page-hero-image::after { content: ""; position: absolute; inset: auto 0 0; height: 40px; background: linear-gradient(180deg, rgba(8,14,26,0), #0d1424); }
.page-hero-image .section-inner { position: relative; z-index: 1; }
.page-hero-image h1 { color: #fff; max-width: 790px; }
.page-hero-image p { color: rgba(255,255,255,.9); max-width: 700px; }
.plans-hero { background-image: url("assets/plans-hero-bg.jpg"); }
.services-hero { background-image: url("assets/services-hero-bg.jpg"); }
.contact-hero { background-image: url("assets/contact-hero-bg.jpg"); }

section { padding: 86px 0; background: var(--paper); }
main > section, .trust-strip { content-visibility: auto; contain-intrinsic-size: auto 620px; }
.section-light { background: linear-gradient(180deg, #ffffff, #f3f7fb); color: #101729; }
.section-light h1, .section-light h2, .section-light h3, .section-light strong, .section-light label { color: #101729; }
.section-light p, .section-light li, .section-light .content p, .section-light .section-head p, .section-light .contact-line span { color: #111827; }
.section-light .card, .section-light .plan-card { background: #fff; border-color: #dce4ee; }
.section-light .card::before, .section-light .plan-card::before { background: linear-gradient(145deg, rgba(6,150,104,.05), rgba(255,255,255,0) 48%); }
.section-light .plan-card.featured { background: #fff; border-color: rgba(6,150,104,.54); }
.section-light .card h3, .section-light .plan-card h3, .section-light .plan-includes, .section-light .price, .section-light .term, .section-light .contact-line strong { color: #101729; }
.section-light .card p, .section-light .plan-card p, .section-light .feature-list li { color: #111827; }
.section-light .price { border-color: #dce4ee; }
.section-light input, .section-light select, .section-light textarea { background: #fff; color: #101729; border-color: #ccd7e5; }
.section-light input::placeholder, .section-light textarea::placeholder { color: #6b7280; }
.section-light .contact-line { border-top-color: #dce4ee; }
.section-light .btn-light { background: #fff; color: #101729; border-color: #ccd7e5; }
.light-feature { background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.light-feature .content h2 { color: #101729; }
.light-feature .content p { color: #111827; }
.light-feature .mini-list li { color: #101729; }
.light-feature .image-panel img { border-color: rgba(16,23,41,.10); }
.light-feature .floating-note { background: rgba(255,255,255,.96); border-color: rgba(16,23,41,.10); }
.light-feature .floating-note strong { color: #101729; }
.light-feature .floating-note span { color: #111827; }
.light-comparison { background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.light-comparison .section-head h2 { color: #101729; }
.light-comparison .section-head p { color: #111827; }
.light-comparison .comparison { background: #fff; border-color: #dce4ee; }
.light-comparison .comparison-row { border-top-color: #dce4ee; }
.light-comparison .comparison-row:not(:first-child):nth-child(odd) { background: #f7fafc; }
.light-comparison .comparison-row div { color: #101729; border-left-color: #dce4ee; }
.light-comparison .comparison-row:not(:first-child) div:first-child { font-weight: 850; }
.light-comparison .comparison-row:not(:first-child) div:nth-child(3) { background: rgba(6,150,104,.07); }
.light-comparison .comparison-row:first-child { background: linear-gradient(135deg, #101729, #183a73); color: #fff; }
.light-comparison .comparison-row:first-child div { color: #fff; border-left-color: rgba(255,255,255,.18); }
.light-story { background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.light-story .section-head h2 { color: #101729; }
.light-story .section-head p { color: #111827; }
.light-story .story-main, .light-story .story-tile { border: 1px solid rgba(16,23,41,.10); }
.light-notice { background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.soft { background: linear-gradient(180deg, #111a2d, #0d1424); }
.section-head { display: block; margin-bottom: 34px; }
.section-head h2, .content h2 { color: var(--heading-blue); font-size: clamp(30px, 3.5vw, 46px); line-height: 1.1; margin-bottom: 16px; letter-spacing: 0; }
.section-head p { max-width: 680px; color: #d8e2ee; font-size: 17px; line-height: 1.7; margin-bottom: 0; }
.content h2 { max-width: 820px; }
.content p { color: #d8e2ee; font-size: 17px; line-height: 1.7; }
.faq-section { background: linear-gradient(180deg, #111a2d, #0d1424); }
.section-light.faq-section { background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.faq-header { display: grid; justify-items: center; gap: 28px; margin-bottom: 54px; text-align: center; }
.faq-header h2 { margin: 0; color: var(--heading-blue); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
.section-light .faq-header h2 { color: #101729; }
.faq-search { display: flex; align-items: center; width: min(560px, 100%); min-height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: #172033; color: #d8e2ee; font-size: 28px; font-weight: 500; }
.section-light .faq-search { background: #fff; border-color: #dce4ee; color: #101729; }
.faq-search span { flex: 0 0 auto; margin-right: 12px; line-height: 1; }
.faq-search input { border: 0; box-shadow: none; padding: 0; background: transparent; color: #f8fafc; font-size: 18px; font-weight: 600; }
.section-light .faq-search input { color: #101729; }
.faq-search input:focus { box-shadow: none; }
.faq-search input::placeholder { color: #b7bbc2; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 46px; }

.card { position: relative; overflow: hidden; background: linear-gradient(180deg, #172033 0%, #111a2d 100%); border: 1px solid rgba(255,255,255,.10); border-radius: 8px; padding: 30px; transition: border-color 190ms ease, transform 190ms ease; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,0) 42%); pointer-events: none; }
.card:hover { border-color: rgba(6,150,104,.28); transform: translateY(-3px); }
.card h3 { color: var(--heading-blue); font-size: 22px; line-height: 1.18; margin-bottom: 12px; }
.card strong { color: #f8fafc; }
.image-card { overflow: hidden; padding: 0; }height
.image-card img { width: 100%; height: 198px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,.10); }
.image-card-body { padding: 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: linear-gradient(135deg, #1d4f82 0%, #126f74 52%, #069668 100%); border: 1px solid rgba(255,255,255,.20); border-radius: 8px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,.22); }
.trust-strip { position: relative; z-index: 2; margin-top: -36px; }
.trust-item { position: relative; padding: 30px 28px 32px; border-right: 1px solid rgba(255,255,255,.22); background: linear-gradient(135deg, #1d4f82 0%, #126f74 52%, #069668 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.24), inset 0 -18px 36px rgba(0,0,0,.10); transform: translateZ(0); transition: transform 180ms ease, background 180ms ease; }
.trust-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 44%); pointer-events: none; }
.trust-item:hover { transform: translateY(-3px); background: linear-gradient(135deg, #245e96 0%, #12816f 52%, #08a875 100%); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: #fff; font-size: 34px; line-height: 1; margin-bottom: 10px; letter-spacing: 0; }
.trust-item span { color: #fff; font-weight: 800; line-height: 1.35; }

.pricing-grid { align-items: stretch; gap: 26px; perspective: 1100px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 100%; background: linear-gradient(180deg, #172033 0%, #111a2d 100%); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 32px; overflow: hidden; transform-style: preserve-3d; box-shadow: 0 22px 46px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06); transition: border-color 190ms ease, transform 220ms ease, box-shadow 220ms ease; animation: planCardFloat 5.4s ease-in-out infinite; }
.plan-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 18% 8%, rgba(6,150,104,.18), transparent 26%), linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,0) 46%); pointer-events: none; }
.plan-card::after { content: ""; position: absolute; inset: -60% -30%; background: linear-gradient(105deg, transparent 34%, rgba(255,255,255,.12) 47%, transparent 60%); transform: translateX(-56%) rotate(8deg); opacity: .65; animation: planCardShine 4.8s ease-in-out infinite; pointer-events: none; }
.plan-card:hover { border-color: rgba(6,150,104,.72); transform: translateY(-10px) rotateX(3deg) rotateY(-2deg); box-shadow: 0 34px 72px rgba(0,0,0,.34), 0 0 0 1px rgba(6,150,104,.18), inset 0 1px 0 rgba(255,255,255,.10); }
.plan-card.featured { border-color: rgba(6,150,104,.78); background: radial-gradient(circle at 82% 0%, rgba(6,150,104,.18), transparent 28%), linear-gradient(180deg, #16273a 0%, #101c2f 100%); }
.plan-card:nth-child(2) { animation-delay: .55s; }
.plan-card-head { min-height: 138px; }
.plan-card h3 { margin: 0 0 12px; color: var(--heading-blue); font-size: 25px; line-height: 1.15; }
.plan-card p { margin-bottom: 0; color: #d8e2ee; font-size: 16px; line-height: 1.65; }
.badge { display: inline-flex; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; background: rgba(6,150,104,.10); color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.price { display: flex; align-items: flex-end; gap: 7px; margin: 8px 0 22px; padding: 20px 0 18px; color: var(--heading-blue); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.currency { align-self: center; font-size: 24px; font-weight: 900; }
.amount { font-size: 56px; line-height: .88; font-weight: 950; letter-spacing: 0; }
.term { padding-bottom: 5px; color: #e5edf6; font-size: 16px; font-weight: 800; }
.plan-includes { display: block; margin-bottom: 14px; color: var(--heading-blue); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.feature-list { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; color: #f1f5f9; line-height: 1.45; font-size: 15px; font-weight: 750; }
.feature-list li::before { content: "✓"; flex: 0 0 22px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(6,150,104,.14); color: var(--green); font-size: 13px; font-weight: 950; animation: checkPulse 2.6s ease-in-out infinite; }
.feature-list li:nth-child(2)::before { animation-delay: .18s; }
.feature-list li:nth-child(3)::before { animation-delay: .36s; }
.feature-list li:nth-child(4)::before { animation-delay: .54s; }
.feature-list li:nth-child(5)::before { animation-delay: .72s; }
.feature-list li:nth-child(6)::before { animation-delay: .9s; }
.plan-card .btn { position: relative; width: 100%; margin-top: auto; overflow: hidden; }
.plan-card .btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.22), transparent 70%); transform: translateX(-120%); animation: buttonShine 3.2s ease-in-out infinite; pointer-events: none; }

.image-panel { position: relative; }
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; }
.floating-note { position: absolute; right: 22px; bottom: 22px; width: min(320px, calc(100% - 44px)); padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(16,23,41,.92); backdrop-filter: blur(10px); }
.floating-note strong { display: block; margin-bottom: 6px; color: var(--heading-blue); }
.floating-note span { color: #d8e2ee; font-size: 14px; line-height: 1.5; }

.mini-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.mini-list li { display: flex; gap: 13px; align-items: flex-start; color: #f1f5f9; font-weight: 700; }
.mini-list li::before { content: ""; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--green); }

.process-card { counter-increment: step; position: relative; padding-top: 72px; }
.process-card::after { content: counter(step, decimal-leading-zero); position: absolute; top: 24px; left: 28px; color: var(--green); font-size: 28px; font-weight: 950; line-height: 1; }
.process-grid { counter-reset: step; }
.audience-card { min-height: 100%; }
.audience-card .badge { margin-bottom: 16px; }
.audience-card img { width: 100%; height: 210px; object-fit: cover; border-radius: 8px; margin: 0 0 22px; }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.story-main, .story-side { position: relative; overflow: hidden; border-radius: 8px; min-height: 440px; background: var(--navy); }
.story-side { display: grid; gap: 18px; background: transparent; }
.story-tile { position: relative; overflow: hidden; border-radius: 8px; min-height: 211px; background: var(--navy); }
.story-main img, .story-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story-main::after, .story-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,24,39,.08), rgba(17,24,39,.80)); }
.story-copy { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; color: #fff; }
.story-copy h3 { margin: 0 0 8px; color: #fff; font-size: 24px; }
.story-copy p { color: rgba(255,255,255,.84); margin: 0; }
.comparison { background: #172033; border: 1px solid rgba(255,255,255,.10); border-radius: 8px; overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); }
.comparison-row:first-child { border-top: 0; background: linear-gradient(135deg, var(--navy), #16386f); color: #fff; font-weight: 900; }
.comparison-row div { padding: 18px 20px; border-left: 1px solid var(--line); }
.comparison-row div:first-child { border-left: 0; }
.comparison-row:first-child div { border-left-color: rgba(255,255,255,.16); }
.quote-card p { color: #d8e2ee; font-size: 18px; font-weight: 650; }
.quote-card span { display: block; color: #f8fafc; font-weight: 800; }
.faq-accordion { display: grid; gap: 18px; width: min(980px, 100%); margin: 0 auto; }
.faq-row { background: linear-gradient(180deg, #172033, #111a2d); border: 1px solid rgba(255,255,255,.10); border-radius: 8px; overflow: hidden; transition: border-color 180ms ease; }
.section-light .faq-row { background: #fff; border-color: #dce4ee; }
.faq-row:hover { border-color: rgba(6,150,104,.24); }
.faq-row[open] { border-color: rgba(6,150,104,.28); }
.faq-row summary { position: relative; display: flex; align-items: center; min-height: 84px; padding: 26px 82px 26px 34px; color: var(--heading-blue); font-size: clamp(20px, 2vw, 26px); line-height: 1.18; font-weight: 850; cursor: pointer; list-style: none; }
.section-light .faq-row summary { color: #101729; }
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary:focus-visible { outline: 2px solid rgba(6,150,104,.36); outline-offset: -2px; }
.faq-row summary::after { content: "+"; position: absolute; right: 34px; top: 50%; display: grid; place-items: center; width: 38px; height: 38px; transform: translateY(-50%); color: var(--green); font-size: 42px; font-weight: 300; line-height: 1; transition: transform 160ms ease; }
.faq-row[open] summary::after { content: "×"; font-size: 42px; }
.faq-row p { margin: 0; padding: 0 82px 38px 34px; max-width: 820px; color: #d8e2ee; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.7; font-weight: 600; }
.section-light .faq-row p { color: #111827; }
.cta-band { background: radial-gradient(circle at 72% 20%, rgba(6,150,104,.24), transparent 32%), linear-gradient(135deg, var(--navy), #173a73); color: #fff; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr minmax(360px, .82fr); align-items: center; gap: 54px; }
.cta-content { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; max-width: 760px; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 680px; font-size: 18px; }
.cta-image { position: relative; min-height: 360px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; overflow: hidden; }
.cta-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(17,24,39,.22), rgba(17,24,39,0)); pointer-events: none; }
.cta-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.app-section { background: radial-gradient(circle at 78% 18%, rgba(6,150,104,.24), transparent 32%), linear-gradient(135deg, #0b1220, var(--navy)); color: #fff; }
.app-section h1 { color: #fff; font-size: clamp(38px, 5vw, 58px); line-height: 1.04; margin-bottom: 18px; max-width: 760px; }
.app-section .content h2, .app-section .content p { color: #fff; }
.phone-mock { width: min(380px, 100%); margin: 0 auto; border: 12px solid #0b1220; border-radius: 38px; background: #111a2d; color: var(--ink); overflow: hidden; }
.phone-top { padding: 24px 24px 18px; background: linear-gradient(135deg, #16386f, var(--green)); color: #fff; }
.phone-top span { display: block; opacity: .8; font-size: 13px; }
.phone-top strong { display: block; margin-top: 6px; font-size: 23px; }
.phone-body { display: grid; gap: 12px; padding: 18px; }
.phone-card { display: flex; justify-content: space-between; gap: 12px; padding: 14px; border-radius: 8px; background: #172033; border: 1px solid rgba(255,255,255,.10); font-size: 14px; }
.phone-card b { color: #f8fafc; }
.phone-card span { color: #d8e2ee; }

form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 8px; color: #f1f5f9; font-size: 14px; font-weight: 800; }
label.full, .full { grid-column: 1 / -1; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.checkbox-label input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; padding: 0; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 14px; color: #f8fafc; background: linear-gradient(180deg, #172033, #111a2d); font: inherit; transition: border-color 160ms ease; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(6,150,104,.22); outline-offset: 0; border-color: var(--green); }
textarea { min-height: 126px; resize: vertical; }
.contact-line { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-line strong { display: block; color: #f8fafc; margin-bottom: 5px; }
.contact-line span { color: #d8e2ee; }
.location-card { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; margin-top: 28px; padding: 24px; border: 1px solid #dce4ee; border-radius: 8px; background: linear-gradient(180deg, #ffffff, #f7fafc); }
.location-copy h2 { margin-bottom: 10px; color: #101729; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; }
.location-copy p { margin-bottom: 0; color: #111827; font-weight: 650; }
.location-card .badge { margin-bottom: 14px; }
.map-card { grid-column: 1 / -1; border: 1px solid #dce4ee; border-radius: 8px; overflow: hidden; background: #fff; aspect-ratio: 16 / 7; min-height: 360px; }
.map-card iframe { display: block; width: 100%; height: 100%; min-height: 360px; }

.notice { padding: 28px; border-radius: 8px; background: #ffffff; border: 1px solid rgba(6,150,104,.35); }
.notice h2 { color: #101729; font-size: 28px; margin-bottom: 12px; }
.notice p { color: #111827; margin-bottom: 0; }
.legal-section { padding-top: 58px; }
.legal-content { display: grid; gap: 18px; max-width: 980px; }
.legal-card { padding: 28px; border: 1px solid #dce4ee; border-radius: 10px; background: #fff; }
.legal-card h2 { margin-bottom: 12px; color: #101729; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.12; }
.legal-card p { margin-bottom: 12px; color: #111827; font-size: 16px; line-height: 1.75; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-updated { color: #5b6472 !important; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px !important; }

footer { background: linear-gradient(180deg, #101729, #0b1220); color: #d8e1ef; padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1fr; gap: 28px; margin-bottom: 34px; }
footer h3, footer h4 { color: #fff; margin-top: 0; }
footer p, footer a { color: #b9c5d6; line-height: 1.7; }
footer a:hover { color: #fff; }
.footer-brand img { width: 156px; height: auto; margin: -20px 0 10px; filter: drop-shadow(0 10px 22px rgba(0,0,0,.30)); }
.footer-brand h3 { margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }
.social-block { margin-top: 20px; }
.social-block strong { display: block; margin-bottom: 12px; color: #fff; font-size: 14px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #172033; color: #fff; font-size: 12px; font-weight: 950; text-transform: uppercase; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.social-links svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.social-links svg rect, .social-links svg circle { fill: none; stroke: currentColor; }
.social-links svg path:first-child { fill: currentColor; stroke: none; }
.social-links a[aria-label="Instagram"] svg path, .social-links a[aria-label="X"] svg path { fill: none; stroke: currentColor; }
.social-links a:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.copyright { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #8f9bb0; font-size: 14px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: inline-flex; align-items: center; gap: 12px; min-height: 58px; padding: 10px 16px 10px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: linear-gradient(135deg, #09a775, var(--green)); color: #fff; box-shadow: 0 18px 36px rgba(0,0,0,.28); transition: transform 180ms ease, background 180ms ease; animation: whatsappFloatPulse 1.15s ease-in-out infinite; }
.whatsapp-float::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(6,150,104,.42); border-radius: inherit; opacity: 0; animation: whatsappRing 1.15s ease-out infinite; pointer-events: none; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; background: linear-gradient(135deg, #08b47d, #057b56); }
.whatsapp-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; font-size: 12px; font-weight: 950; letter-spacing: .02em; }
.whatsapp-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-icon svg path:last-child { fill: currentColor; stroke: none; }
.whatsapp-float strong, .whatsapp-float small { display: block; line-height: 1.15; }
.whatsapp-float strong { font-size: 14px; }
.whatsapp-float small { margin-top: 3px; color: rgba(255,255,255,.84); font-size: 12px; font-weight: 750; }
.call-float { position: fixed; right: 22px; bottom: 92px; z-index: 30; display: inline-flex; align-items: center; gap: 12px; min-height: 58px; padding: 10px 16px 10px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: linear-gradient(135deg, #173a73, #101729); color: #fff; box-shadow: 0 18px 36px rgba(0,0,0,.24); transition: transform 180ms ease, background 180ms ease; animation: callFloatPulse 1.25s ease-in-out infinite; }
.call-float::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(29,79,130,.46); border-radius: inherit; opacity: 0; animation: callRing 1.25s ease-out infinite; pointer-events: none; }
.call-float:hover { transform: translateY(-3px); color: #fff; background: linear-gradient(135deg, #1d4f82, #14213a); }
.call-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; }
.call-icon svg { width: 22px; height: 22px; fill: currentColor; }
.call-float strong, .call-float small { display: block; line-height: 1.15; }
.call-float strong { font-size: 14px; }
.call-float small { margin-top: 3px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 750; }
.zelle-float { position: fixed; right: 22px; bottom: 162px; z-index: 30; display: inline-flex; align-items: center; gap: 12px; min-height: 58px; overflow: hidden; padding: 10px 16px 10px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: linear-gradient(135deg, #101729, #173a73); color: #fff; box-shadow: 0 18px 36px rgba(0,0,0,.24); cursor: pointer; animation: zelleButtonFloat 1.45s ease-in-out infinite; }
.zelle-float::before { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(109,30,212,.42); border-radius: inherit; opacity: 0; animation: zelleButtonRing 1.45s ease-out infinite; pointer-events: none; }
.zelle-float::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.22), transparent 70%); transform: translateX(-120%); animation: zelleButtonSweep 2.4s ease-in-out infinite; pointer-events: none; }
.zelle-float:hover { transform: translateY(-3px); background: linear-gradient(135deg, #14213a, #1d4f82); }
.zelle-float-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 52px; height: 40px; border-radius: 999px; background: #6d1ed4; color: #fff; font-size: 15px; font-weight: 950; line-height: 1; letter-spacing: -.04em; font-family: Inter, ui-sans-serif, system-ui, sans-serif; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); animation: zelleLogoPulse 1.45s ease-in-out infinite; }
.zelle-float strong, .zelle-float small { display: block; line-height: 1.15; text-align: left; }
.zelle-float > span:not(.zelle-float-icon) { position: relative; z-index: 1; }
.zelle-float strong { font-size: 14px; }
.zelle-float small { margin-top: 3px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 750; }
.zelle-modal[hidden] { display: none; }
.zelle-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; background: rgba(8,14,26,.76); backdrop-filter: blur(10px); }
.zelle-modal-card { position: relative; width: min(440px, 100%); padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: radial-gradient(circle at 88% 0%, rgba(6,150,104,.18), transparent 34%), linear-gradient(180deg, #172033, #101729); color: #fff; }
.zelle-modal-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.06); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.zelle-modal-kicker { display: inline-flex; min-height: 28px; align-items: center; margin-bottom: 14px; padding: 0 10px; border-radius: 999px; background: rgba(6,150,104,.18); color: #bfeedd; font-size: 11px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.zelle-modal-card h2 { max-width: 330px; margin-bottom: 12px; color: #fff; font-size: clamp(28px, 5vw, 38px); line-height: 1.05; }
.zelle-modal-card p { margin-bottom: 18px; color: #d8e2ee; font-size: 15px; line-height: 1.6; }
.zelle-modal-id { display: grid; gap: 6px; margin: 18px 0; padding: 18px; border: 1px solid rgba(6,150,104,.38); border-radius: 10px; background: rgba(255,255,255,.06); }
.zelle-modal-id span { color: #bfeedd; font-size: 11px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.zelle-modal-id strong { color: #fff; font-size: 42px; line-height: 1; font-weight: 950; }
.zelle-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.zelle-modal-note { display: block; margin-top: 14px; color: #b9c5d6; font-size: 12px; line-height: 1.45; }
@keyframes zelleFloatPulse {
  0%, 100% { box-shadow: 0 18px 36px rgba(0,0,0,.24), 0 0 0 0 rgba(6,150,104,0); }
  50% { box-shadow: 0 18px 36px rgba(0,0,0,.24), 0 0 0 7px rgba(6,150,104,.14); }
}
@keyframes zelleButtonFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 36px rgba(0,0,0,.24), 0 0 0 0 rgba(109,30,212,0); }
  50% { transform: translateY(-5px); box-shadow: 0 24px 44px rgba(0,0,0,.30), 0 0 0 7px rgba(109,30,212,.12); }
}
@keyframes zelleButtonRing {
  0% { opacity: .72; transform: scale(.96); }
  100% { opacity: 0; transform: scale(1.14); }
}
@keyframes zelleButtonSweep {
  0%, 48% { transform: translateX(-120%); opacity: 0; }
  58% { opacity: .75; }
  78%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes zelleLogoPulse {
  0%, 100% { transform: scale(1); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 rgba(109,30,212,0); }
  50% { transform: scale(1.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 0 18px rgba(109,30,212,.44); }
}
.welcome-popup { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; background: rgba(8,14,26,.74); backdrop-filter: blur(10px); animation: popupBackdropIn 220ms ease both; }
.welcome-popup.is-closing { animation: popupBackdropOut 180ms ease both; }
.welcome-popup-card { position: relative; width: min(520px, 100%); padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: radial-gradient(circle at 90% 0%, rgba(6,150,104,.20), transparent 34%), linear-gradient(180deg, #172033, #101729); color: #fff; box-shadow: 0 26px 70px rgba(0,0,0,.36); animation: popupCardIn 260ms ease both; }
.welcome-popup-card h2 { margin-bottom: 12px; color: #fff; font-size: clamp(32px, 5vw, 46px); line-height: 1.04; }
.welcome-popup-card p { max-width: 440px; margin-bottom: 0; color: #d8e2ee; font-size: 17px; }
.welcome-popup-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.welcome-popup-close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.06); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }
.welcome-popup-close:hover { background: rgba(255,255,255,.12); }
@keyframes popupBackdropIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popupBackdropOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes popupCardIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes headlineTicker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes whatsappFloatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.025); }
}
@keyframes whatsappRing {
  0% { opacity: .58; transform: scale(.98); }
  70%, 100% { opacity: 0; transform: scale(1.12); }
}
@keyframes callFloatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.025); }
}
@keyframes callRing {
  0% { opacity: .52; transform: scale(.98); }
  70%, 100% { opacity: 0; transform: scale(1.12); }
}
@keyframes planCardFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-5px) rotateX(1.2deg) rotateY(-.8deg); }
}
@keyframes planCardShine {
  0%, 42% { transform: translateX(-58%) rotate(8deg); }
  62%, 100% { transform: translateX(58%) rotate(8deg); }
}
@keyframes checkPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(6,150,104,0); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(6,150,104,.08); }
}
@keyframes buttonShine {
  0%, 42% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@media (max-width: 940px) {
  .nav-inner { position: relative; flex-wrap: wrap; }
  .menu-toggle { display: grid; margin-left: auto; }
  .nav-links { display: none; order: 4; width: 100%; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: #101729; }
  .nav-links.is-open { display: grid; gap: 4px; }
  .nav-links a { padding: 12px 10px; border-radius: 8px; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255,255,255,.06); }
  .header-phone { display: grid; order: 3; width: 100%; min-height: 42px; justify-content: start; }
  .nav-actions { display: none; order: 5; width: 100%; gap: 10px; padding-bottom: 14px; }
  .navbar.nav-open .nav-actions { display: flex; }
  .navbar.nav-open .nav-actions .btn { flex: 1; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .split, .footer-grid, .comparison-row, .story-grid, .cta-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .comparison-row div { border-left: 0; border-top: 1px solid var(--line); }
  .comparison-row div:first-child { border-top: 0; }
  .cta-grid { gap: 30px; }
  .cta-image, .cta-image img { min-height: 300px; }
}

@media (min-width: 641px) and (max-width: 940px) {
  .topbar-inner, .nav-inner, .section-inner, .hero-content { width: min(100% - 48px, 1180px); }
  .grid-2, .pricing-grid, .trust-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { border-bottom: 0; }
  .section-head h2, .content h2 { font-size: clamp(32px, 5vw, 42px); }
  .page-hero h1 { font-size: clamp(38px, 6vw, 50px); }
  .card, .plan-card { padding: 26px; }
  .story-grid, .split, .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 34px 28px; }
}

@media (max-width: 640px) {
  .topbar-inner, .nav-inner, .section-inner, .hero-content { width: min(100% - 28px, 1180px); }
  .topbar-inner { align-items: flex-start; flex-direction: column; padding: 7px 0; }
  .topbar-inner span { width: 100%; animation-duration: 11s; }
  .nav-actions .btn-light { display: none; }
  .navbar.nav-open .nav-actions .btn-light { display: inline-flex; }
  .nav-actions .btn-primary { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .nav-inner { min-height: 72px; gap: 10px 12px; padding: 10px 0; }
  .brand { gap: 10px; font-size: 18px; }
  .header-phone { display: none; padding: 7px 12px; }
  .header-phone::before { width: auto; height: auto; }
  .header-phone strong::before { content: none; }
  .header-phone strong { font-size: 13px; }
  .header-phone span { font-size: 10px; }
  .brand-logo { width: 82px; height: 82px; flex-basis: 82px; }
  .footer-brand img { width: 132px; margin-top: -12px; }
  .hero { min-height: 480px; background-position: 58% center; }
  .page-hero, .page-hero-image { min-height: 340px; background-position: center; padding: 54px 0 64px; }
  .hero-content { padding: 48px 0 72px; }
  .hero h1, .page-hero h1 { font-size: clamp(34px, 11vw, 44px); line-height: 1.06; }
  .hero p, .page-hero p { font-size: 16px; line-height: 1.65; }
  .hero-proof { gap: 8px; }
  .hero-proof span { min-height: 32px; padding: 0 11px; font-size: 12px; }
  .hero-actions .btn { width: 100%; }
  section { padding: 64px 0; }
  .section-head { display: block; }
  .card, .plan-card { padding: 22px; }
  .plan-card { animation-duration: 6.2s; box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06); }
  .plan-card:hover { transform: translateY(-5px); }
  .process-card { padding-top: 78px; }
  .process-card::after { top: 24px; left: 22px; width: 54px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: rgba(6,150,104,.14); font-size: 21px; }
  .process-card h3 { margin-top: 0; font-size: 27px; line-height: 1.14; }
  .process-card p { font-size: 17px; line-height: 1.65; }
  .process-grid { padding-bottom: 72px; }
  .image-card { padding: 0; }
  .image-card-body { padding: 22px; }
  .faq-header { gap: 20px; margin-bottom: 34px; }
  .faq-header h2 { font-size: 32px; }
  .faq-search { min-height: 52px; font-size: 24px; }
  .faq-search input { font-size: 16px; }
  .faq-row { border-radius: 14px; }
  .faq-row summary { min-height: 72px; padding: 20px 58px 20px 20px; font-size: 19px; }
  .faq-row summary::after { right: 18px; font-size: 34px; }
  .faq-row[open] summary::after { font-size: 34px; }
  .faq-row p { padding: 0 20px 24px; font-size: 16px; }
  .cta-image, .cta-image img { min-height: 230px; }
  .story-main, .story-tile { min-height: 320px; }
  .location-card { grid-template-columns: 1fr; padding: 18px; }
  .location-card .btn { width: 100%; }
  .map-card, .map-card iframe { min-height: 320px; aspect-ratio: 1 / 1; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 52px; max-width: calc(100vw - 28px); padding: 8px 12px 8px 8px; }
  .call-float { right: 14px; bottom: 76px; min-height: 52px; max-width: calc(100vw - 28px); padding: 8px 12px 8px 8px; }
  .zelle-float { right: 14px; bottom: 138px; min-height: 52px; max-width: calc(100vw - 28px); padding: 8px 12px 8px 8px; }
  .whatsapp-icon { width: 36px; height: 36px; }
  .call-icon { width: 36px; height: 36px; }
  .zelle-float-icon { width: 46px; height: 36px; font-size: 13px; }
  .whatsapp-float strong { font-size: 13px; }
  .call-float strong { font-size: 13px; }
  .zelle-float strong { font-size: 13px; }
  .whatsapp-float small { display: none; }
  .call-float small { display: none; }
  .zelle-float small { display: none; }
  .zelle-modal-card { padding: 28px 20px 22px; }
  .zelle-modal-actions .btn { width: 100%; }
  .welcome-popup { padding: 16px; }
  .welcome-popup-card { padding: 28px 20px 22px; }
  .welcome-popup-actions .btn { width: 100%; }
  footer { padding-bottom: 202px; }
  form { grid-template-columns: 1fr; }
  .floating-note { position: static; width: auto; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .hero, .page-hero-image { animation: none; }
  .hero-content > *, .page-hero .section-inner > * { opacity: 1; transform: none; }
}
