:root {
  --bg: #FFFFFF;
  --wine-dark: #3B1726;
  --wine-medium: #5A2438;
  --gold: #C99468;
  --cream: #F8F1EA;
  --beige: #EFE2D3;
  --text: #241C1F;
  --text-secondary: #6D5B61;
  --button-green: #2E7D32;
  --button-green-shadow: #1B5E20;
}

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

img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 700px) {
  .wrap { max-width: 600px; }
}

/* Urgency bar */
.urgency-bar {
  background: var(--wine-dark);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  letter-spacing: 0.2px;
}
.urgency-bar strong { color: var(--gold); }

/* Sections */
.section {
  padding: 40px 0;
  border-bottom: 1px solid var(--beige);
}
.section:last-of-type { border-bottom: none; }

h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
}

h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.hero h1, .hero h2 { text-align: center; }

.highlight { color: var(--wine-dark); }

.subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 22px;
}

.text-secondary {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.center { text-align: center; }

.badge {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  background: var(--cream);
  color: var(--wine-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}
.badge-gold {
  background: var(--gold);
  color: var(--wine-dark);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.testimonial-headline {
  color: var(--wine-dark);
  font-size: 24px;
  font-weight: 800;
}

.hero-features {
  background: var(--bg);
  margin: 20px 0 24px;
}
.hero-features-lead {
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  color: var(--wine-dark);
  margin-bottom: 16px;
  line-height: 1.45;
}

/* Buttons */
.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 20px;
  min-height: 56px;
  border-radius: 10px;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.btn:active { transform: translateY(3px); }
.btn-block { width: 100%; }
.btn-large { font-size: 18px; padding: 20px 20px; }
.btn-primary {
  background: var(--button-green);
  color: #fff;
  box-shadow: 0 4px 0 var(--button-green-shadow), 0 8px 16px rgba(0, 0, 0, 0.18);
}
.btn-primary:active {
  box-shadow: 0 1px 0 var(--button-green-shadow), 0 2px 6px rgba(0, 0, 0, 0.18);
}
.btn-secondary {
  background: var(--cream);
  color: var(--wine-dark);
  border: 1.5px solid var(--wine-medium);
  box-shadow: 0 4px 0 var(--beige);
}
.btn-secondary:active {
  box-shadow: 0 1px 0 var(--beige);
}

.micro-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.delivery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--wine-dark);
  margin-top: 14px;
}
.delivery-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.delivery-icons svg { display: block; }

/* Phone frame carousel */
.phone-frame {
  width: 240px;
  margin: 24px auto;
  background: var(--wine-dark);
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 20px 40px rgba(59, 23, 38, 0.3);
  position: relative;
  border: 2px solid var(--gold);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  background: var(--wine-dark);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.carousel-track {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 22s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.carousel-track img {
  width: 100%;
  display: block;
  flex-shrink: 0;
}
@keyframes scroll-vertical {
  from { transform: translateY(0); }
  to { transform: translateY(-66.6667%); }
}
.phone-bar {
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 12px auto 2px;
}

/* Horizontal strip carousel */
.strip-carousel {
  margin-top: 18px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.strip-track {
  display: flex;
  width: max-content;
  animation: scroll-horizontal 28s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.strip-track img {
  height: 130px;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--gold);
  margin-right: 10px;
}
@keyframes scroll-horizontal {
  from { transform: translateX(0); }
  to { transform: translateX(-66.6667%); }
}

/* Testimonial screenshots strip */
.testimonial-strip {
  margin: 20px 0 24px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.testimonial-strip-track {
  display: flex;
  width: max-content;
  animation: scroll-horizontal-testimonials 20s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.testimonial-strip-track img {
  height: 320px;
  width: auto;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 20px rgba(59, 23, 38, 0.12);
  margin-right: 12px;
}
@keyframes scroll-horizontal-testimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-66.6667%); }
}

.closing-line {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 18px;
  color: var(--wine-dark);
}

/* Solution block */
.solution-block {
  background: var(--cream);
  border-radius: 0;
  margin: 0 -20px;
  padding: 40px 20px;
}
.solution-block h2, .solution-block .text-secondary { text-align: center; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.check-list li {
  font-size: 14.5px;
  font-weight: 500;
  padding-left: 26px;
  position: relative;
}
.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

/* Modules */
.module-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.module-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(59, 23, 38, 0.05);
  position: relative;
}
.module-num {
  display: inline-block;
  background: var(--wine-dark);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 8px;
  padding: 3px 9px;
  margin-bottom: 8px;
}
.module-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--wine-dark); }
.module-card p { font-size: 13.5px; color: var(--text-secondary); }

/* Benefits */
.benefit-list { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.benefit-item h3 { font-size: 16px; margin-bottom: 4px; color: var(--wine-dark); }
.benefit-item p { font-size: 13.5px; color: var(--text-secondary); }

/* Bonus */
.bonus-block { background: var(--cream); margin: 0 -20px; padding: 40px 20px; }
.bonus-block h2 { text-align: center; }
.bonus-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 18px;
  margin-top: 16px;
  position: relative;
  box-shadow: 0 4px 14px rgba(59, 23, 38, 0.06);
}
.free-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gold);
  color: var(--wine-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.bonus-card h3 { font-size: 15.5px; margin-bottom: 4px; padding-right: 60px; color: var(--wine-dark); }
.bonus-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--beige);
  margin-bottom: 10px;
  display: block;
}
.bonus-value { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.bonus-card p:last-child { font-size: 13px; color: var(--text-secondary); }

/* Compare */
.compare-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.compare-card { border-radius: 16px; padding: 18px; }
.compare-card.before { background: var(--beige); }
.compare-card.after { background: var(--cream); }
.compare-card h3 { font-size: 15px; margin-bottom: 10px; color: var(--wine-dark); }
.compare-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
}
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }

