:root {
  --color-primary: #0EA5E9;
  --color-secondary: #0284C7;
  --color-accent: #10B981;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #475569;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 20px rgba(12, 74, 110, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(12, 74, 110, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(12, 74, 110, 0.28);
  --radius: 18px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-text); background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--color-secondary); text-decoration: none; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--color-neutral-dark); color: #fff; padding: .5rem 1rem; z-index: 10000; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 780px; margin: 0 auto; }
.center { text-align: center; }
.center-text { text-align: center; }
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-tinted { background: var(--color-neutral-light); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--color-secondary); font-weight: 600; margin-bottom: 1rem; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(240, 249, 255, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid transparent; transition: background .3s var(--ease), border-color .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.9); border-bottom-color: var(--color-border); box-shadow: 0 6px 24px -18px rgba(12, 74, 110, 0.25); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: .75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { background: transparent; border: 1px solid var(--color-border); color: var(--color-neutral-dark); border-radius: 10px; padding: .5rem; cursor: pointer; display: inline-flex; }
.primary-nav { display: none; }
.primary-nav a { position: relative; font-family: var(--font-heading); font-weight: 500; font-size: .95rem; color: var(--color-neutral-dark); padding: .5rem 0; }
.primary-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:not(.nav-cta):hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; padding: .55rem 1.1rem; border-radius: 999px; font-weight: 600; }
.primary-nav .nav-cta:hover { color: #fff; box-shadow: 0 8px 24px -8px rgba(14, 165, 233, 0.6); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; }
}
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1.25rem 1.5rem; gap: 1rem; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--color-border); }
@media (min-width: 900px) { .primary-nav.is-open { position: static; flex-direction: row; padding: 0; box-shadow: none; background: transparent; } }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.55); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(14, 165, 233, 0.75); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-neutral-light); color: var(--color-neutral-dark); transform: translateY(-2px); }

/* === Hero === */
.hero-spotlight { position: relative; padding: 4rem 0 3rem; overflow: hidden; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero-spotlight.compact { padding: 3rem 0 2.5rem; }
.hero-glow { position: absolute; inset: -20% -10% auto -10%; height: 70%; background: radial-gradient(60% 60% at 50% 30%, rgba(16, 185, 129, 0.18), transparent 70%), radial-gradient(50% 50% at 80% 20%, rgba(14, 165, 233, 0.22), transparent 70%); z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-inner h1 { max-width: 22ch; margin-inline: auto; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--color-muted); max-width: 56ch; margin: 1rem auto 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero-visual { margin: 0 auto; max-width: 1000px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero-visual::after { content: ''; position: absolute; inset: 0; border-radius: 20px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); pointer-events: none; }
.hero-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.success-badge { display: inline-flex; width: 88px; height: 88px; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent), var(--color-primary)); color: #fff; margin: 0 auto 1.5rem; box-shadow: 0 20px 40px -12px rgba(16, 185, 129, 0.5); }

/* === Proof strip === */
.proof-strip { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 0; }
.proof-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2.5rem; font-family: var(--font-heading); font-size: .95rem; }
.proof-inner strong { color: #fff; font-weight: 700; margin-right: .35rem; font-size: 1.1rem; }

/* === Cards / grids === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid.two, .card-grid.three, .card-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
  .card-grid.four { grid-template-columns: repeat(4, 1fr); }
}
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14, 165, 233, 0.35); }
.card-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(16,185,129,0.14)); color: var(--color-secondary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); font-size: .98rem; margin-bottom: 0; }

/* === Quote === */
.quote { position: relative; text-align: center; padding: 2.5rem 1rem; margin: 0; }
.quote-mark { color: var(--color-accent); opacity: .35; margin: 0 auto 1rem; display: block; }
.quote p { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--color-neutral-dark); line-height: 1.5; max-width: 60ch; margin: 0 auto 1.25rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { position: relative; margin: 0; padding: 4rem 0; background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-secondary)); color: var(--color-neutral-light); overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 0%, rgba(16,185,129,0.28), transparent 60%); pointer-events: none; }
.cta-band-inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(240,249,255,0.85); margin-bottom: 0; max-width: 60ch; }
.contact-line { font-size: .9rem; margin-top: .75rem; }
@media (min-width: 768px) {
  .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: .75rem; background: #fff; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: rgba(14, 165, 233, 0.35); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-secondary); transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: .75rem; color: var(--color-muted); margin-bottom: 0; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; color: var(--color-neutral-dark); }
.contact-list svg { color: var(--color-secondary); flex-shrink: 0; margin-top: .15rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--color-border); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-family: var(--font-heading); font-weight: 500; }
.hours td { color: var(--color-muted); }
.contact-form-wrap { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.contact-form label { display: block; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 500; font-size: .9rem; color: var(--color-neutral-dark); }
.contact-form label span { display: block; margin-bottom: .35rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--color-border); border-radius: 10px; font: inherit; font-family: var(--font-body); background: var(--color-neutral-light); transition: border-color .2s, background .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--color-muted); font-weight: 400; font-family: var(--font-body); margin-bottom: 1.25rem !important; }
.form-consent input { width: auto; margin-top: .2rem; flex-shrink: 0; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240,249,255,0.82); padding: 3.5rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-logo img { height: 72px; filter: brightness(0) invert(1); }
.site-footer .tagline { margin-top: 1rem; color: rgba(240,249,255,0.75); }
.site-footer h4 { font-family: var(--font-heading); color: #fff; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.site-footer nav a, .site-footer address a { display: block; color: rgba(240,249,255,0.82); padding: .25rem 0; font-style: normal; }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--color-accent); }
.legal-links { margin-top: 1rem; font-size: .85rem; }
.legal-links a { color: rgba(240,249,255,0.7); }
.copyright { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; font-size: .85rem; color: rgba(240,249,255,0.6); }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; display: none; z-index: 9999; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.5rem; border-radius: 16px; box-shadow: var(--shadow-lg); max-width: 640px; margin-left: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn { padding: .55rem 1rem; font-size: .85rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); }
.cookie-banner__actions .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .5rem; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
