/* === Tokens === */
:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #22C55E;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --color-text: #0C4A6E;
  --color-muted: #52708a;
  --color-border: rgba(12, 74, 110, 0.12);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(3, 105, 161, 0.06);
  --shadow-md: 0 12px 40px -18px rgba(3, 105, 161, 0.28);
  --shadow-lg: 0 24px 60px -24px rgba(3, 105, 161, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 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%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
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 0.75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-neutral-dark); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease-hover), box-shadow 0.2s var(--ease-hover), background 0.2s var(--ease-hover); }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 24px -12px rgba(3, 105, 161, 0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(3, 105, 161, 0.65); text-decoration: none; }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -14px rgba(34, 197, 94, 0.7); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(34, 197, 94, 0.75); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-neutral-light); text-decoration: none; }
.btn:focus-visible { outline: 3px solid rgba(14, 165, 233, 0.4); outline-offset: 3px; }

/* === Header / nav === */
.site-header { position: sticky; top: 0; z-index: 50; 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 var(--color-border); transition: background 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }
.primary-nav { display: flex; align-items: center; }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: transparent; border: 1px solid var(--color-border); border-radius: 12px; padding: 0 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.nav-list { list-style: none; margin: 0; padding: 0; display: none; }
.nav-list.is-open { display: flex; flex-direction: column; gap: 0.25rem; position: absolute; top: 72px; left: 1rem; right: 1rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 0.75rem; box-shadow: var(--shadow-md); }
.nav-list a { display: block; padding: 0.7rem 0.9rem; border-radius: 10px; color: var(--color-neutral-dark); font-weight: 500; position: relative; }
.nav-list a:hover { background: var(--color-neutral-light); text-decoration: none; }
.nav-list a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .logo--footer img { height: 72px; }
  .nav-toggle { display: none; }
  .nav-list { display: flex; flex-direction: row; gap: 0.25rem; position: static; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .nav-list a { padding: 0.6rem 1rem; }
  .nav-list a::after { content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0.35rem; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease-hover); }
  .nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Hero split === */
.hero { position: relative; overflow: hidden; }
.hero-split { background: linear-gradient(160deg, rgba(14, 165, 233, 0.08), rgba(34, 197, 94, 0.06) 60%, transparent 100%); padding-block: 3.5rem 4rem; }
.hero-split::before { content: ""; position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; background: radial-gradient(circle at center, rgba(14, 165, 233, 0.18), transparent 60%); pointer-events: none; }
.hero-split__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; position: relative; }
.eyebrow { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-secondary); margin: 0 0 1rem; }
.hero-split__text .lede { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; margin-bottom: 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.proof-strip { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem; color: var(--color-muted); font-size: 0.9rem; font-weight: 500; }
.hero-split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-split--single .hero-split__grid { grid-template-columns: 1fr; }

@media (min-width: 900px) {
  .hero-split { padding-block: 6rem 6.5rem; }
  .hero-split__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }
.intro { background: var(--color-neutral-light); }
.intro__inner { max-width: 68ch; margin-inline: auto; text-align: center; }
.intro__inner p { font-size: 1.05rem; color: var(--color-neutral-dark); }

/* === Cards === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease-hover), box-shadow 0.25s var(--ease-hover); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.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.15), rgba(34, 197, 94, 0.15)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }

/* === Testimonial === */
.testimonial { background: #fff; }
.testimonial__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.testimonial blockquote { margin: 0; padding: 2.5rem 1.5rem; background: linear-gradient(135deg, rgba(3, 105, 161, 0.04), rgba(14, 165, 233, 0.06)); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--color-neutral-dark); line-height: 1.5; margin: 0 0 1rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-primary); font-size: 0.95rem; }
.testimonial--with-image { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
.testimonial__portrait { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: 320px; margin-inline: auto; }
@media (min-width: 900px) { .testimonial--with-image { grid-template-columns: 260px 1fr; text-align: left; } .testimonial--with-image blockquote { text-align: left; } }

/* === CTA band === */
.cta-band { padding-block: 3.5rem; }
.cta-band__inner { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; display: grid; gap: 1.5rem; align-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band__inner::before { content: ""; position: absolute; inset: auto -20% -60% auto; width: 60%; height: 200%; background: radial-gradient(circle at center, rgba(34, 197, 94, 0.35), transparent 60%); pointer-events: none; }
.cta-band__inner h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-band__inner p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-band__inner .contact-line { font-size: 0.95rem; margin-top: 0.5rem; }
.cta-band__inner a.btn--accent { justify-self: start; position: relative; }
@media (min-width: 800px) { .cta-band__inner { grid-template-columns: 1fr auto; padding: 3rem 3.5rem; } .cta-band__inner a.btn--accent { justify-self: end; } }

/* === FAQ === */
.faq__inner { max-width: 780px; margin-inline: auto; }
.faq-list details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); }
.faq-list 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; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--color-primary); transition: transform 0.2s var(--ease-hover); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact === */
.contact-block__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-block__grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }
.contact-info address { font-style: normal; margin: 0 0 1.5rem; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); font-weight: 500; }
.hours th { color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); text-align: right; }
.contact-form { background: #fff; padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.92rem; color: var(--color-neutral-dark); }
.field input, .field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: 10px; font-family: inherit; font-size: 1rem; color: var(--color-text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--color-muted); margin: 0.5rem 0 1.25rem; flex-wrap: wrap; }
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 249, 255, 0.85); padding-block: 3.5rem 2rem; margin-top: 2rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 0.85rem; }
.site-footer a { color: rgba(240, 249, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer-tagline { color: rgba(240, 249, 255, 0.75); margin-top: 0.75rem; }
.legal-links { margin-top: 0.5rem !important; }
.copyright { text-align: center; color: rgba(240, 249, 255, 0.6); margin-top: 2rem; font-size: 0.85rem; }

/* === 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: var(--radius-md); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.cookie-banner .btn--ghost { color: var(--color-neutral-light); border-color: rgba(240, 249, 255, 0.3); }
.cookie-banner .btn--ghost:hover { background: rgba(240, 249, 255, 0.1); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs .btn { margin-top: 0.5rem; align-self: flex-start; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.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; } }
