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

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
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);
  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); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin: 0 0 1rem;
}
.lede { font-size: 1.125rem; color: var(--color-secondary); max-width: 52ch; }

/* === Header === */
.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 transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-line-soft);
  box-shadow: 0 6px 24px -18px rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  position: relative;
  padding: 0.4rem 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.is-active { color: var(--color-primary); }
.primary-nav a.btn::after { display: none; }

.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-line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .logo--footer img { height: 80px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}

.primary-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--color-neutral-light);
  border: 1px solid var(--color-line-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.primary-nav.is-open a { padding: 0.75rem 0.5rem; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1;
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn--primary {
  color: var(--color-neutral-light);
  background: linear-gradient(135deg, var(--color-accent) 0%, #B91C6A 100%);
  box-shadow: 0 12px 30px -12px rgba(236, 72, 153, 0.55);
}
.btn--primary:hover {
  color: var(--color-neutral-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(236, 72, 153, 0.7);
}
.btn--ghost {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-line);
}
.btn--ghost:hover {
  color: var(--color-neutral-dark);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.btn--onDark { box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.45); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero split === */
.hero {
  position: relative;
  padding-block: 3.5rem 3rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-split__grid--single { grid-template-columns: 1fr; max-width: 780px; margin-inline: auto; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-split__media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .hero { padding-block: 5.5rem 5rem; }
  .hero-split__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero-split__grid--single { grid-template-columns: 1fr; }
  .hero-split--text { padding-block: 6rem 3rem; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 900px) { .section { padding-block: 5rem; } }
.section__head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-inline: auto; }
.section__sub { color: var(--color-secondary); font-size: 1.05rem; }
.intro h2 { text-align: center; }
.intro p { color: var(--color-secondary); font-size: 1.05rem; text-align: center; }

/* === Cards === */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid--3 { grid-template-columns: repeat(2, 1fr); } .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s 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: rgba(236, 72, 153, 0.1);
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-secondary); font-size: 0.98rem; margin: 0; }

/* === Testimonial === */
.testimonial-section { background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.04)); }
.testimonial {
  margin: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  position: relative;
}
.testimonial p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-neutral-dark);
  max-width: 60ch;
  margin: 0 auto 1.25rem;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  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;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: auto -10% -50% auto;
  width: 60vw;
  height: 60vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.35), transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 3rem; } }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250, 250, 250, 0.75); margin: 0; }

/* === Team block === */
.team-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.team-block__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .team-block__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) { .pricing-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  position: relative;
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: var(--color-neutral-light);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s 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: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.pricing-card__plan {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.pricing-card__lede {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding-block: 0.5rem;
  border-top: 1px solid var(--color-line-soft);
  color: var(--color-primary);
  font-size: 0.95rem;
}
.pricing-card__features li:first-child { border-top: none; }
.pricing-card__features li > span { color: var(--color-accent); font-weight: 700; }
.pricing-card__cta { align-self: stretch; text-align: center; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--color-line-soft);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 0.75rem 0 0; color: var(--color-secondary); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.14);
}
.contact-form button[type="submit"] { align-self: flex-start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 250, 0.75);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h4 {
  color: var(--color-neutral-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(250, 250, 250, 0.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, 0.1);
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__tagline { color: rgba(250, 250, 250, 0.7); font-size: 0.95rem; }
.footer__legal { margin-top: 1rem; font-size: 0.9rem; }
.footer__base { padding-top: 1.25rem; font-size: 0.85rem; color: rgba(250, 250, 250, 0.55); }
.site-footer .logo--footer img { filter: brightness(0) invert(1); }

/* === 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: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; color: rgba(250, 250, 250, 0.85); 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(250, 250, 250, 0.35);
}
.cookie-banner__actions .btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.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);
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.92rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

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