/* ============================================================
   LINGERIE AI LAB — Landing Page Styles
   Palette: Black · White · Grey · Powder Peach accent
   Mobile-first
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core */
  --black:       #0a0a0a;
  --black2:      #111111;
  --black3:      #181818;
  --card:        #161616;
  --card2:       #1f1f1f;
  --border:      #2c2c2c;
  --border-light:#3a3a3a;

  /* Powder Peach accent */
  --peach:       #d4957a;
  --peach-h:     #c4846a;
  --peach-light: #e8b49a;
  --peach-glow:  rgba(212,149,122,0.15);
  --peach-bg:    rgba(212,149,122,0.07);

  /* Greyscale text */
  --white:       #ffffff;
  --grey1:       #e0e0e0;
  --grey2:       #a0a0a0;
  --grey3:       #606060;
  --grey4:       #404040;

  /* Status */
  --green:       #6abf8a;
  --red:         #e06060;

  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

/* ----- TOP BAR ----- */
.top-bar {
  background: rgba(212,149,122,0.1);
  border-bottom: 1px solid rgba(212,149,122,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey2);
  gap: 12px;
}
.top-bar__text {
  flex: 1;
  text-align: center;
}
.top-bar #buyCount {
  color: var(--peach);
  font-weight: 800;
  font-size: 14px;
}

/* ----- LANGUAGE SWITCHER ----- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  line-height: 1.4;
}
.lang-btn:hover {
  color: var(--white);
  border-color: var(--grey3);
}
.lang-btn.active {
  background: var(--peach);
  border-color: var(--peach);
  color: #fff;
}
@media (max-width: 480px) {
  .top-bar { padding: 6px 10px; gap: 8px; }
  .top-bar__text { font-size: 12px; }
  .lang-btn { font-size: 10px; padding: 3px 5px; }
}

/* ----- TIMER ----- */
.timer-wrap {
  margin: 18px auto 0;
  display: inline-block;
  text-align: center;
}
.timer-label {
  font-size: 12px;
  color: var(--grey3);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
}
.timer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}
.timer__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'Inter', monospace;
}
.timer__unit {
  font-size: 9px;
  color: var(--grey3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.timer__sep {
  font-size: 20px;
  font-weight: 700;
  color: var(--grey4);
  margin-bottom: 10px;
  align-self: flex-start;
  margin-top: 2px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

a { color: var(--peach); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ----- CONTAINER ----- */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- OVERLINE ----- */
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 10px;
  text-align: center;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn--peach {
  background: var(--peach);
  color: #fff;
  box-shadow: 0 4px 20px var(--peach-glow);
}
.btn--peach:hover {
  background: var(--peach-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(212,149,122,0.3);
  text-decoration: none;
  color: #fff;
}
.btn--peach:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--peach);
  border: 1.5px solid var(--peach);
}
.btn--outline:hover {
  background: var(--peach-bg);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--grey2);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--grey2);
  color: var(--white);
  text-decoration: none;
}

.btn--lg { padding: 17px 36px; font-size: 17px; }
.btn--full { width: 100%; }

/* ----- ACCENT ----- */
.accent { color: var(--peach); }

/* ----- SECTION BASE ----- */
.section { padding: 64px 0; }
.section__title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
  color: var(--white);
}
.section__sub {
  color: var(--grey2);
  font-size: 16px;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.75;
}

