/* ==========================================================================
   Paragelox — krvacejicidasne.cz
   ========================================================================== */

:root {
  --color-bg: #FBFAF8;
  --color-bg-alt: #F3F1EC;
  --color-text: #141416;
  --color-text-secondary: #4A4A50;
  --color-text-muted: #6B6B72;
  --color-primary: #D8203C;
  --color-primary-dark: #A8152C;
  --color-primary-hover: #B81A33;
  --color-dark-bg: #141416;
  --color-dark-text: #F5F3EF;
  --color-pink: #FF6B82;
  --border-soft: rgba(20, 20, 22, .08);
  --border-soft-2: rgba(20, 20, 22, .1);
  --font-base: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container-w: 1200px;
  --pad-inline: clamp(20px, 4vw, 40px);
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

h1, h2, h3, p { margin: 0; }

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

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover { color: var(--color-primary-dark); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-inline: var(--pad-inline);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal[data-delay="5"] { transition-delay: .6s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(216,32,60,.55);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(216,32,60,.65);
}
.btn--dark {
  background: var(--color-text);
  color: #fff;
  font-size: 14px;
  padding: 11px 20px;
}
.btn--dark:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn--text {
  color: var(--color-text);
  padding: 16px 8px;
}
.btn--text:hover { color: var(--color-primary); }
.btn--white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}
.btn--white:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.35);
}
.btn__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 11px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(251,250,248,.72);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.nav__brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--color-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav__brand sup {
  font-size: 11px;
  font-weight: 600;
  position: relative;
  top: -8px;
}
.nav__links {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a { color: var(--color-text-secondary); }
.nav-cta__full { display: none; }
.nav-cta__short { display: inline; }

@media (min-width: 760px) {
  .nav__links { display: flex; }
  .nav-cta__full { display: inline; }
  .nav-cta__short { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px,9vw,120px) 0 clamp(40px,6vw,80px);
}
.hero__glow {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216,32,60,.14), rgba(216,32,60,0));
  pointer-events: none;
  animation: pulse 9s ease-in-out infinite;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.hero__title {
  font-size: clamp(42px,6.2vw,84px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 800;
}
.hero__lead {
  font-size: clamp(18px,1.6vw,22px);
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__price {
  font-size: 14px;
  color: var(--color-text-muted);
}
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: min(70vw, 560px);
}
.hero__image-wrap {
  width: min(100%, 640px);
  will-change: transform;
}
.hero__image-rotate {
  transform: rotate(-26deg);
  padding: 12% 0;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(20,20,22,.2));
  animation: floaty 7s ease-in-out infinite;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
  padding: 0 0 clamp(56px,7vw,96px);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,220px), 1fr));
  gap: 1px;
  background: var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
}
.trust__item {
  background: var(--color-bg);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust__value {
  font-size: 17px;
  font-weight: 600;
}

/* ==========================================================================
   Problem (dark)
   ========================================================================== */
.problem {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  padding: clamp(80px,10vw,140px) 0;
  position: relative;
  overflow: hidden;
}
.problem__glow {
  position: absolute;
  left: -20%;
  bottom: -30%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216,32,60,.22), rgba(216,32,60,0));
  pointer-events: none;
}
.problem__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: clamp(40px,6vw,96px);
  align-items: start;
}
.problem__col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.problem__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-pink);
}
.problem__title {
  font-size: clamp(34px,4.6vw,62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.problem__title span { color: var(--color-pink); }
.problem__lead {
  font-size: clamp(17px,1.4vw,20px);
  line-height: 1.55;
  color: rgba(245,243,239,.72);
  max-width: 520px;
}
.problem__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(245,243,239,.14);
}
.problem__stat-number {
  font-size: clamp(64px,8vw,112px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--color-pink);
  font-variant-numeric: tabular-nums;
}
.problem__stat-text {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,243,239,.7);
  max-width: 240px;
}
.problem__list-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,243,239,.5);
  margin-bottom: 8px;
}
.problem__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem__item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(245,243,239,.05);
  border: 1px solid rgba(245,243,239,.08);
}
.problem__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-pink);
  flex: none;
}
.problem__item-text {
  font-size: 17px;
  font-weight: 500;
}

/* ==========================================================================
   How it works (pinned scroll)
   ========================================================================== */
