:root {
  --color-primary: #0F172A;
  --color-secondary: #334155;
  --color-accent: #CA8A04;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(2, 6, 23, 0.10);
  --color-muted: #64748B;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 12px 40px -20px rgba(2, 6, 23, 0.28);
  --shadow-lg: 0 30px 60px -30px rgba(2, 6, 23, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
p { margin: 0 0 1rem; color: var(--color-secondary); }
a { color: var(--color-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--color-muted); font-size: .95rem; }

/* === Logo === */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: 0 4px 24px -12px rgba(2,6,23,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-border); border-radius: 10px;
  width: 44px; height: 44px; color: var(--color-primary); cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; flex-direction: column; gap: .25rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.25rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.primary-nav a { display: inline-block; padding: .6rem .25rem; font-weight: 500; color: var(--color-secondary); position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-cta { background: var(--color-primary); color: var(--color-neutral-light) !important; padding: .6rem 1rem !important; border-radius: 999px; font-weight: 600; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; position: static; padding: 0; background: transparent; border: none; box-shadow: none; }
  .primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
  .primary-nav a:not(.nav-cta):hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: 1rem; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover); text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), #1e293b); color: var(--color-neutral-light); box-shadow: 0 8px 24px -12px rgba(2,6,23,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -12px rgba(2,6,23,.6); }
.btn-accent { background: linear-gradient(135deg, var(--color-accent), #a06f04); color: var(--color-neutral-light); box-shadow: 0 8px 24px -12px rgba(202,138,4,.6); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-ghost:hover { background: rgba(2,6,23,.04); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* === Hero (hero-split) === */
.hero { position: relative; padding-block: 3rem 3.5rem; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 60%; height: 80%;
  background: radial-gradient(circle at 60% 40%, rgba(202,138,4,0.14), transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-copy .eyebrow { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 1rem; }
.hero-copy h1 { max-width: 15ch; }
.hero-copy .lede { font-size: 1.15rem; color: var(--color-secondary); max-width: 46ch; margin-bottom: 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.proof-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; color: var(--color-secondary); font-size: .95rem; }
.proof-row strong { color: var(--color-primary); font-family: var(--font-heading); font-size: 1.25rem; display: block; }
.hero-visual img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-thanks { padding-block: 4rem 2rem; }
.hero-thanks .eyebrow { color: var(--color-accent); font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
@media (min-width: 900px) {
  .hero { padding-block: 5rem 5.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-tinted { background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%); border-block: 1px solid var(--color-border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-secondary); }

/* === Grids / Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card p { color: var(--color-secondary); font-size: .96rem; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(202,138,4,0.12); color: var(--color-accent); margin-bottom: 1rem; }
.stat-card { text-align: left; }
.stat-num { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--color-accent); margin: 0 0 .5rem; }

/* === Split visual (about) === */
.split-visual { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split-visual__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (min-width: 900px) { .split-visual { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }

/* === Quote === */
.quote { margin: 0; padding: 2rem 1.5rem; text-align: center; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); position: relative; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5; color: var(--color-primary); font-weight: 500; margin-bottom: 1rem; }
.quote cite { font-style: normal; color: var(--color-secondary); font-size: .95rem; }

/* === CTA band === */
.cta-band { padding-block: 3rem; background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%); color: var(--color-neutral-light); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: -50% auto auto -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(202,138,4,0.18), transparent 60%); }
.cta-band-inner { position: relative; z-index: 1; display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: .5rem; }
.cta-band p { color: rgba(248,250,252,0.85); margin: 0; }
.cta-band .muted { color: rgba(248,250,252,0.65); margin-top: .5rem; }
@media (min-width: 800px) { .cta-band-inner { grid-template-columns: 1fr auto; gap: 2rem; } }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: 1rem 1.25rem; margin-bottom: .75rem; transition: box-shadow .2s var(--ease-hover); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-accent); transition: transform .2s var(--ease-hover); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; }

/* === Contact form === */
.contact-form { display: grid; gap: 1rem; background: #fff; padding: 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 500; font-size: .95rem; color: var(--color-primary); }
.field input, .field textarea, .field select { font-family: inherit; font-size: 1rem; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-primary); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(202,138,4,.2); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--color-secondary); line-height: 1.45; }
.form-consent input { margin-top: .2rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248,250,252,0.75); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { filter: brightness(0) invert(1); opacity: .95; }
.footer-logo img { height: 56px; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { color: rgba(248,250,252,0.75); }
.site-footer a:hover { color: var(--color-neutral-light); }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact address { font-style: normal; margin-bottom: .5rem; }
.footer-contact p { color: rgba(248,250,252,0.75); margin-bottom: .3rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: 1rem; font-size: .9rem; }
.tagline { color: rgba(248,250,252,0.7); font-size: .95rem; margin-top: .5rem; }
.copyright { border-top: 1px solid rgba(248,250,252,0.1); padding-top: 1.25rem; font-size: .85rem; color: rgba(248,250,252,0.55); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; } }

/* === Reveal on scroll === */
.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; } .btn:hover, .card:hover { transform: none !important; } }

/* === 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); border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: 0 20px 60px -20px rgba(0,0,0,.5); max-width: 640px; margin-inline: auto; border: 1px solid rgba(248,250,252,0.08); }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(248,250,252,0.85); margin: 0 0 .9rem; font-size: .92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button { padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(248,250,252,0.2); background: transparent; color: var(--color-neutral-light); font-family: inherit; font-weight: 500; font-size: .9rem; cursor: pointer; transition: background .15s; }
.cookie-banner__actions button:hover { background: rgba(248,250,252,0.08); }
.cookie-banner__actions [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-neutral-light); }
.cookie-banner__actions [data-cookie-accept]:hover { background: #a06f04; }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248,250,252,0.1); display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(248,250,252,0.85); }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; padding: .55rem 1rem; margin-top: .5rem; border-radius: 999px; background: var(--color-accent); color: var(--color-neutral-light); border: none; font-family: inherit; font-weight: 500; font-size: .9rem; cursor: pointer; }