/* ----- GRIDS ----- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (max-width: 600px) {
  .grid--2 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ----- CARDS BASE ----- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

/* ----- STICKY BAR ----- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar__text { font-size: 14px; color: var(--grey2); flex: 1; min-width: 0; }
.sticky-bar__text strong { color: var(--white); }
.sticky-bar__btn { padding: 10px 20px; font-size: 14px; flex-shrink: 0; }

/* ----- HERO ----- */
.hero {
  position: relative;
  padding: 80px 0 72px;
  text-align: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,149,122,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__title {
  font-size: clamp(22px, 5.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.hero__sub {
  color: var(--grey2);
  font-size: clamp(15px, 3vw, 17px);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero__sub strong { color: var(--white); }
.hero__meta { color: var(--grey3); font-size: 13px; margin-top: 14px; }

.hero__bonus-label {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--peach);
  text-align: center;
}
.hero__bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero__bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__bonus-icon { font-size: 20px; }
.hero__bonus-card strong { color: var(--white); font-size: 12px; line-height: 1.3; }
.hero__bonus-card span:last-child { color: var(--grey2); font-size: 11px; line-height: 1.3; }

.hero__price-anchor {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--grey1);
}
.price-old {
  text-decoration: line-through;
  color: var(--grey3);
  font-size: 22px;
}
.price-new {
  color: var(--peach);
  font-weight: 800;
  font-size: 32px;
}
.price-note {
  font-size: 14px;
  color: var(--grey2);
}

.hero__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__gallery-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
}
.hero__gallery-item--tall {
  aspect-ratio: 3/5;
}
.hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.hero__gallery-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 480px) {
  .hero__gallery { gap: 6px; }
}

/* ----- BEFORE / AFTER ----- */
.compare-photos { background: var(--black2); }
.photo-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}
@media (max-width: 560px) {
  .photo-compare {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .photo-compare__divider { order: 2; }
}
.photo-compare__item { display: flex; flex-direction: column; gap: 12px; }
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--border-light);
  position: relative;
  overflow: hidden;
}
.photo-placeholder--left {
  background: linear-gradient(145deg, #1e1e1e, #2a2424);
  border-color: var(--grey4);
}
.photo-placeholder--right {
  background: linear-gradient(145deg, #1e1a18, #2a2018);
  border-color: var(--peach);
  border-style: solid;
}
.photo-placeholder__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey3);
}
.photo-placeholder__hint {
  font-size: 11px;
  color: var(--grey4);
  text-align: center;
  padding: 0 12px;
}
/* Photo inside placeholder */
.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}
/* Hide hint text when image loads */
.photo-placeholder img:not([style*="display:none"]) ~ .photo-placeholder__label,
.photo-placeholder img:not([style*="display:none"]) ~ .photo-placeholder__hint {
  display: none;
}

.photo-compare__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}
.photo-compare__tag--grey {
  background: rgba(255,255,255,0.06);
  color: var(--grey2);
  border: 1px solid var(--border);
}
.photo-compare__tag--peach {
  background: var(--peach-bg);
  color: var(--peach-light);
  border: 1px solid rgba(212,149,122,0.3);
}
.photo-compare__cost {
  font-size: 15px;
  color: var(--grey2);
}
.photo-compare__cost strong { color: var(--white); }

.photo-compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: var(--grey3);
  flex-shrink: 0;
  align-self: center;
  margin-top: -40px;
}
@media (max-width: 560px) {
  .photo-compare__divider { width: 36px; height: 36px; margin: 0 auto; }
}

.compare-photos__note {
  text-align: center;
  background: var(--peach-bg);
  border: 1px solid rgba(212,149,122,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--grey2);
}

/* ----- QUALITY COMPARISON ----- */
.quality { background: var(--black2); }

.quality-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 36px;
}
@media (max-width: 600px) {
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quality-divider { flex-direction: row; }
}

.quality-col { display: flex; flex-direction: column; gap: 16px; }

.quality-col__header { text-align: center; }
.quality-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.quality-badge--bad {
  background: rgba(224,96,96,0.1);
  color: #e06060;
  border: 1px solid rgba(224,96,96,0.25);
}
.quality-badge--good {
  background: rgba(106,191,138,0.1);
  color: var(--green);
  border: 1px solid rgba(106,191,138,0.25);
}

.quality-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.quality-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--card);
}
.quality-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quality-col--bad .quality-photo {
  border: 1px solid rgba(224,96,96,0.2);
  filter: saturate(0.7) brightness(0.85);
}
.quality-col--good .quality-photo {
  border: 1px solid rgba(106,191,138,0.2);
}