.how {
  position: relative;
  height: 320vh;
  height: 320svh;
  height: 320dvh;
  background: var(--color-bg);
  --p: 0;
}
.how__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-inline: var(--pad-inline);
}
.how__grid {
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: clamp(32px,5vw,80px);
  align-items: center;
}
.how__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.how__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.how__panels {
  position: relative;
  min-height: clamp(200px,24vw,300px);
}
.how__bignum {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.how__bignum-item {
  position: absolute;
  left: -.03em;
  top: -.1em;
  font-size: clamp(120px,18vw,260px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: rgba(216,32,60,.08);
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
@supports (-webkit-text-stroke: 1px black) {
  .how__bignum-item {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(216,32,60,.16);
  }
}
.how__bignum-item.is-active {
  opacity: 1;
  transform: translateX(0);
}
.how__bignum-item.is-before {
  opacity: 0;
  transform: translateX(-36px);
}
.how__panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity .6s, transform .6s;
  opacity: 0;
  transform: translateY(24px);
}
.how__panel.is-active {
  opacity: 1;
  transform: none;
}
.how__panel.is-before {
  transform: translateY(-24px);
}
.how__panel-title {
  font-size: clamp(34px,4.6vw,62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.how__panel-text {
  font-size: clamp(17px,1.4vw,20px);
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 500px;
}
.how__progress {
  display: flex;
  gap: 10px;
  align-items: center;
}
.how__bar {
  height: 5px;
  width: 84px;
  border-radius: 3px;
  background: rgba(20,20,22,.1);
  overflow: hidden;
  display: block;
}
.how__bar-fill {
  display: block;
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width .3s;
}
.how__step-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
}
.how__media {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 72vh;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(20,20,22,.25);
}
.how__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: rgba(255,255,255,.28);
  overflow: hidden;
}
.how__line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(var(--p, 0));
  transform-origin: top;
}
.how__slide {
  position: absolute;
  inset: 0;
  transition: opacity .7s;
  opacity: 0;
}
.how__slide.is-active { opacity: 1; }
.how__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1 + .08 * var(--local, 0))) translateY(calc(var(--local, 0) * -14px));
  will-change: transform;
}
.how__hint {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vw, 28px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 1;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 2;
}
.how__hint.is-hidden {
  opacity: 0;
}
.how__hint-arrow {
  font-size: 16px;
  line-height: 1;
  animation: how-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes how-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .how { height: auto; }
  .how__sticky { position: static; height: auto; padding-block: clamp(60px,8vw,100px); }
  .how__panel { position: static; opacity: 1; transform: none; margin-bottom: 40px; }
  .how__panels { min-height: 0; }
  .how__bignum { display: none; }
  .how__media { display: none; }
  .how__hint { display: none; }
}

/* ==========================================================================
   Results
   ========================================================================== */
.results {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--color-bg-alt);
}
.results__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px,5vw,72px);
}
.results__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}
.results__eyebrow, .section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.results__title, .section-title {
  font-size: clamp(34px,4.6vw,62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,260px), 1fr));
  gap: 20px;
}
.results__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px,3vw,44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border-soft);
}
.results__card--dark {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  border: none;
}
.results__number {
  font-size: clamp(64px,7vw,104px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}
.results__card--dark .results__number { color: var(--color-dark-text); }
.results__label {
  font-size: 18px;
  font-weight: 600;
}
.results__footnote {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Ingredients
   ========================================================================== */
.ingredients {
  padding: clamp(80px,10vw,140px) 0;
}
.ingredients__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px,5vw,72px);
}
.ingredients__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: 32px;
  align-items: end;
}
.ingredients__head-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ingredients__lead {
  font-size: clamp(17px,1.4vw,20px);
  line-height: 1.55;
  color: var(--color-text-secondary);
}
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px), 1fr));
  gap: 20px;
}
.ingredient-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
}
.ingredient-card__image {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.ingredient-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ingredient-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ingredient-card__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.ingredient-card__latin {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}
.ingredient-card__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-top: 8px;
}
.ingredient-card--full {
  border-radius: var(--radius-lg);
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  padding: clamp(26px,3vw,36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.ingredient-card__full-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,243,239,.5);
}
.ingredient-card__full-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,243,239,.82);
}

/* ==========================================================================
   Routine (dark)
   ========================================================================== */
.routine {
  padding: clamp(80px,10vw,140px) 0;
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
}
.routine__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px,5vw,72px);
}
.routine__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.routine__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-pink);
}
.routine__title {
  font-size: clamp(34px,4.6vw,62px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.routine__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,280px), 1fr));
  gap: 20px;
}
.routine-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(26px,3vw,36px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,243,239,.1);
}
.routine-step__number {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-pink);
  letter-spacing: .1em;
}
.routine-step__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.routine-step__text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,243,239,.7);
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial {
  padding: clamp(80px,10vw,140px) 0;
}
.testimonial__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  align-items: center;
}
.testimonial__mark {
  font-size: 72px;
  line-height: .6;
  color: var(--color-primary);
  font-weight: 800;
}
.testimonial__quote {
  font-size: clamp(22px,2.4vw,32px);
  line-height: 1.4;
  letter-spacing: -.015em;
  font-weight: 500;
  color: var(--color-text);
}
.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 0 0 clamp(80px,10vw,140px);
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr));
  gap: clamp(32px,5vw,80px);
  align-items: start;
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq__title {
  font-size: clamp(34px,4.6vw,56px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-soft-2);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft-2);
}
.faq-item__button {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}
.faq-item__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(20,20,22,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform .35s, background .3s, color .3s;
}
.faq-item[aria-expanded="true"] .faq-item__icon,
.faq-item__button[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
}
.faq-item__panel-inner {
  overflow: hidden;
}
.faq-item__button[aria-expanded="true"] + .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item__answer {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 620px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-final {
  padding: 0 0 clamp(80px,10vw,140px);
}
.cta-final__box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px,6vw,80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-final__glow {
  position: absolute;
  right: -15%;
  top: -40%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events: none;
}
.cta-final__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cta-final__title {
  font-size: clamp(34px,4.6vw,60px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}
.cta-final__text {
  font-size: clamp(17px,1.4vw,20px);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cta-final__price {
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.cta-final__price strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.cta-final__disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.cta-final__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.cta-final__image {
  width: min(100%, 460px);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.3));
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: clamp(40px,5vw,64px) 0 40px;
  background: var(--color-bg-alt);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,240px), 1fr));
  gap: 32px;
}
.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--color-primary);
}
.footer__brand sup {
  font-size: 10px;
  position: relative;
  top: -7px;
}
.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.footer__col-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer__col a { color: var(--color-text); }
.footer__legal {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
