/* ============================================================
   Elixr Agency — premium creator growth agency
   Dark / charcoal, pink-magenta gradients, glassmorphism.
   ============================================================ */
:root {
  --pink: #ff2d9b;
  --pink-soft: #ff8fcb;
  --magenta: #e0157e;
  --purple: #8b5cf6;
  --purple-deep: #7c3aed;

  --bg: #0b0710;            /* page background (near-black) */
  --bg-2: #110b19;          /* section--soft */
  --ink: #f6f2fb;           /* headings */
  --body: #b4adc2;          /* body text */
  --muted: #837a92;         /* faint text */

  --card: rgba(255, 255, 255, 0.045);
  --card-hover: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);

  --grad: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(255, 45, 155, 0.22));

  --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 24px 50px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.6);
  --glow: 0 0 60px rgba(255, 45, 155, 0.22);

  --radius: 22px;
  --radius-lg: 30px;

  --display: "Sora", system-ui, sans-serif;
  --font: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

.container { width: min(1180px, 92vw); margin: 0 auto; }
.container--narrow { width: min(800px, 92vw); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.1rem;
}
.eyebrow--chip {
  -webkit-text-fill-color: var(--pink-soft);
  color: var(--pink-soft);
  background: rgba(255, 45, 155, 0.1);
  border: 1px solid rgba(255, 45, 155, 0.24);
  padding: 0.45rem 1rem;
  border-radius: 999px;
}
.eyebrow--light {
  -webkit-text-fill-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  --y: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transform: translateY(var(--y));
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 34px rgba(255, 45, 155, 0.42);
}
.btn--primary:hover { --y: -3px; box-shadow: 0 20px 46px rgba(255, 45, 155, 0.55); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { --y: -3px; border-color: var(--pink); color: #fff; }
.btn--light {
  color: var(--purple-deep);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.btn--light:hover { --y: -3px; box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5); }
.btn--outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--outline-light:hover { --y: -3px; background: rgba(255, 255, 255, 0.18); border-color: #fff; }
.btn--lg { padding: 1.15rem 2.7rem; font-size: 1.08rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(11, 7, 16, 0.6);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled { background: rgba(11, 7, 16, 0.82); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.nav__brand {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.3em;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 8px 20px rgba(255, 45, 155, 0.4);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(8rem, 14vh, 11rem) 0 clamp(4rem, 8vh, 7rem);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.blob--a {
  width: 46vw; height: 46vw;
  top: -16vw; right: -10vw;
  background: radial-gradient(circle, rgba(255, 45, 155, 0.5), transparent 70%);
}
.blob--b {
  width: 40vw; height: 40vw;
  bottom: -16vw; left: -12vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__lead {
  margin-top: 1.5rem;
  max-width: 33rem;
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  color: var(--body);
}
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stats span { display: block; margin-top: 0.2rem; font-size: 0.82rem; line-height: 1.45; color: var(--muted); }

/* Hero visual */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 155, 0.4), rgba(139, 92, 246, 0.26) 45%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero__bottle {
  position: relative;
  z-index: 1;
  width: min(440px, 82%);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll i {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section--soft { background: var(--bg-2); }

.head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); }
.head--sub { margin: clamp(2.6rem, 5vw, 3.6rem) auto clamp(1.6rem, 3vw, 2.2rem); }
.head__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.head__intro { margin-top: 1.1rem; font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--body); }

/* ---------- Cards (glass) ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: rgba(255, 45, 155, 0.35);
  box-shadow: var(--shadow-md), 0 0 40px rgba(255, 45, 155, 0.12);
}
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border-radius: 15px;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.card__text { font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(255, 45, 155, 0.3); box-shadow: var(--shadow-md); }
.step__num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 18px rgba(255, 45, 155, 0.4);
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; }

/* ---------- Split layout (image + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.split__content { gap: 1.1rem; }

.media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0814;
  box-shadow: var(--shadow-md), var(--glow);
}
.media img { width: 100%; height: auto; display: block; }
.media__tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 45, 155, 0.85);
  box-shadow: 0 6px 16px rgba(255, 45, 155, 0.4);
}

/* Division columns (You / Elixr) */
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.col--pink {
  background: linear-gradient(160deg, rgba(255, 45, 155, 0.1), rgba(255, 45, 155, 0.02));
  border-color: rgba(255, 45, 155, 0.28);
}
.col__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.ticks { list-style: none; display: grid; gap: 0.7rem; }
.ticks li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.95rem; color: var(--body);
}
.ticks li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 22px; height: 22px; flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff; font-size: 0.72rem; font-weight: 700;
}

/* ---------- Platforms We Work With ---------- */
.plat__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.plat-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.plat-cat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.plat-cat__label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 1.1rem;
}
.plat-logos { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.plat-logo {
  display: grid; place-items: center;
  height: 46px; min-width: 86px;
  padding: 0 0.85rem;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.plat-logo img { max-height: 24px; max-width: 92px; width: auto; object-fit: contain; }
.plat-more {
  display: grid; place-items: center;
  height: 46px;
  padding: 0 1rem;
  border-radius: 11px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--pink-soft);
  background: rgba(255, 45, 155, 0.08);
  border: 1px dashed rgba(255, 45, 155, 0.35);
}

/* ---------- Award (Bucharest Summit) ---------- */
.award {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(245, 210, 122, 0.1), rgba(255, 45, 155, 0.05)),
    var(--card);
  border: 1px solid rgba(245, 210, 122, 0.32);
  box-shadow: var(--shadow-md), 0 0 70px rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.award__badge { display: grid; place-items: center; }
.award__badge img {
  width: clamp(160px, 22vw, 210px);
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55));
}
.award__tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5d27a;
  background: rgba(245, 210, 122, 0.1);
  border: 1px solid rgba(245, 210, 122, 0.3);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.award__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
  background: linear-gradient(120deg, #f6dea0, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.award__body p { margin-top: 0.7rem; font-size: 0.98rem; color: var(--body); }
.award__body p:first-of-type { color: var(--ink); }

/* ---------- Calculator ---------- */
.calc {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.4rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.calc__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.calc__lead { margin-top: 1rem; font-size: 1.04rem; color: var(--body); }
.calc__note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted); }

.calc__panel {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.field { margin-bottom: 1.6rem; }
.field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 500; font-size: 0.95rem; color: var(--body);
  margin-bottom: 0.7rem;
}
.field output { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--pink-soft); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.45), rgba(255, 45, 155, 0.45));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--pink);
  box-shadow: 0 4px 12px rgba(255, 45, 155, 0.5);
  cursor: pointer; transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--pink);
  box-shadow: 0 4px 12px rgba(255, 45, 155, 0.5); cursor: pointer;
}

