/* =============================================
   Cherished™ — "To My Mom" Necklace Store
   High-Converting One-Page Layout
   Biaheza-Style · Mother's Day 2026
   ============================================= */

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

:root {
  /* Core palette — deep rose + gold + ivory */
  --rose:         #c0395a;
  --rose-mid:     #d44a6e;
  --rose-light:   #fce8ef;
  --rose-pale:    #fff8f9;
  --gold:         #b8943f;
  --gold-light:   #f9f3e3;
  --gold-shine:   #e8c86a;
  --dark:         #111827;
  --dark-mid:     #1f2937;
  --gray:         #6b7280;
  --mid-gray:     #374151;
  --light:        #f9fafb;
  --white:        #ffffff;
  --green:        #059669;
  --green-light:  #d1fae5;
  --red:          #dc2626;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --shadow-rose: 0 8px 30px rgba(192,57,90,.35);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, #7b1a30, var(--rose), #c0395a, #7b1a30);
  background-size: 200% 100%;
  animation: shimmer-bg 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  position: relative;
  z-index: 200;
}

@keyframes shimmer-bg {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.announce-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
}

#announce-timer {
  background: rgba(255,255,255,.2);
  padding: 2px 9px;
  border-radius: 4px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   STICKY NAV
   ============================================ */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rose-light);
  transition: box-shadow .3s;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin: 0 auto 12px;
}

.nav-cta-btn {
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all .22s;
  box-shadow: 0 4px 14px rgba(192,57,90,.3);
  letter-spacing: .2px;
}
.nav-cta-btn:hover {
  background: #a82f4d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,90,.4);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px 56px;
}

.hero-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  border: 1px solid rgba(192,57,90,.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}
.hero-headline em { color: var(--rose); font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 440px;
}

.hero-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-stars-row .stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
.hero-stars-row span { font-size: 14px; color: var(--gray); }

.hero-price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-was {
  font-size: 20px;
  color: #9ca3af;
  text-decoration: line-through;
}
.price-now {
  font-size: 44px;
  font-weight: 900;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -1px;
}
.price-save {
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid #a7f3d0;
}

/* Stock bar */
.stock-bar-wrap { margin-bottom: 28px; }

.stock-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--mid-gray);
}
.stock-bar-label i { color: #f97316; margin-right: 4px; }

.stock-bar-track {
  height: 8px;
  background: #f3f4f6;
  border-radius: 50px;
  overflow: hidden;
}
.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-mid), #e05a7d);
  border-radius: 50px;
  transition: width 1s ease;
}

/* Hero CTA */
.hero-btn { margin-bottom: 20px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.trust-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 500;
}
.trust-strip i { color: var(--green); font-size: 13px; }

/* Product gallery */
.product-gallery { position: relative; }

.main-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(192,57,90,.1);
  margin-bottom: 10px;
}
.main-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
  transition: transform .4s ease;
  opacity: .95;
  display: block;
}
.main-img-wrap:hover img { transform: scale(1.04); }

.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
}



/* Floating review */
.float-review {
  position: relative;
  left: 0;
  bottom: 0;
  margin-top: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-light);
  max-width: 100%;
  animation: float-up 3s ease-in-out infinite;
  z-index: 10;
}
.float-review .fr-stars { font-size: 13px; margin-bottom: 5px; color: #f59e0b; }
.float-review p { font-size: 12px; color: var(--mid-gray); line-height: 1.5; }
.float-review strong { color: var(--dark); }

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-mid) 0%, var(--rose) 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 17px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--shadow-rose);
  letter-spacing: .2px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,90,.5);
  background: linear-gradient(135deg, var(--rose) 0%, #a82f4d 100%);
}
.btn-primary.large { font-size: 19px; padding: 19px 44px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-rose); }
  50%       { box-shadow: 0 8px 40px rgba(192,57,90,.65); }
}
.btn-primary.pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ============================================
   EMOTIONAL MESSAGE STRIP
   ============================================ */
.message-strip {
  background: var(--dark);
  padding: 56px 24px;
}
.ms-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ms-icon { font-size: 48px; margin-bottom: 20px; }

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
}
blockquote em { color: var(--gold-shine); font-style: italic; }
blockquote::before {
  content: '"';
  font-size: 80px;
  color: rgba(255,255,255,.07);
  position: absolute;
  top: -20px;
  left: -16px;
  font-family: var(--font-serif);
  line-height: 1;
}

