:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #EC4899;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --border: rgba(9,9,11,0.10);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 32px -12px rgba(0,0,0,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { 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%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--color-neutral-dark); 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; color: var(--color-secondary); }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section-alt { background: #F4F4F5; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-sub { color: var(--color-secondary); max-width: 60ch; margin-inline: auto; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }

@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Header / Nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .2s, box-shadow .2s;
}
.site-header.scrolled { background: rgba(250,250,250,0.94); box-shadow: 0 4px 20px -8px rgba(0,0,0,.08); }
.nav-inner { max-width: 1160px; margin-inline: auto; padding: .75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo-footer img { height: 64px; }

.primary-nav { display: none; align-items: center; gap: 1.5rem; }
.primary-nav a { position: relative; font-size: .95rem; font-weight: 500; color: var(--color-secondary); padding: .25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover { color: var(--color-primary); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-primary); color: var(--color-neutral-light); padding: .55rem 1.1rem; border-radius: 999px; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--color-accent); color: #fff; }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); border-radius: 10px; padding: .5rem; color: var(--color-primary); cursor: pointer; }

@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}

.primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 100%; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--border); gap: .5rem; }
@media (min-width: 900px) {
  .primary-nav.is-open { position: static; flex-direction: row; padding: 0; background: transparent; border: 0; }
}

/* === Hero === */
.hero { position: relative; overflow: hidden; padding-block: 4rem 2.5rem; text-align: center; }
.hero-glow { position: absolute; inset: -20% 0 auto 0; height: 480px; background: radial-gradient(closest-side, rgba(236,72,153,0.14), transparent 70%); pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 22ch; margin: 0 auto 1.25rem; }
.hero .lede { font-size: 1.15rem; color: var(--color-secondary); max-width: 52ch; margin: 0 auto 1.75rem; }
.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-visual { margin: 2.5rem auto 0; max-width: 960px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 768px) { .hero { padding-block: 6rem 3rem; } }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary) 0%, #3F3F46 100%); color: var(--color-neutral-light); box-shadow: 0 10px 24px -12px rgba(9,9,11,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -14px rgba(9,9,11,.55); background: linear-gradient(135deg, var(--color-accent) 0%, #F472B6 100%); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(236,72,153,.45); outline-offset: 2px; }

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

.card { display: block; background: var(--color-neutral-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); color: inherit; }
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; }
.card-link { text-decoration: none; }
.card-link:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(236,72,153,.35); }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(236,72,153,0.10); color: var(--color-accent); margin-bottom: 1rem; }

/* === Testimonial === */
.testimonial-section { }
.testimonial { margin: 0; padding: 2rem; background: #FFFFFF; border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; position: relative; box-shadow: var(--shadow-sm); }
.testimonial p { font-family: var(--font-heading); font-size: 1.35rem; line-height: 1.5; color: var(--color-primary); margin-bottom: 1rem; font-weight: 500; }
.testimonial cite { font-style: normal; font-size: .95rem; color: var(--color-secondary); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark) 0%, var(--color-primary) 100%); color: var(--color-neutral-light); padding-block: 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(236,72,153,.25), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,250,250,.75); margin-bottom: 1.5rem; }
.cta-band .btn-primary { background: var(--color-accent); color: #fff; }
.cta-band .btn-primary:hover { background: #F472B6; }

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

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; 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: 0 20px 50px -20px rgba(236,72,153,.35); }
.pricing-card__badge { position: absolute; top: -14px; right: 1.5rem; background: var(--color-accent); color: var(--color-neutral-light); font-family: var(--font-heading); font-size: .75rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.pricing-card__plan { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-secondary); margin-bottom: .5rem; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-neutral-dark); margin: 0 0 1rem; letter-spacing: -0.02em; }
.pricing-card__lede { color: var(--color-secondary); margin-bottom: 1.5rem; font-size: .95rem; }
.pricing-card__features { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.pricing-card__features li { display: flex; gap: .5rem; padding: .5rem 0; color: var(--color-primary); border-bottom: 1px dashed var(--border); font-size: .95rem; }
.pricing-card__features li:last-child { border-bottom: 0; }
.pricing-card__cta { margin-top: auto; text-align: center; }

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

.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm); }
.contact-card p { margin: .35rem 0; }
.contact-card a { color: var(--color-accent); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,.7); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(250,250,250,.75); }
.site-footer a:hover { color: var(--color-accent); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(250,250,250,.1); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a { font-size: .95rem; }
.tagline { color: rgba(250,250,250,.6); margin-top: .75rem; max-width: 26ch; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: .85rem; }
address { font-style: normal; color: rgba(250,250,250,.75); font-size: .95rem; line-height: 1.7; }
.copyright { text-align: center; margin: 1.5rem 0 0; font-size: .85rem; color: rgba(250,250,250,.5); }

/* === 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); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(250,250,250,.85); margin: 0 0 1rem; font-size: .9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button { font-family: var(--font-heading); font-weight: 600; font-size: .85rem; padding: .55rem 1rem; border-radius: 999px; cursor: pointer; border: 1px solid rgba(250,250,250,.2); background: transparent; color: var(--color-neutral-light); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner__actions button:hover { border-color: var(--color-neutral-light); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(250,250,250,.9); }
.cookie-banner__prefs button { justify-self: flex-start; margin-top: .5rem; font-family: var(--font-heading); font-weight: 600; font-size: .85rem; padding: .5rem 1rem; border-radius: 999px; background: var(--color-neutral-light); color: var(--color-primary); border: 0; cursor: pointer; }