.results {
  margin-top: 1.7rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem;
}
.result { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.2rem; }
.result span { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.35rem; }
.result b { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.result--hero { grid-column: span 2; background: var(--grad); border: none; }
.result--hero span { color: rgba(255, 255, 255, 0.92); }
.result--hero b { color: #fff; font-size: 2.1rem; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.checklist--compact { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; align-content: start; }
.checklist li {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0.85rem 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.checklist li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  color: #fff; font-size: 0.78rem; font-weight: 700;
}

/* ---------- Who we work with (gradient band) ---------- */
.qualify {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: linear-gradient(135deg, var(--purple-deep), var(--pink));
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 45, 155, 0.25);
  color: #fff;
}
.qualify__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.14; }
.qualify__lead { margin-top: 1rem; font-size: 1.04rem; color: rgba(255, 255, 255, 0.92); }
.qualify__list { list-style: none; display: grid; gap: 0.85rem; }
.qualify__list li {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--display);
  font-weight: 600; font-size: 1.04rem;
}
.qualify__list li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

/* ---------- Case studies ---------- */
.case {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.case::before {
  content: "";
  position: absolute; left: 0; top: 1.8rem;
  width: 4px; height: 38px; border-radius: 0 4px 4px 0;
  background: var(--grad);
}
.case:hover { transform: translateY(-6px); border-color: rgba(255, 45, 155, 0.3); box-shadow: var(--shadow-md); }
.case__tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--pink-soft); margin-bottom: 0.8rem; }
.case__text { margin-bottom: 1.2rem; }
.case__metric { padding-top: 1rem; border-top: 1px solid var(--line); font-family: var(--display); font-weight: 700; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 1.5rem;
  backdrop-filter: blur(10px);
}
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--display);
  font-weight: 600; font-size: 1.04rem;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--pink);
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 1.3rem; }