.ms-credit {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: .5px;
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-section {
  background: linear-gradient(135deg, #1a0a10, #2d1020, var(--dark));
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid rgba(192,57,90,.2);
  border-bottom: 1px solid rgba(192,57,90,.2);
}
.countdown-inner { max-width: 600px; margin: 0 auto; }

.cd-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9ca3af;
  margin-bottom: 18px;
}

.cd-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cbox {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(192,57,90,.3);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 84px;
  text-align: center;
}
.cbox span {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--rose-mid);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cbox label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b7280;
  margin-top: 5px;
}
.cdot {
  font-size: 36px;
  font-weight: 900;
  color: rgba(192,57,90,.5);
  padding-bottom: 20px;
}

/* ============================================
   AS SEEN ON
   ============================================ */
.seen-on {
  padding: 24px;
  text-align: center;
  background: var(--light);
  border-bottom: 1px solid #f3f4f6;
}
.seen-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 14px;
}
.seen-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.seen-logos span {
  font-size: 16px;
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: -.2px;
  transition: color .2s;
}
.seen-logos span:hover { color: #9ca3af; }

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-section {
  padding: 88px 24px;
  background: var(--white);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.ps-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.ps-tag.bad { background: #fee2e2; color: var(--red); }
.ps-tag.good { background: var(--green-light); color: var(--green); }

.ps-left h2, .ps-right h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.ps-right h2 em { color: var(--rose); font-style: italic; }

.ps-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 56px;
  letter-spacing: .5px;
}

.prob-list, .sol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.prob-list li, .sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mid-gray);
}
.prob-list .fa-times-circle { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.sol-list .fa-check-circle  { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--rose-pale) 0%, #fff0f3 100%);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-title em { color: var(--rose); font-style: italic; }

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 52px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(192,57,90,.1);
  box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feat-icon { font-size: 38px; margin-bottom: 14px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feat-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 88px 24px;
  background: var(--white);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.how-step {
  flex: 1;
  min-width: 155px;
  max-width: 200px;
  text-align: center;
  padding: 0 10px;
}
.step-num {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--rose-mid), var(--rose));
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-rose);
}
.how-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.how-step p  { font-size: 13px; color: var(--gray); line-height: 1.6; }

.how-arrow {
  font-size: 24px;
  color: var(--rose-light);
  padding-top: 17px;
  flex-shrink: 0;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--dark) 0%, #1a0a10 100%);
}

.reviews-section .section-title { color: var(--white); }
.reviews-section .section-title em { color: var(--gold-shine); }
.reviews-section .section-sub { color: #9ca3af; margin-bottom: 52px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .25s, background .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}
.review-card.featured {
  background: rgba(192,57,90,.12);
  border-color: rgba(192,57,90,.35);
}

.rev-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rev-stars { font-size: 15px; color: #f59e0b; letter-spacing: 1px; }
.rev-verified { font-size: 11px; font-weight: 700; color: var(--green); }

.rev-text {
  font-size: 13.5px;
  color: #d1d5db;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-mid), var(--rose));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-author strong { display: block; font-size: 13px; font-weight: 700; color: #f9fafb; }
.rev-author span   { font-size: 11px; color: #6b7280; }

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.rating-score { text-align: center; flex-shrink: 0; }
.rs-number { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.rs-stars   { font-size: 22px; color: #f59e0b; margin: 4px 0; }
.rs-count   { font-size: 12px; color: #6b7280; }

.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.rb-row {
  display: grid;
  grid-template-columns: 32px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
}
.rb-track {
  height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  overflow: hidden;
}
.rb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-mid), var(--gold-shine));
  border-radius: 50px;
}

/* ============================================
   BUY / CHECKOUT SECTION
   ============================================ */
.buy-section {
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--rose-pale) 0%, #fff8f9 100%);
}

.buy-header {
  text-align: center;
  margin-bottom: 44px;
}
.buy-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.buy-header p { font-size: 16px; color: var(--gray); }

/* Bundle grid */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 36px;
}

.bundle-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.bundle-card:hover { border-color: var(--rose-mid); }
.bundle-card.selected {
  border-color: var(--rose);
  background: var(--rose-pale);
  box-shadow: 0 4px 24px rgba(192,57,90,.15);
}

.bc-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--rose);
  margin-bottom: 10px;
  min-height: 15px;
}
.bc-qty   { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 3px; }
.bc-label { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.bc-img   { font-size: 26px; margin-bottom: 14px; }
.bc-old   { font-size: 14px; color: #9ca3af; text-decoration: line-through; margin-bottom: 2px; }
.bc-new   { font-size: 28px; font-weight: 900; color: var(--rose); margin-bottom: 6px; }
.bc-save  {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 11px;
  border-radius: 50px;
}

/* Checkout card */
/* Stripe CTA box */
.stripe-cta-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(192,57,90,.1);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scta-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--mid-gray);
  padding: 5px 0;
}
.scta-row.green { color: var(--green); font-weight: 600; }
.scta-row.total {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(192,57,90,.15);
}
.scta-divider { height: 1px; background: rgba(192,57,90,.1); margin: 6px 0; }