/* Pricing section */
.pricing-section {
  --bg-section: #F8F1EA;
  --card-bg: #FFFFFF;
  --text-dark: #063B46;
  --text-muted: #6D5B61;
  --p-green: #21A85B;
  --p-green-dark: #168B4C;
  --p-green-light: #E6F7EC;
  --p-copper: #C99468;
  --p-urgency: #C86B5A;
  --p-border-light: #E9E3DC;
  background: var(--bg-section);
  margin: 0 -20px;
  padding: 44px 18px;
}
.pricing-urgency-pill {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  background: var(--p-urgency);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(200, 107, 90, 0.3);
}
.pricing-title {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 28px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(6, 59, 70, 0.08);
  position: relative;
  text-align: center;
}
.pricing-card-basic {
  border: 1.5px solid var(--p-border-light);
}
.pricing-card-premium {
  border: 3px solid var(--p-green);
  box-shadow: 0 16px 40px rgba(33, 168, 91, 0.18), 0 0 0 6px rgba(33, 168, 91, 0.06);
  padding-top: 36px;
}
.pricing-card-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.pricing-badge-top {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p-green);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 28px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(33, 168, 91, 0.35);
}
.pricing-pill-small {
  display: inline-block;
  background: #F7EAE7;
  color: #7A3328;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pricing-pill-green {
  display: inline-block;
  background: var(--p-green-light);
  color: var(--p-green-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pricing-image {
  display: block;
  margin: 0 auto 18px;
}
.pricing-image-basic { width: 76%; }
.pricing-image-premium-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
}
.pricing-image-premium {
  width: 88%;
  margin: 0 auto;
  filter: drop-shadow(0 14px 24px rgba(6, 59, 70, 0.18));
}
.pricing-bonus-chip {
  position: absolute;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(6, 59, 70, 0.2);
}
.chip-1 { top: 6px; left: 4px; transform: rotate(-8deg); }
.chip-2 { bottom: 6px; right: 4px; transform: rotate(8deg); }

.pricing-receives-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 18px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 500;
}
.pricing-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  margin-top: 1px;
}
.pricing-gift { flex-shrink: 0; font-size: 15px; }
.pricing-feature-bonus { color: var(--text-dark); }

.pricing-old-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-price-premium { color: var(--p-green-dark); font-size: 42px; }
.pricing-installment {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-savings-badge {
  display: inline-block;
  background: var(--p-green-light);
  color: var(--p-green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.pricing-button {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.08s ease;
}
.pricing-button:active { transform: scale(0.98); }
.pricing-button-basic {
  background: #fff;
  color: var(--p-green-dark);
  border: 2px solid var(--p-green);
  font-size: 16px;
  min-height: 58px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(33, 168, 91, 0.12);
}
.pricing-button-premium {
  background: var(--p-green);
  color: #fff;
  font-size: 18px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(33, 168, 91, 0.25);
  margin-top: 4px;
}
.pricing-payment-badges {
  font-size: 11.5px;
  color: #B3A8A2;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.pricing-pointer {
  text-align: center;
  background: var(--text-dark);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
}
.pricing-pointer-text { font-size: 14px; }
.pricing-pointer-text strong { color: var(--p-copper); font-size: 16px; }
.pricing-pointer-arrow {
  display: block;
  color: var(--p-green);
  font-size: 22px;
  margin-top: 6px;
}

.pricing-footer-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .pricing-section { margin: 0 -60px; padding: 56px 40px; }
  .pricing-title { font-size: 44px; }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "basic premium"
      "pointer premium";
    align-items: start;
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .pricing-card-basic { grid-area: basic; }
  .pricing-pointer { grid-area: pointer; }
  .pricing-card-premium { grid-area: premium; padding: 40px 32px; }
}

/* Guarantee */
.guarantee-block {
  background: var(--cream);
  margin: 0 -20px;
  padding: 40px 20px;
  text-align: center;
}
.guarantee-image {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
}

/* FAQ */
.faq-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq-item summary {
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-weight: 800; color: var(--gold); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 13.5px; color: var(--text-secondary); margin-top: 10px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta p { color: var(--text-secondary); font-size: 14px; margin: 12px 0 22px; }

/* Footer */
.footer {
  text-align: center;
  padding: 24px 20px 100px;
  font-size: 11.5px;
  color: var(--text-secondary);
}