.quality-issues {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quality-issues li {
  font-size: 14px;
  color: var(--grey3);
  padding: 8px 12px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.quality-issues--good li {
  color: var(--grey2);
  border-color: rgba(106,191,138,0.15);
  background: rgba(106,191,138,0.04);
}

.quality-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  padding-top: 44px;
}
.quality-divider__line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: var(--border);
}
.quality-divider__vs {
  width: 36px;
  height: 36px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--grey3);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .quality-divider {
    flex-direction: row;
    padding: 0;
    padding-left: 0;
  }
  .quality-divider__line { height: 1px; width: auto; flex: 1; min-height: 0; }
}

.quality-cta {
  text-align: center;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
}
.quality-cta p {
  color: var(--grey2);
  font-size: 17px;
  margin-bottom: 16px;
}

/* ----- PRICE SHOCK ----- */
.price-shock { }
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .price-cards { grid-template-columns: 1fr; }
}
.price-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
}
.price-card--bad {
  background: var(--card);
  border: 1px solid var(--border);
}
.price-card--good {
  background: linear-gradient(145deg, #1e1510, #1a120c);
  border: 1.5px solid var(--peach);
  box-shadow: 0 0 30px rgba(212,149,122,0.08);
}
.price-card__badge {
  display: inline-block;
  background: var(--peach);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.price-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-card__amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
}
.price-card--bad .price-card__amount { color: var(--grey3); text-decoration: line-through; font-size: 26px; }
.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card__list li {
  font-size: 14px;
  color: var(--grey2);
  line-height: 1.5;
}
.price-card--bad .price-card__list li { color: var(--grey3); }

/* ----- PAIN POINTS ----- */
.pain { background: var(--black2); }
.card--pain {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-color: var(--border);
}
.card--pain:hover { border-color: var(--border-light); }
.card__icon { font-size: 24px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.card--pain p { font-size: 15px; color: var(--grey2); line-height: 1.6; }
.card--pain p strong { color: var(--white); }
.pain__conclusion {
  margin-top: 28px;
  text-align: center;
  background: var(--peach-bg);
  border: 1px solid rgba(212,149,122,0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.pain__conclusion p { font-size: 17px; color: var(--grey2); }
.pain__conclusion strong { color: var(--white); }

/* ----- FOR WHOM ----- */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.check {
  width: 26px; height: 26px;
  background: rgba(106,191,138,0.12);
  color: var(--green);
  border: 1px solid rgba(106,191,138,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist__item p { font-size: 15px; color: var(--grey2); line-height: 1.6; }
.checklist__item p strong { color: var(--white); }

/* ----- INSIDE ----- */
.inside { background: var(--black2); }
.card--inside {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card2);
}
.card--inside:hover { border-color: var(--peach); }
.card__num {
  font-size: 28px;
  font-weight: 900;
  color: rgba(212,149,122,0.2);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.card--inside p { font-size: 15px; color: var(--grey2); line-height: 1.6; }
.card--inside p strong { color: var(--white); }

/* ----- INSIDE BONUSES ----- */
.inside__bonuses {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.inside__bonuses-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 4px;
}
.card--bonus {
  background: linear-gradient(135deg, rgba(212,149,122,0.07), rgba(212,149,122,0.02));
  border-color: rgba(212,149,122,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
}
.card--bonus:hover { border-color: var(--peach); }
.bonus__icon { font-size: 28px; line-height: 1; }
.card--bonus p { font-size: 14px; color: var(--grey2); line-height: 1.55; margin: 0; }
.card--bonus p strong { color: var(--white); display: block; margin-bottom: 4px; }

/* ----- REVIEWS ----- */
.card--review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card2);
}
.review__stars { color: #d4aa60; font-size: 14px; letter-spacing: 1px; }
.review__text { font-size: 14px; color: var(--grey2); line-height: 1.65; flex: 1; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review__avatar {
  width: 32px; height: 32px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review__author span { font-size: 13px; color: var(--grey3); }

/* ----- GUARANTEE ----- */
.guarantee__box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(106,191,138,0.06);
  border: 1px solid rgba(106,191,138,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.guarantee__icon { font-size: 36px; flex-shrink: 0; }
.guarantee__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.guarantee__text { color: var(--grey2); font-size: 15px; line-height: 1.65; }

/* ----- BUY ----- */
.buy { background: var(--black2); }
.buy__box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.buy__badge {
  display: inline-block;
  background: var(--peach-bg);
  color: var(--peach);
  border: 1px solid rgba(212,149,122,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.buy__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.buy__old { font-size: 22px; color: var(--grey3); text-decoration: line-through; }
.buy__new { font-size: 56px; font-weight: 900; color: var(--peach); line-height: 1; }
.buy__includes { list-style: none; margin-bottom: 28px; text-align: left; }
.buy__includes li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--grey2);
}
.buy__includes li:last-child { border-bottom: none; }
.buy__meta { color: var(--grey3); font-size: 13px; margin-top: 14px; }

/* ----- FAQ ----- */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.15s;
}
.accordion__q::after {
  content: '+';
  font-size: 20px;
  color: var(--peach);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.accordion__item.open .accordion__q::after { transform: rotate(45deg); }
.accordion__q:hover { color: var(--peach); }
.accordion__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__item.open .accordion__a { max-height: 300px; }
.accordion__a p {
  padding: 0 20px 18px;
  color: var(--grey2);
  font-size: 15px;
  line-height: 1.7;
}

/* ----- FINAL CTA ----- */
.final-cta { background: var(--black); text-align: center; }
.final-cta__eyebrow { color: var(--grey3); font-size: 15px; margin-bottom: 6px; }
.final-cta__title {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.final-cta__sub { color: var(--grey2); font-size: 17px; margin-bottom: 28px; }
.final-cta__sub strong { color: var(--white); }
.final-cta__meta { color: var(--grey3); font-size: 13px; margin-top: 14px; }

/* ----- FOOTER ----- */
.footer {
  padding: 28px 0 80px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer p { color: var(--grey4); font-size: 13px; }
.footer a { color: var(--grey4); }
.footer a:hover { color: var(--peach); }
.footer__privacy-btn {
  background: none;
  border: none;
  color: var(--grey4);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.footer__privacy-btn:hover {
  color: var(--peach);
  text-decoration-color: var(--peach);
}

/* ----- MODAL ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.modal.open { pointer-events: all; opacity: 1; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal.open .modal__box { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--grey3);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.modal__close:hover { color: var(--white); background: var(--border); }
.modal__icon { font-size: 40px; margin-bottom: 14px; }
.modal__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.modal__desc { color: var(--grey2); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.modal__or { color: var(--grey3); font-size: 13px; margin: 16px 0 10px; }
.modal__input {
  width: 100%;
  background: var(--black);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 16px;
  padding: 13px 16px;
  margin-bottom: 6px;
  font-family: inherit;
  letter-spacing: 1px;
  transition: border-color 0.15s;
}
.modal__input:focus { outline: none; border-color: var(--peach); }
.modal__error { color: var(--red); font-size: 13px; min-height: 20px; margin-bottom: 12px; }
.modal__step { display: none; }
.modal__step--active { display: block; }

/* ----- GUIDE ----- */
.guide-wrapper { display: none; border-top: 2px solid var(--border); }
.guide-wrapper.visible { display: block; }
.guide-header {
  background: var(--black2);
  padding: 48px 0 36px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.guide-header h1 { font-size: 28px; font-weight: 800; margin: 12px 0 8px; }
.guide-header p { color: var(--grey2); font-size: 15px; }

.guide-content { padding: 40px 20px 80px; }
.guide-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.guide-section:last-child { border-bottom: none; }
.guide-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.guide-section p { color: var(--grey2); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.guide-section ul, .guide-section ol {
  color: var(--grey2); font-size: 15px; line-height: 1.75;
  padding-left: 22px; margin-bottom: 16px;
}
.guide-section li { margin-bottom: 6px; }

.card--guide { background: var(--card2); padding: 16px 18px; }
.card--guide strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.card--guide p { color: var(--grey2); font-size: 13px; margin: 0; line-height: 1.55; }

.code-block {
  position: relative;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 50px 16px 16px;
  margin: 12px 0 16px;
}
.code-block code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #b8d4a0;
  line-height: 1.7;
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}
.copy-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--grey3);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.copy-btn:hover { color: var(--white); border-color: var(--grey3); }

.script-block {
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--peach);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.script-block p { font-size: 14px; color: var(--grey2); line-height: 1.7; margin-bottom: 10px; }
.script-block p:last-child { margin-bottom: 0; }
.script-block strong { color: var(--white); }

.reasons-list { display: flex; flex-direction: column; gap: 12px; }
.reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.reason__num {
  width: 28px; height: 28px;
  background: var(--peach-bg);
  color: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.reason div { font-size: 15px; color: var(--grey2); line-height: 1.65; }
.reason div strong { color: var(--white); }

.card--package { text-align: center; padding: 24px 20px; background: var(--card2); }
.card--package-basic { border-color: var(--border); }
.card--package-mid { border-color: var(--peach); }
.card--package-pro { border-color: var(--grey3); }
.pkg__name {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey3); margin-bottom: 8px;
}
.pkg__price { font-size: 28px; font-weight: 900; color: var(--peach); margin-bottom: 16px; }
.card--package ul { list-style: none; text-align: left; padding: 0; margin: 0; }
.card--package li {
  font-size: 13px; color: var(--grey2);
  padding: 6px 0; border-bottom: 1px solid var(--border);
}
.card--package li:last-child { border-bottom: none; }

.guide-section--final {
  text-align: center;
  background: var(--peach-bg);
  border: 1px solid rgba(212,149,122,0.18) !important;
  border-radius: var(--radius);
  padding: 32px 24px;
}
.guide-section--final h2 { color: var(--peach); }

/* ----- PAYMENT CHOICE STEP ----- */
.pay-choose {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pay-choose__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.pay-choose__label {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pay-choose__price {
  background: #a3f03a;
  color: #0a0a0a;
  font-size: 17px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.pay-choose__subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey2);
  text-align: center;
  margin-bottom: 18px;
}
.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.pay-method { display: flex; flex-direction: column; gap: 6px; }
.pay-method__btn {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.pay-method__btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  text-decoration: none;
  color: #0a0a0a;
}
.pay-method__btn:active { transform: translateY(0); }
.pay-method__desc {
  font-size: 13px;
  color: var(--grey2);
  text-align: center;
  line-height: 1.5;
}
.pay-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pay-support p {
  font-size: 13px;
  color: var(--grey3);
  text-align: center;
  line-height: 1.5;
}
.pay-support a { color: var(--grey2); text-decoration: underline; }
.pay-support a:hover { color: var(--peach); }
.pay-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-logo {
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.pay-logo--visa {
  background: #fff;
  color: #1a1f71;
  font-style: italic;
  font-size: 14px;
}
.pay-logo--mc {
  background: #fff;
  color: #eb001b;
  font-size: 13px;
  font-weight: 900;
}
.pay-back-btn {
  margin-top: 12px;
  font-size: 13px;
  padding: 10px 20px;
}

/* ----- ALREADY PAID LINK (under buy button) ----- */
.buy__code-link {
  display: block;
  background: none;
  border: none;
  color: var(--grey3);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 6px 0 0;
  text-align: center;
  width: 100%;
  transition: color 0.15s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.buy__code-link:hover {
  color: var(--peach);
  text-decoration-color: var(--peach);
}

/* ----- SUPPORT SECTION ----- */
.support-section { background: var(--black2); }
.support-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.support-box__icon { font-size: 32px; flex-shrink: 0; }
.support-box__body { flex: 1; }
.support-box__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.support-box__text { font-size: 14px; color: var(--grey2); }
.support-box .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 600px) {
  .support-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .support-box .btn { width: 100%; }
}

/* ----- PRIVACY MODAL ----- */
.modal__box--privacy {
  border-radius: 20px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-top: 28px;
}
.modal__box--privacy .modal__title {
  margin-bottom: 16px;
  padding-right: 28px;
}
.privacy-content {
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.privacy-content::-webkit-scrollbar { width: 4px; }
.privacy-content::-webkit-scrollbar-track { background: transparent; }
.privacy-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.privacy-content p {
  color: var(--grey2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.privacy-content h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0 6px;
}
.privacy-content a { color: var(--peach); }
.privacy-modal .modal__box {
  border-radius: 20px 20px 0 0;
}
@media (min-width: 480px) {
  .privacy-modal {
    align-items: center;
  }
  .privacy-modal .modal__box {
    border-radius: 20px;
    max-height: 75vh;
  }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 480px) {
  .hero { padding: 60px 0 56px; }
  .section { padding: 48px 0; }
  .buy__box { padding: 28px 18px; }
  .buy__new { font-size: 48px; }
  .guarantee__box { flex-direction: column; gap: 14px; }
  .sticky-bar__text { font-size: 12px; }
}


/* ----- PAY BUTTON LOADING STATE ----- */
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn--loading {
  pointer-events: none;
  opacity: 0.85;
}
.btn--loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  animation: btn-spin 0.65s linear infinite;
}

/* ----- JOB IMAGE SLIDER ----- */
.job-slider-wrap { overflow: hidden; border-radius: 16px; }
.job-slider-wrap img {
  min-width: 100%; width: 100%;
  flex-shrink: 0; display: block;
  border-radius: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
/* Review slider — full image, no crop */
#reviewSlider img,
#dmSlider img {
  aspect-ratio: unset !important;
  object-fit: contain !important;
  height: auto !important;
  background: #111;
}
.job-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 14px;
}
.job-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; padding: 0; cursor: pointer;
  transition: all .2s;
}
.job-dot.active { width: 10px; height: 10px; background: #d4957a; }

/* ----- BRANDS MARQUEE ----- */
.brands-track-wrap { overflow: hidden; }
.brands-fade-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.brands-track { display: flex; gap: 10px; width: max-content; }
.brands-logo-track--1 { animation: bq-left 20s linear infinite; }
.brands-logo-track--2 { animation: bq-right 24s linear infinite; }
.brand-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; flex-shrink: 0;
}
.brand-logo-item img { height: 26px; width: auto; max-width: 110px; object-fit: contain; opacity: .8; }
.brand-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
@keyframes bq-left  { 0% { transform: translateX(0) }     100% { transform: translateX(-50%) } }
@keyframes bq-right { 0% { transform: translateX(-50%) }  100% { transform: translateX(0) } }

/* ----- AI RESULTS GALLERY (3-up swipe) ----- */
.gallery-lbl {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.gallery-lbl svg { color: #d4957a; }
.ai-gallery { overflow: hidden; border-radius: 10px; }
.ai-gallery img {
  min-width: calc(33.33% - 4px); max-width: calc(33.33% - 4px);
  aspect-ratio: 2/3; object-fit: cover;
  border-radius: 10px; flex-shrink: 0; display: block;
}
.ai-gallery-dots {
  display: flex; gap: 5px; align-items: center; justify-content: center; margin-top: 8px;
}
.ai-gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer; padding: 0; transition: all .2s;
}
.ai-gallery-dot.active { width: 8px; height: 8px; background: #d4957a; }

/* Wow-badges under gallery */
.wow-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px;
}
.wow-badge {
  background: rgba(212,149,122,.1); border: 1px solid rgba(212,149,122,.25);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: #d4957a; white-space: nowrap;
}

/* ===== AUTHOR BLOCK ===== */
.author-timeline { display:flex; flex-direction:column; gap:20px; margin-bottom:20px; }
.author-timeline__item { display:flex; gap:14px; align-items:flex-start; }
.author-timeline__num { min-width:32px; height:32px; border-radius:50%; background:rgba(212,149,122,.1); border:1px solid rgba(212,149,122,.4); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:#d4957a; flex-shrink:0; }
.author-timeline__label { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:#d4957a; margin-bottom:6px; }
.author-timeline__text { font-size:14px; color:rgba(255,255,255,.75); line-height:1.65; margin:0; }
