:root {
  --color-primary: #64748B;
  --color-secondary: #94A3B8;
  --color-accent: #F97316;
  --color-neutral-dark: #334155;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(15, 23, 42, 0.28);
  --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 { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-dark); background: var(--color-neutral-light); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-neutral-dark); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 .75rem; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__head p { color: var(--color-primary); }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248, 250, 252, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(51, 65, 85, 0.08); transition: background .3s var(--ease-hover), box-shadow .3s var(--ease-hover); }
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { display: inline-flex; padding: .5rem; color: var(--color-neutral-dark); border-radius: 8px; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-weight: 500; color: var(--color-neutral-dark); padding: .25rem 0; transition: color .2s var(--ease-hover); }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.primary-nav a:hover { color: var(--color-accent); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: linear-gradient(135deg, var(--color-accent), #ea580c); color: #fff; padding: .55rem 1.1rem; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(249, 115, 22, 0.6); }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { color: #fff; transform: translateY(-1px); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}
.primary-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.5rem; background: var(--color-neutral-light); border-bottom: 1px solid rgba(51, 65, 85, 0.08); box-shadow: var(--shadow-md); gap: .5rem; }
.primary-nav.is-open a { padding: .75rem 0; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: 1rem; letter-spacing: -0.01em; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, var(--color-neutral-dark), #1e293b); color: #fff; box-shadow: 0 10px 24px -10px rgba(51, 65, 85, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(51, 65, 85, 0.65); color: #fff; }
.btn-accent { background: linear-gradient(135deg, var(--color-accent), #ea580c); color: #fff; box-shadow: 0 12px 28px -10px rgba(249, 115, 22, 0.6); }
.btn-accent:hover { transform: translateY(-2px); color: #fff; }
.btn-ghost { background: rgba(51, 65, 85, 0.06); color: var(--color-neutral-dark); }
.btn-ghost:hover { background: rgba(51, 65, 85, 0.12); transform: translateY(-2px); }

/* === Hero (split) === */
.hero { position: relative; padding-block: 3.5rem 4rem; background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), rgba(248, 250, 252, 0)); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -10% -20% auto auto; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; background: radial-gradient(closest-side, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0)); pointer-events: none; z-index: 0; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero { padding-block: 6rem 7rem; } .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin-bottom: .75rem; }
.hero__text h1 { margin-bottom: 1rem; }
.lede { font-size: 1.125rem; color: var(--color-primary); max-width: 48ch; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .lede { font-size: 1.25rem; } }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__proof { list-style: none; margin: 0; padding: 1rem 0 0; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; border-top: 1px solid rgba(51, 65, 85, 0.1); }
.hero__proof li { font-size: .95rem; color: var(--color-primary); }
.hero__proof strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-neutral-dark); font-weight: 700; }
.hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 899px) { .hero__media img { aspect-ratio: 4/3; } }

.thanks-badge { display: grid; place-items: center; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(100, 116, 139, 0.12)); color: var(--color-accent); box-shadow: var(--shadow-md); }
@media (max-width: 899px) { .thanks-badge { aspect-ratio: 4/3; } }

/* === Intro === */
.intro { text-align: center; }
.intro.alt { background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), transparent); }
.intro h2 { margin-bottom: 1.25rem; }
.intro p { color: var(--color-primary); font-size: 1.05rem; }

/* === Grids & cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid rgba(51, 65, 85, 0.08); border-radius: var(--radius); padding: 1.75rem; 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__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.05)); color: var(--color-accent); margin-bottom: 1rem; }
.card p { color: var(--color-primary); font-size: .98rem; margin: 0; }
.card h3 { margin-bottom: .5rem; }

/* === Testimonial === */
.testimonial blockquote { position: relative; text-align: center; margin: 0; padding: 2rem 1rem; }
.testimonial blockquote::before { content: "\201E"; position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-size: 6rem; line-height: 1; color: rgba(249, 115, 22, 0.25); }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; color: var(--color-primary); font-size: .95rem; }

