

:root {

  --color-bg: #FFF5F7;
  --color-bg-alt: #FFFFFF;
  --color-bg-soft: #FFE5EA;
  --color-text: #121212;
  --color-text-secondary: #242424;
  --color-text-muted: #575757;

  --color-accent: #DA3870;
  --color-accent-soft: #F4B0BD;
  --color-accent-pale: #FFEAF0;

  --color-cta: #20C100;
  --color-cta-hover: #4D903F;

  --color-discount: #FF3E4B;
  --color-discount-dark: #DC143C;

  --color-success: #00B878;
  --color-error: #C44A3A;
  --color-purple: #6D388B;

  --color-card: #FFFFFF;
  --color-border: #EEEEEE;
  --color-border-strong: #DDDDDD;
  --color-dark: #121212;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);

  --content-max: 640px;
  --content-wide: 960px;
}

*, *::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-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  padding-bottom: 80px;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

p { margin: 0 0 var(--space-3) 0; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 { font-weight: 800; }

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--color-discount-dark); }

ul { margin: 0 0 var(--space-3) 0; padding-left: var(--space-4); }
li { margin-bottom: var(--space-2); }

blockquote { margin: 0; padding: 0; }

strong { font-weight: 700; color: var(--color-text); }

.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--color-bg-soft) 60%);
  padding: 0 2px;
  font-weight: 600;
}

.block {
  padding: var(--space-5) var(--space-4);
}

.block-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.block-inner--wide {
  max-width: var(--content-wide);
}

.block--white { background: var(--color-bg-alt); }
.block--accent { background: var(--color-accent-pale); }
.block--dark {
  background: var(--color-dark);
  color: #FFFFFF;
}

.block--dark h2,
.block--dark h3,
.block--dark strong { color: #FFFFFF; }

@media (min-width: 768px) {
  .block { padding: var(--space-6) var(--space-4); }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  font-size: 24px;
  margin-bottom: var(--space-2);
  font-weight: 700;
  line-height: 1.25;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 400;
}

.block-intro,
.block-outro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-4);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.block-outro {
  margin: var(--space-5) auto 0;
  font-size: 17px;
}

.block-intro--small {
  font-size: 15px;
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 32px; }
  .section-header p { font-size: 16px; }
}

