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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 40%, #fff5f0 100%);
  color: #555555;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Layout ===== */
.container {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: 48px 20px;
}

.section-white {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 50%, #ffffff 100%);
}

.section-grey {
  background: linear-gradient(180deg, #fff5f0 0%, #f9f0eb 50%, #fff5f0 100%);
}

.accent {
  color: #ff4d00;
}

.divider {
  border-top: 1px solid rgba(255, 77, 0, 0.08);
}

/* ===== CTA Button ===== */
.cta-btn {
  display: block;
  width: fit-content;
  min-width: 280px;
  margin: 0 auto;
  padding: 16px 32px;
  background: #ff4d00;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.3);
  transition: background 0.15s ease;
}

.cta-btn:hover {
  background: #e04400;
}

/* ===== Trust & Scarcity ===== */
.trust-line {
  text-align: center;
  font-size: 12px;
  color: #999999;
  margin-top: 12px;
}

.scarcity-line {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ff4d00;
  margin-top: 8px;
}

/* ===== Hero ===== */
.hero-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ff4d00;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: 14px;
  color: #555555;
  text-align: center;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ===== Video Player ===== */
.video-outer {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ===== Hero CTA spacing ===== */
.hero .cta-btn {
  margin-top: 28px;
}

/* ===== Proof Numbers ===== */
.stars {
  text-align: center;
  font-size: 20px;
  color: #ff4d00;
  margin-bottom: 8px;
}

.proof-subtext {
  text-align: center;
  font-size: 13px;
  color: #888888;
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  min-width: 33%;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ff4d00;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: #555555;
  margin-top: 4px;
  display: block;
}

/* ===== Section Label & Headline ===== */
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ff4d00;
  margin-bottom: 12px;
}

.section-headline {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.section-subtext {
  text-align: center;
  font-size: 15px;
  color: #555555;
  margin-bottom: 28px;
  margin-top: -24px;
}

/* ===== Social Proof Bar ===== */
.social-proof-bar {
  background: linear-gradient(135deg, #fff5f0 0%, #ffeee5 50%, #fff5f0 100%);
  padding: 32px 20px;
  text-align: center;
}

.social-proof-bar .container {
  max-width: 640px;
  margin: 0 auto;
}

.social-proof-stars {
  font-size: 18px;
  color: #FF4D00;
  margin: 0;
  letter-spacing: 2px;
}

.social-proof-rating-text {
  font-size: 13px;
  color: #888888;
  margin-top: 4px;
  margin-bottom: 0;
}

.social-proof-bar .section-label {
  margin-top: 20px;
  margin-bottom: 0;
}

.social-proof-headline {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}

/* ===== Video Testimonials ===== */
.video-testimonial {
  margin-bottom: 16px;
}

.video-testimonial-frame {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
}

.video-testimonial-frame wistia-player {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.video-testimonial-frame > .play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-circle {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.play-triangle-md {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
  margin-left: 3px;
}

.video-testimonial-caption {
  text-align: center;
  font-size: 13px;
  color: #888888;
  margin-top: 8px;
}

/* ===== Cards ===== */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px 20px 24px;
  border-left: 4px solid #ff4d00;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: block;
}

.card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* ===== Value Box ===== */
.value-box {
  background: #fff3ee;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid #ff4d00;
}

.value-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

.value-price {
  font-size: 22px;
  font-weight: 700;
  color: #ff4d00;
  display: block;
  margin-top: 8px;
}

/* ===== WhatsApp Proof ===== */
.whatsapp-subtext {
  text-align: center;
  font-size: 14px;
  color: #888888;
  margin-bottom: 28px;
}

.whatsapp-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.whatsapp-card {
  max-width: 340px;
  width: 100%;
  margin: 0 auto 16px;
}

.whatsapp-screenshot {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 640px;
}

.faq-item {
  border-bottom: 1px solid #eeeeee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  min-height: 48px;
}

.faq-question span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  padding-right: 16px;
}

.faq-plus {
  font-size: 24px;
  color: #ff4d00;
  font-weight: 700;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  padding-bottom: 16px;
}

/* ===== Next Steps ===== */
.next-steps-section {
  padding: 48px 20px;
}

.next-steps-section .container {
  max-width: 640px;
  margin: 0 auto;
}

.next-steps-headline {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.next-steps-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.next-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.next-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff4d00;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.next-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.next-step-desc {
  font-size: 14px;
  color: #888888;
  line-height: 1.6;
}

/* ===== Sticky CTA Bar ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ff4d00;
  padding: 12px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta a {
  display: block;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

/* ===== Final CTA ===== */
.final-cta-headline {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.35;
}

.final-cta-subheadline {
  font-size: 16px;
  color: #555555;
  text-align: center;
  margin-bottom: 28px;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
  padding: 28px 20px;
  text-align: center;
}

.footer-text {
  font-size: 12px;
  color: #aaaaaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 12px;
  color: #cccccc;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .section {
    padding: 36px 16px;
  }

  .hero-headline {
    font-size: 22px;
  }

  .cta-btn {
    width: 100%;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-item {
    min-width: 100%;
  }

  .whatsapp-card {
    max-width: 100%;
  }

  .next-steps-row {
    flex-direction: column;
    gap: 32px;
  }
}