/* === CTA band === */
.cta-band { margin: 3rem 1.25rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--color-neutral-dark), #1e293b); color: #fff; padding: 3rem 1.5rem; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 60%; height: 200%; background: radial-gradient(closest-side, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0)); pointer-events: none; }
.cta-band__inner { position: relative; display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cta-band { padding: 3.5rem 3rem; margin-inline: auto; max-width: calc(1200px - 2.5rem); } .cta-band__inner { grid-template-columns: 1fr auto; padding: 0; } }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(248, 250, 252, 0.8); margin: 0; }

/* === FAQ === */
.faq__list { display: flex; flex-direction: column; gap: .75rem; }
.faq__list details { background: #fff; border: 1px solid rgba(51, 65, 85, 0.08); border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease-hover); }
.faq__list details[open] { box-shadow: var(--shadow-md); }
.faq__list summary { list-style: none; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-neutral-dark); 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); transition: transform .2s var(--ease-hover); }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { margin: .75rem 0 0; color: var(--color-primary); }

/* === Contact === */
.contact__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(51, 65, 85, 0.08); }
.contact-form h2 { margin-bottom: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .9rem; font-weight: 500; color: var(--color-neutral-dark); }
.field input, .field textarea { font: inherit; padding: .75rem .9rem; border: 1px solid rgba(51, 65, 85, 0.18); border-radius: 10px; background: var(--color-neutral-light); transition: border-color .2s, box-shadow .2s; color: var(--color-neutral-dark); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18); }
.form-consent { display: flex; align-items: flex-start; gap: .55rem; font-size: .88rem; color: var(--color-primary); margin: 1rem 0 1.25rem; line-height: 1.5; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }
.form-consent input { margin-top: .2rem; accent-color: var(--color-accent); }
.contact-info { background: linear-gradient(135deg, rgba(100, 116, 139, 0.08), rgba(148, 163, 184, 0.04)); padding: 2rem; border-radius: var(--radius); }
.contact-info h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.contact-info p { color: var(--color-neutral-dark); }
.contact-info a { color: var(--color-accent); }

/* === Footer === */
.site-footer { background: #0f172a; color: rgba(248, 250, 252, 0.78); padding: 4rem 0 1.5rem; margin-top: 4rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.3fr; } }
.footer__tag { color: rgba(248, 250, 252, 0.6); margin-top: .5rem; }
.logo--footer img { height: 72px; filter: brightness(0) invert(1); }
.footer__nav h4, .footer__contact h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer__nav { display: flex; flex-direction: column; }
.footer__nav a { color: rgba(248, 250, 252, 0.72); padding: .3rem 0; transition: color .2s; }
.footer__nav a:hover { color: var(--color-accent); }
.footer__contact p { margin: 0 0 .5rem; color: rgba(248, 250, 252, 0.72); font-size: .95rem; }
.footer__contact a { color: rgba(248, 250, 252, 0.9); }
.footer__contact a:hover { color: var(--color-accent); }
.footer__legal { margin-top: 1rem !important; font-size: .85rem; }
.footer__legal a { color: rgba(248, 250, 252, 0.6); }
.footer__legal a:hover { color: var(--color-accent); }
.footer__base { border-top: 1px solid rgba(248, 250, 252, 0.1); padding-top: 1.5rem; font-size: .85rem; color: rgba(248, 250, 252, 0.5); text-align: center; }
.footer__base p { margin: 0; }

/* === 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); box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; color: rgba(248, 250, 252, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button { padding: .55rem 1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; background: rgba(248, 250, 252, 0.1); color: var(--color-neutral-light); transition: background .2s; }
.cookie-banner__actions button:hover { background: rgba(248, 250, 252, 0.18); }
.cookie-banner__actions [data-cookie-accept] { background: var(--color-accent); color: #fff; }
.cookie-banner__actions [data-cookie-accept]:hover { background: #ea580c; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs input { accent-color: var(--color-accent); }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; padding: .5rem 1rem; border-radius: 999px; background: var(--color-accent); color: #fff; font-weight: 600; }

/* === Reveal animation === */
.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; } }