.preheadline {
  background: var(--color-dark);
  color: #FFFFFF;
  text-align: center;
  padding: var(--space-3);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero {
  padding: var(--space-5) var(--space-4) var(--space-6);
  text-align: center;
  background: var(--color-bg);
}

.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero__headline {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: var(--space-2);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__eyebrow {
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-weight: 600;
  font-style: italic;
}

.hero__subheadline {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  line-height: 1.55;
  font-weight: 400;
}

.hero__subheadline--strong {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.hero__image {
  margin: var(--space-4) 0;
}

.hero__image-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto;
  display: block;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .hero__headline { font-size: 42px; }
  .hero__eyebrow { font-size: 16px; }
  .hero__subheadline { font-size: 18px; }
}

.btn {
  display: inline-block;
  background: var(--color-cta);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 380px;
  line-height: 1.3;
}

.btn:hover {
  background: var(--color-cta-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.btn--lg {
  font-size: 17px;
  padding: 16px 40px;
}

.btn--full {
  max-width: 100%;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg);
  padding: 10px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
  font-family: var(--font-body);
}

.sticky-cta .btn {
  font-size: 14px;
  padding: 12px 30px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

.placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      #FFE5EA,
      #FFE5EA 10px,
      #FBD0D7 10px,
      #FBD0D7 20px
    );
  border: 2px dashed var(--color-accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
  padding: var(--space-3);
  font-style: italic;
  line-height: 1.4;
}

.placeholder--hero {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.placeholder--product {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.placeholder--circle {
  border-radius: var(--radius-pill);
  aspect-ratio: 1 / 1;
}

.placeholder--video {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.placeholder--bundle {
  aspect-ratio: 3 / 2;
  width: 100%;
}

.placeholder--icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: 11px;
}

.placeholder--avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  flex-shrink: 0;
}

.placeholder--ba {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-md);
  font-size: 12px;
  padding: var(--space-4);
}

.results-slider {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-3);
  padding: 0 var(--space-3) var(--space-3);
  margin-left: calc(-1 * var(--space-3));
  margin-right: calc(-1 * var(--space-3));

  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-soft) transparent;
  -webkit-overflow-scrolling: touch;
}

.results-slider::-webkit-scrollbar {
  height: 4px;
}

.results-slider::-webkit-scrollbar-track {
  background: transparent;
}

.results-slider::-webkit-scrollbar-thumb {
  background: var(--color-accent-soft);
  border-radius: var(--radius-pill);
}

.result-card {
  margin: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 0 0 85%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.result-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.result-card__caption {
  padding: var(--space-3);
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.4;
}

.result-card__caption strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.results-hint {
  text-align: center;
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.results-disclaimer {
  text-align: center;
  margin-top: var(--space-3);
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .result-card {
    flex: 0 0 calc((100% - var(--space-4) * 2) / 3);
  }
  .results-slider {
    gap: var(--space-4);
  }
  .results-hint {

    display: none;
  }
}

.historia p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}

.historia em {
  color: var(--color-text);
  font-style: italic;
}

.historia .quote-derma {
  font-style: italic;
  border-left: 3px solid var(--color-accent);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  background: var(--color-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-4) 0;
  font-size: 16px;
  color: var(--color-text);
}

.historia strong { color: var(--color-text); }

.mechanism-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.mech-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.mech-card__icon {
  font-size: 32px;
  margin-bottom: var(--space-2);
  display: block;
  line-height: 1;
}

.mech-card h3 {
  font-size: 19px;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.mech-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.mech-card p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .mechanism-cards { flex-direction: row; }
  .mech-card { flex: 1; }
}

.product-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.product-intro__media {
  flex: 1;
}

.product-intro__img {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.product-intro__copy {
  flex: 1;
}

.product-intro__copy p {
  font-size: 16px;
  line-height: 1.65;
}

.product-intro__bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0 0;
}

.product-intro__bullets li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.product-intro__bullets li:last-child { border-bottom: 0; }

@media (min-width: 768px) {
  .product-intro {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }
}

.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.step {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step__number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.step__title {
  font-size: 21px;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.step__product {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 14px;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step__product .gift {
  background: var(--color-cta);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  margin-left: var(--space-2);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.step__body:last-of-type { margin-bottom: 0; }

.step__result {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font-size: 14px;
  margin-top: var(--space-3);
  color: var(--color-text);
}

.step__result strong { color: var(--color-accent); }

@media (min-width: 768px) {
  .protocol-steps { flex-direction: row; }
  .step { flex: 1; }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.timeline-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.timeline-week {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
  min-width: 110px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .timeline { flex-direction: row; justify-content: space-between; }
  .timeline-row { flex-direction: column; text-align: center; flex: 1; }
  .timeline-week { min-width: 0; margin-bottom: var(--space-2); }
}

.protocol-close {
  text-align: center;
  margin-top: var(--space-5);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-muted);
}

.demo-steps {
  list-style: none;
  padding: 0;
  counter-reset: demo;
  margin: var(--space-4) 0;
}

.demo-steps li {
  counter-increment: demo;
  padding: var(--space-3) 0 var(--space-3) 48px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  line-height: 1.55;
}

.demo-steps li:last-child { border-bottom: 0; }

.demo-steps li::before {
  content: counter(demo);
  position: absolute;
  left: 0;
  top: var(--space-3);
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
}

.demo-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.demo-bullet {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font-size: 13px;
  line-height: 1.45;
}

.demo-bullet__icon {
  font-size: 22px;
  margin-bottom: var(--space-2);
  display: block;
  line-height: 1;
}

.demo-bullet__title {
  font-weight: 700;
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .demo-bullets { grid-template-columns: repeat(4, 1fr); }
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.testimonial {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-bg-soft);
}

.testimonial__name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--color-text);
}

.testimonial__verified {
  color: var(--color-success);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial__location {
  color: var(--color-text-muted);
  font-size: 12px;
}

.testimonial__stars {
  color: #F5B400;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}

.testimonial__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

.comparison {
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.comparison-row:last-child { border-bottom: 0; }

.comparison-row > div {
  padding: var(--space-3) var(--space-2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.comparison-row > div:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  justify-content: flex-start;
}

.comparison-row--head > div {
  background: var(--color-dark);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--space-3) 4px;
}

.comparison-row--head > div:first-child {
  background: var(--color-dark);
}

.comparison-row--head .skinup-col {
  background: var(--color-accent);
  color: #FFFFFF;
}

.skinup-col {
  background: var(--color-bg-soft);
  font-weight: 700;
  color: var(--color-text);
}

.check { color: var(--color-success); font-weight: 700; font-size: 16px; }
.cross { color: var(--color-error); font-weight: 700; font-size: 16px; }

@media (max-width: 600px) {
  .comparison-row > div { padding: var(--space-2) 4px; font-size: 11px; }
  .comparison-row { grid-template-columns: 1.2fr repeat(4, 1fr); }
  .comparison-row--head > div { font-size: 10px; padding: var(--space-2) 4px; }
}

.offer-card {
  background: var(--color-card);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-4);
}

.offer-discount-badge {
  display: inline-block;
  background: var(--color-discount);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.offer-item:last-of-type { border-bottom: 0; }

.offer-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.offer-item__text {
  flex: 1;
}

.offer-item__name {
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
  color: var(--color-text);
}

.offer-item__desc {
  color: var(--color-text-muted);
  font-size: 12px;
  display: block;
  margin-bottom: var(--space-1);
}

.offer-item__price {
  font-size: 14px;
}

.offer-item__price s { color: var(--color-text-muted); margin-right: var(--space-2); }

.offer-item__price .free {
  color: var(--color-cta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-item__price .new-price {
  color: var(--color-discount);
  font-weight: 700;
}

.offer-divider {
  border: 0;
  border-top: 2px dashed var(--color-border);
  margin: var(--space-4) 0;
}

.offer-total {
  text-align: center;
  margin-bottom: var(--space-4);
}

.offer-total__label {
  font-size: 14px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-total__strike {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 18px;
  margin-bottom: var(--space-2);
  display: block;
}

.offer-total__price {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.offer-total__savings {
  font-weight: 700;
  color: var(--color-cta);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.trust-badges {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
  font-size: 12px;
  color: var(--color-text-muted);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .offer-total__price { font-size: 64px; }
}

.guarantee {
  text-align: center;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.guarantee__seal {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-soft);
  border: 3px solid var(--color-accent);
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

.guarantee h2 {
  font-size: 22px;
  margin-bottom: var(--space-3);
}

.guarantee p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.guarantee__lead {
  font-weight: 600 !important;
  color: var(--color-text) !important;
  font-size: 17px !important;
}

.guarantee strong { color: var(--color-text); }

@media (min-width: 768px) {
  .guarantee h2 { font-size: 28px; }
}

.faq {
  margin-top: var(--space-4);
}

.faq details {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.faq details[open] {
  background: var(--color-bg-soft);
  border-color: var(--color-accent);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  position: relative;
  padding-right: var(--space-4);
  color: var(--color-text);
  line-height: 1.4;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--color-accent);
  font-weight: 400;
}

.faq details[open] summary::after { content: '\002212'; }

.faq details > p {
  margin-top: var(--space-3);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.recap { text-align: center; }

.recap__line {
  font-size: 16px;
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
}

.recap__price-line {
  font-family: var(--font-display);
  font-size: 22px;
  margin: var(--space-3) 0;
  font-weight: 700;
}

.recap__price-line s {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-right: var(--space-2);
  font-weight: 400;
}

.recap__price-line strong {
  color: var(--color-discount);
  font-weight: 800;
}

.recap__small {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.recap__cta-wrap {
  margin-top: var(--space-4);
}

.demo-video-wrap {
  margin: 0 auto var(--space-4);
  display: flex;
  justify-content: center;
}

.demo-video {
  width: 100%;
  max-width: 480px;

  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);

  pointer-events: none;
}

.offer-image-wrap {
  margin: var(--space-3) 0;
}

.offer-image-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.footer {
  text-align: center;
  padding: var(--space-5) var(--space-3) var(--space-4);
  font-size: 12px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer p { margin-bottom: var(--space-2); }
.footer a { color: var(--color-text-muted); }