.btn-checkout-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-mid), var(--rose));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: var(--shadow-rose);
  letter-spacing: .2px;
}
.btn-checkout-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,90,.5);
  color: #fff;
}

/* ============================================
   CHECKOUT TRUST ROW
   ============================================ */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0 0;
  font-size: 22px;
  color: #9ca3af;
  flex-wrap: wrap;
  border-top: 1px solid #f3f4f6;
}
.checkout-trust .fa-stripe { color: #635bff; }
.checkout-trust .fa-cc-visa { color: #1a1f71; }
.checkout-trust .fa-cc-mastercard { color: #eb001b; }
.checkout-trust .fa-cc-amex { color: #2e77bc; }
.checkout-trust .fa-apple-pay { color: var(--dark); }
.checkout-trust .fa-google-pay { color: #4285f4; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-section { padding: 64px 24px; background: var(--white); }

.guarantee-box {
  max-width: 740px;
  margin: 0 auto;
  background: var(--gold-light);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.g-icon { font-size: 56px; flex-shrink: 0; }
.g-text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.g-text p { font-size: 15px; color: var(--mid-gray); line-height: 1.75; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 88px 24px; background: var(--light); }

.faq-list {
  max-width: 740px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-sans);
  text-align: left;
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: var(--rose-pale); }
.faq-q i { color: var(--rose); flex-shrink: 0; transition: transform .25s; }
.faq-q.open i { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px;
}
.faq-a p { font-size: 14.5px; color: var(--gray); line-height: 1.75; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(160deg, var(--dark) 0%, #1a0a10 60%, #2a0f1a 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,57,90,.2) 0%, transparent 65%);
  pointer-events: none;
}

.final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.final-emoji { font-size: 60px; margin-bottom: 24px; }

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta h2 em { color: var(--gold-shine); font-style: italic; }

.final-cta > .final-inner > p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 32px;
}

.final-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.final-old { font-size: 20px; color: #6b7280; text-decoration: line-through; }
.final-new { font-size: 46px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.final-tag {
  background: rgba(5,150,105,.2);
  border: 1px solid rgba(5,150,105,.4);
  color: #6ee7b7;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 50px;
}

.final-urgency {
  margin-top: 20px;
  font-size: 14px;
  color: #f97316;
  font-weight: 600;
}
.final-urgency i { margin-right: 5px; }

.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.final-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.final-trust i { color: var(--green); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0a0f;
  color: #6b7280;
  padding: 52px 24px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a { font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 26px;
  margin-bottom: 20px;
  color: #4b5563;
}
.footer-copy { font-size: 12px; opacity: .5; }

/* ============================================
   SUCCESS MODAL
   ============================================ */
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 48px 20px 44px;
  }
  .hero-right { order: -1; }
  .hero-headline { font-size: 38px; }
  .main-img-wrap img { aspect-ratio: 1 / 1; height: auto; }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ps-divider { display: none; }

  .feat-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .bundle-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { display: none; }
  .how-step { max-width: 280px; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 28px 24px; gap: 16px; }
  .rating-summary { flex-direction: column; gap: 20px; padding: 22px; }
  #checkoutForm { padding: 20px; }
  .order-summary { padding: 20px 22px; }
  .form-2col { grid-template-columns: 1fr; }
  .checkout-trust { font-size: 18px; gap: 10px; }
  .btn-primary { font-size: 15px; padding: 15px 28px; }
  .btn-primary.large { font-size: 17px; padding: 16px 32px; }
}

@media (max-width: 400px) {
  .cbox span { font-size: 30px; }
  .cbox { padding: 12px 14px; min-width: 66px; }
  .hero-headline { font-size: 32px; }
  .price-now { font-size: 38px; }
}
