:root {
  --color-primary: #4F46E5;
  --color-secondary: #818CF8;
  --color-accent: #F97316;
  --color-neutral-dark: #1E1B4B;
  --color-neutral-light: #EEF2FF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --shadow-sm: 0 2px 20px rgba(30,27,75,0.06);
  --shadow-md: 0 12px 32px -12px rgba(30,27,75,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(30,27,75,0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-dark); background: #fff; 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 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 1rem; }
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; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section--tinted { background: var(--color-neutral-light); }
.section__title { text-align: center; margin-bottom: 2.5rem; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8125rem; color: var(--color-primary); font-weight: 600; margin-bottom: 0.75rem; }

/* === Header / nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.75); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(30,27,75,0.06); transition: background 0.3s, box-shadow 0.3s; }
.site-header.scrolled { background: rgba(255,255,255,0.92); 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; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 1px solid rgba(30,27,75,0.12); border-radius: 10px; padding: 0.5rem; color: var(--color-neutral-dark); cursor: pointer; }
.primary-nav { display: none; flex-direction: column; gap: 0.5rem; width: 100%; padding-top: 1rem; }
.primary-nav.is-open { display: flex; }
.primary-nav a { font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); padding: 0.5rem 0.25rem; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; width: auto; padding-top: 0; gap: 2rem; align-items: center; }
  .primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .primary-nav a:hover { text-decoration: none; }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .logo img { height: 96px; }
}

/* === Hero (split) === */
.hero { position: relative; padding-block: 3rem 4rem; overflow: hidden; background: radial-gradient(circle at 85% 15%, rgba(249,115,22,0.08), transparent 55%), linear-gradient(135deg, rgba(238,242,255,0.6), rgba(255,255,255,1) 60%); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero__text h1 { margin-bottom: 1.25rem; }
.hero__sub { font-size: 1.125rem; color: rgba(30,27,75,0.78); max-width: 56ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero__grid--single { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; text-align: center; }
.hero__grid--single .hero__ctas { justify-content: center; }
.hero__grid--single .eyebrow { color: var(--color-primary); }

@media (min-width: 860px) {
  .hero { padding-block: 6rem 5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero__media img { aspect-ratio: 4/5; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.5rem; border-radius: 12px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; text-decoration: none; line-height: 1.2; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 8px 20px -8px rgba(79,70,229,0.6); }
.btn--primary:hover { box-shadow: 0 12px 28px -8px rgba(79,70,229,0.7); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: rgba(79,70,229,0.3); }
.btn--ghost:hover { background: rgba(79,70,229,0.06); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(249,115,22,0.6); }
.btn--accent:hover { background: #ea6a13; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* === Cards grid === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--cards { grid-template-columns: repeat(3, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid rgba(30,27,75,0.08); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.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(79,70,229,0.12), rgba(129,140,248,0.18)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: rgba(30,27,75,0.78); margin-bottom: 0; font-size: 0.95rem; }

/* === Blockquote === */
.quote { margin: 0; text-align: center; padding: 2rem 0; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.625rem); line-height: 1.45; color: var(--color-neutral-dark); margin-bottom: 1.25rem; }
.quote cite { font-style: normal; color: var(--color-primary); font-weight: 600; font-size: 0.95rem; }

/* === CTA band === */
.cta-band { padding: 4rem 0; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin-inline: auto; margin-bottom: 1.75rem; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 980px) { .pricing-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; background: #fff; border: 1px solid rgba(30,27,75,0.12); border-radius: var(--radius); padding: 2.25rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--color-accent); border-width: 2px; box-shadow: var(--shadow-md); }
.pricing-card__badge { position: absolute; top: -12px; right: 20px; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.pricing-card__plan { font-size: 1.5rem; margin-bottom: 0.25rem; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; }
.pricing-card__lede { color: rgba(30,27,75,0.7); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; flex: 1; }
.pricing-card__features li { display: flex; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.95rem; color: rgba(30,27,75,0.85); border-bottom: 1px dashed rgba(30,27,75,0.08); }
.pricing-card__cta { width: 100%; }

/* === FAQ === */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid rgba(30,27,75,0.1); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 0.75rem; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--color-primary); transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 0.75rem 0 0; color: rgba(30,27,75,0.78); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(30,27,75,0.08); }
.contact-form label { display: grid; gap: 0.4rem; font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { font: inherit; font-family: var(--font-body); padding: 0.75rem 0.9rem; border: 1px solid rgba(30,27,75,0.18); border-radius: 10px; background: #fff; color: var(--color-neutral-dark); transition: border-color .15s, box-shadow .15s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }
.contact-form button { justify-self: start; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(238,242,255,0.85); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(238,242,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer .logo img { filter: brightness(0) invert(1); height: 56px; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer__tagline { font-size: 0.9rem; color: rgba(238,242,255,0.7); margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact address { font-style: normal; line-height: 1.7; font-size: 0.9rem; }
.footer-legal { font-size: 0.85rem; margin-top: 1rem; }
.footer-vat { font-size: 0.8rem; color: rgba(238,242,255,0.55); margin-top: 0.5rem; }
.copyright { border-top: 1px solid rgba(238,242,255,0.12); padding-top: 1.25rem; font-size: 0.85rem; color: rgba(238,242,255,0.6); text-align: center; margin: 0; }
@media (min-width: 860px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; } }

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

/* === 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: 14px; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.45); max-width: 640px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; padding: 0.55rem 1rem; border-radius: 10px; border: 1px solid rgba(238,242,255,0.25); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .15s; }
.cookie-banner__actions button:hover { background: rgba(238,242,255,0.08); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #ea6a13; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(238,242,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; background: var(--color-primary); color: #fff; border: none; padding: 0.55rem 1rem; border-radius: 10px; font-family: var(--font-heading); font-weight: 600; cursor: pointer; }
@media (min-width: 720px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
