/* === Tokens === */
:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #EC4899;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9,9,11,0.10);
  --color-muted: #52525B;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 2px 20px rgba(9,9,11,0.06);
  --shadow-hover: 0 20px 50px -20px rgba(9,9,11,0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* === 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-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; margin: 0 0 0.5em; line-height: 1.2; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === Layout helpers === */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 4rem; }
.section__title { text-align: center; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 2.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.muted { color: var(--color-muted); }

/* === Header / Nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,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 .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { background: rgba(250,250,250,0.92); box-shadow: 0 8px 24px -18px rgba(9,9,11,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 0.5rem; }
.nav-toggle__bar { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); transition: transform .2s var(--ease); }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a { position: relative; font-weight: 500; padding: 0.25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav.is-open { display: flex; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
@media (max-width: 899px) {
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--color-neutral-light); border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem; gap: 0.25rem;
  }
  .primary-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-family: var(--font-heading);
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  cursor: pointer; letter-spacing: -0.005em;
}
.btn + .btn { margin-left: 0.5rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary));
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -14px rgba(9,9,11,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(9,9,11,0.6); }
.btn-primary:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.btn-ghost {
  background: transparent; color: var(--color-neutral-dark);
  border-color: rgba(9,9,11,0.18);
}
.btn-ghost:hover { border-color: var(--color-neutral-dark); transform: translateY(-2px); }
.btn-on-dark { background: var(--color-accent); color: var(--color-neutral-light); box-shadow: 0 10px 30px -12px rgba(236,72,153,0.55); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(236,72,153,0.7); }

/* === Hero (centered) === */
.hero { position: relative; padding-block: 4rem 3rem; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% 0 auto 0; height: 60%;
  background:
    radial-gradient(60% 50% at 50% 10%, rgba(236,72,153,0.14), transparent 70%),
    radial-gradient(50% 40% at 80% 20%, rgba(24,24,27,0.08), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__title {
  max-width: 22ch; margin-inline: auto;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
}
.hero__sub { max-width: 52ch; margin: 0.75rem auto 1.75rem; color: var(--color-secondary); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero__ctas { margin-bottom: 3rem; }
.hero__image { margin: 0 auto; max-width: 1000px; }
.hero__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }

/* === Intro paragraph === */
.intro__inner { max-width: 68ch; margin-inline: auto; text-align: center; }
.intro h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
.intro p { color: var(--color-secondary); font-size: 1.05rem; }

/* === Grids / Cards === */
.grid { display: grid; gap: 1.25rem; 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 var(--color-border); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-soft);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(9,9,11,0.16); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(24,24,27,0.06));
  color: var(--color-accent); margin-bottom: 1rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { margin: 0; color: var(--color-secondary); font-size: 0.98rem; }

/* === Testimonial === */
.testimonial { text-align: center; }
.testimonial blockquote {
  max-width: 720px; margin: 0 auto; padding: 2.5rem; position: relative;
  border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.testimonial blockquote::before {
  content: '"'; position: absolute; top: -0.4em; left: 1rem;
  font-family: var(--font-heading); font-size: 5rem; color: var(--color-accent); opacity: 0.35; line-height: 1;
}
.testimonial p { font-size: 1.15rem; color: var(--color-primary); font-style: italic; margin: 0 0 1rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-secondary); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary));
  color: var(--color-neutral-light); padding-block: 3.5rem; margin-block: 4rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -30% -20% auto auto; width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(236,72,153,0.28), transparent);
  pointer-events: none;
}
.cta-band__inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.cta-band p { color: rgba(250,250,250,0.78); margin: 0; max-width: 60ch; }
@media (min-width: 800px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}

/* === FAQ === */
.faq__inner { max-width: 780px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.faq-list details[open] { box-shadow: var(--shadow-soft); border-color: rgba(9,9,11,0.14); }
.faq-list summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-neutral-dark); 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); transition: transform .2s var(--ease); line-height: 1; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0.75rem 0 0; color: var(--color-secondary); }

/* === Contact form === */
.contact-form__wrap { max-width: 640px; margin-inline: auto; background: #fff; padding: 2.25rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.9rem; font-weight: 600; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); background: var(--color-neutral-light); color: var(--color-neutral-dark);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(236,72,153,0.18); background: #fff;
}
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--color-secondary); flex-wrap: wrap; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 0.5rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.78); padding-block: 3.5rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.site-footer h4 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer a { color: rgba(250,250,250,0.78); transition: color .15s var(--ease); }
.site-footer a:hover { color: var(--color-neutral-light); }
.logo--footer img { height: 64px; }
.tagline { margin-top: 0.75rem; color: rgba(250,250,250,0.65); font-size: 0.95rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid rgba(250,250,250,0.10); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.85rem; color: rgba(250,250,250,0.55); }

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

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