:root {
  --color-primary: #0F172A;
  --color-secondary: #334155;
  --color-accent: #CA8A04;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(15, 23, 42, 0.12);
  --color-muted: #64748B;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(2, 6, 23, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(2, 6, 23, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--color-secondary); }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 0.75rem; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-primary); color: var(--color-neutral-light); padding: 0.5rem 1rem; z-index: 10000; }
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: 0 6px 24px -20px rgba(2, 6, 23, 0.3); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out); }
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.primary-nav a { padding: 0.65rem 0.5rem; font-weight: 500; color: var(--color-primary); border-radius: 8px; }
.primary-nav a.is-active { color: var(--color-accent); }
.primary-nav.is-open { position: absolute; left: 1rem; right: 1rem; top: 100%; background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 0.75rem; margin-top: 0.5rem; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex !important; align-items: center; gap: 1.75rem; position: static; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .primary-nav a { padding: 0.5rem 0; position: relative; }
  .primary-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease-out); }
  .primary-nav a:not(.btn):hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 1.4rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out); text-decoration: none; line-height: 1; }
.btn--small { padding: 0.6rem 1rem; font-size: 0.85rem; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); box-shadow: var(--shadow-sm); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-neutral-light); background: #a97404; }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); color: var(--color-primary); }
.btn:focus-visible { outline: 3px solid rgba(202, 138, 4, 0.4); outline-offset: 2px; }

/* === Hero (centered) === */
.hero { position: relative; overflow: hidden; padding-block: 3.5rem 4rem; text-align: center; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #EEF2F7 100%); }
.hero__glow { position: absolute; inset: -20% 20% auto 20%; height: 500px; background: radial-gradient(closest-side, rgba(202, 138, 4, 0.18), transparent 70%); filter: blur(20px); z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; }
.hero__title { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 0.75rem auto 1.75rem; color: var(--color-secondary); font-size: 1.125rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.hero__image { max-width: 1000px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(2, 6, 23, 0.4); border: 1px solid rgba(15, 23, 42, 0.08); }
.hero__image img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
@media (min-width: 768px) {
  .hero { padding-block: 6rem 5rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-secondary); }
.intro { text-align: center; }
.intro p { font-size: 1.05rem; }

/* === Grids / Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.card { background: var(--color-neutral-light); 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-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15, 23, 42, 0.18); }
.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; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; font-size: 0.98rem; }
.card--stat h3 { font-size: 1.4rem; color: var(--color-accent); font-family: var(--font-heading); }

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

/* === Testimonial === */
.testimonial { background: var(--color-primary); color: var(--color-neutral-light); }
.testimonial h2, .testimonial p, .testimonial cite { color: var(--color-neutral-light); }
.quote { margin: 0; text-align: center; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--color-neutral-light); margin-bottom: 1.25rem; }
.quote cite { font-style: normal; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(248, 250, 252, 0.7); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); color: var(--color-neutral-light); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: -30% -20% auto auto; width: 500px; height: 500px; background: radial-gradient(closest-side, rgba(202, 138, 4, 0.28), transparent 70%); pointer-events: none; }
.cta-band h2 { color: var(--color-neutral-light); position: relative; }
.cta-band p { color: rgba(248, 250, 252, 0.85); position: relative; }
.cta-band .btn { position: relative; }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.contact-band p { font-size: 1.05rem; }
.contact-band a { color: var(--color-primary); font-weight: 500; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; transition: box-shadow 0.2s var(--ease-out); }
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: rgba(15, 23, 42, 0.2); }
.faq-list summary { font-family: var(--font-heading); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); line-height: 1; transition: transform 0.2s var(--ease-out); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0.75rem 0 0; }

/* === Contact form === */
.form-section .lede { text-align: center; margin-bottom: 2rem; color: var(--color-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-weight: 500; font-size: 0.9rem; color: var(--color-primary); }
.form-row input, .form-row textarea, .form-row select { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; color: var(--color-primary); transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--color-secondary); }
.form-consent input { margin-top: 0.2rem; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.75); padding-block: 3.5rem 1.5rem; margin-top: 2rem; }
.site-footer h4 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer__tag { margin-top: 0.75rem; color: rgba(248, 250, 252, 0.7); }
.footer__nav { display: flex; flex-direction: column; }
.footer__nav a { padding: 0.25rem 0; }
.footer__contact address { font-style: normal; line-height: 1.9; margin-bottom: 1rem; }
.footer__legal { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; }
.footer__bottom { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(248, 250, 252, 0.1); font-size: 0.85rem; color: rgba(248, 250, 252, 0.6); }
.logo--footer img { height: 60px; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; }
}

/* === 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: var(--shadow-lg);
  max-width: 640px;
  margin-inline: auto;
  border: 1px solid rgba(248, 250, 252, 0.1);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(248, 250, 252, 0.85); margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(248, 250, 252, 0.25); }
.cookie-banner__actions .btn--ghost:hover { border-color: var(--color-neutral-light); color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }

/* === 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; }
  html { scroll-behavior: auto; }
}