/* ---------- Final CTA ---------- */
.cta { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.cta__inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #1c0820, #7c3aed 60%, #ff2d9b);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  box-shadow: var(--shadow-lg), 0 0 90px rgba(255, 45, 155, 0.3);
  color: #fff;
}
.cta__bottle {
  position: absolute;
  right: -30px; bottom: -46px;
  width: 230px; height: auto;
  opacity: 0.45;
  transform: rotate(-12deg);
  pointer-events: none;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.4));
}
.cta__title { position: relative; font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
.cta__text { position: relative; margin: 1.1rem auto 2.2rem; max-width: 540px; font-size: 1.08rem; color: rgba(255, 255, 255, 0.92); }
.cta__actions { position: relative; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { padding: 2.6rem 0; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.9rem;
}
.footer .nav__brand { color: var(--ink); }

/* ============================================================
   Apply modal
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 9, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #150e1f;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 45, 155, 0.25);
  animation: modalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 0.8rem; right: 1rem;
  width: 36px; height: 36px;
  background: none; border: none;
  color: var(--muted); font-size: 1.7rem; line-height: 1;
  cursor: pointer; transition: color 0.2s ease;
}
.modal__close:hover { color: var(--ink); }
.modal__title { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); padding-right: 1.5rem; }
.modal__lead { margin-top: 0.5rem; margin-bottom: 1.5rem; font-size: 0.96rem; color: var(--body); }

.form__field { display: block; margin-bottom: 1rem; }
.form__field[hidden] { display: none; }
.form__field > span {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input::placeholder { color: var(--muted); }
.form input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 45, 155, 0.22); }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.seg--3 { grid-template-columns: repeat(3, 1fr); }
.seg__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--body);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.seg__btn img { width: 22px; height: 22px; object-fit: contain; }
.seg__btn:hover { color: var(--ink); border-color: rgba(255, 45, 155, 0.35); }
.seg__btn.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(255, 45, 155, 0.35); }

.form__submit { width: 100%; margin-top: 0.6rem; }
.form__submit:disabled { opacity: 0.7; cursor: default; }
.form__note { margin-top: 0.9rem; font-size: 0.74rem; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__error {
  margin: 0.2rem 0 0.4rem;
  font-size: 0.84rem;
  color: #ff7b9c;
  text-align: center;
}

.form__done { text-align: center; padding: 0.6rem 0 0.4rem; }
.form__check {
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff; font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(255, 45, 155, 0.4);
}
.form__done h3 { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.form__done p { margin-top: 0.5rem; color: var(--body); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: repeat(2, 1fr); }
  .plat-cats { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 7, 16, 0.97);
    backdrop-filter: blur(16px);
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 0.9rem 0.5rem; opacity: 0.92; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { text-align: center; margin-top: 0.6rem; }
  .nav__toggle { display: flex; }

  .hero { padding-top: 7rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__bottle { width: min(280px, 66%); }
  .hero__scroll { display: none; }

  .split { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .qualify { grid-template-columns: 1fr; }
  .award { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .award__body { text-align: left; }
}

@media (max-width: 560px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .checklist--compact { grid-template-columns: 1fr; }
  .split-cols { grid-template-columns: 1fr; }
  .results { grid-template-columns: 1fr; }
  .result--hero { grid-column: span 1; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { gap: 1.3rem; }
  .cta__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bottle, .hero__glow, .hero__scroll i { animation: none; }
}
