:root {
  --green-brand: #16A34A; /* Vibrant green */
  --green-dark: #14532D;
  --green-light: #DCFCE7;
  --text-dark: #111827;
  --text-gray: #4B5563;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAF9;
  --badge-gray: #F3F4F6;
  --alert-pink-bg: #FEF2F0;
  --alert-pink-text: #BE123C;
  --mini-red: #DC2626;
  --border-light: #E5E7EB;
}

/* MISSING WIDGETS */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
}

.countdown { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.time-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.time-box {
  background-color: #F1F4F2;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E6EAE7;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.time-num {
  color: #37533C;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.time-label {
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 600;
}

.reviews-marquee {
  height: 450px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  display: flex;
  flex-direction: column;
}
.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollMarquee 15s linear infinite;
}
@keyframes scrollMarquee { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

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

html {
  scroll-behavior: smooth;
}

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

.page-container {
  width: 100%;
  overflow-x: hidden;
}

.section {
  width: 100%;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-light {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.container-inner {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Reset badges width so they center nicely */
.badge-rounded, .badge-alert, .badge-solid {
  width: max-content;
  align-self: center;
}

/* Hero Section */
.section-hero {
  padding: 40px 24px 32px;
  text-align: center;
  background: var(--bg-white);
}

.badge-rounded {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--badge-gray);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-brand);
  border: 1px solid #E4EBE6;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.badge-rounded .dot {
  width: 6px;
  height: 6px;
  background-color: var(--green-brand);
  border-radius: 50%;
}

.hero-title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
  color: #1a202c;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  padding: 0 4px;
  text-align: center;
}

.hero-title span {
  color: var(--green-brand);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.btn-glow-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 16px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--green-brand);
  color: white;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 0 40px rgba(76, 110, 77, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.04); }
  28% { transform: scale(1); }
  42% { transform: scale(1.04); }
  70% { transform: scale(1); }
  100% { transform: scale(1); }
}

.animated-btn {
  animation: heartbeat 2.5s infinite;
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 5px 15px rgba(76, 110, 77, 0.4);
}

.btn-primary i {
  font-size: 20px;
}

.info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #F4F7F5;
  color: var(--green-dark);
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  border: 1px solid #E9EFEA;
}

.features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
}

.features-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Light Section Common Styles */
.section-light {
  background-color: var(--bg-light);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pt-0 { padding-top: 0; }
.pb-xl { padding-bottom: 64px; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 32px; }
.mt-xl { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }

.section-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.section-title span {
  color: var(--green-brand);
}

/* Identification Section */
.badge-alert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--alert-pink-bg);
  color: var(--alert-pink-text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid #FADFE4;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.symptom-card {
  background: white;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.symptom-card i {
  font-size: 26px;
}
.icon-blue { color: #3B82F6; }
.icon-pink { color: #EC4899; }
.icon-orange { color: #F59E0B; }
.icon-purple { color: #8B5CF6; }

.symptom-card p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.story-box {
  background: white;
  border-radius: 0 16px 16px 0;
  border-left: 3px solid var(--green-brand);
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  width: 100%;
}

.story-box p {
  margin-bottom: 16px;
  color: var(--text-gray);
  font-size: 15px;
}

.story-box p:last-child {
  margin-bottom: 0;
}

.thought-text {
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark) !important;
  font-size: 17px !important;
}

.story-desc {
  font-size: 14px !important;
  line-height: 1.6;
}
.story-desc b {
  color: var(--text-dark);
}

/* Problem Section */
.text-content {
  color: var(--text-gray);
  font-size: 15px;
  width: 100%;
}
.text-content p {
  margin-bottom: 16px;
}
.text-content b {
  color: var(--text-dark);
}
.text-red {
  color: var(--mini-red);
}

.highlight-box {
  background: #EEF2EF;
  border-radius: 0 12px 12px 0;
  border-left: 3px solid var(--green-dark);
  padding: 20px;
  width: 100%;
  margin-top: 8px;
}
.highlight-box p {
  color: var(--text-dark);
  font-size: 15px;
  margin-bottom: 6px;
}
.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Benefits Section */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.benefit-item {
  background: white;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.01);
}

.benefit-item i {
  color: var(--green-brand);
  font-size: 20px;
}

/* Method Section */
.badge-solid {
  background: var(--green-brand);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 32px;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pillar-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.pillar-icon {
  background: var(--green-brand);
  color: white;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.pillar-content {
  display: flex;
  flex-direction: column;
}

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* What you Get */
.product-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.product-badge {
  display: inline-block;
  background: #E5E7EB;
  color: var(--text-gray);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.product-features i {
  color: var(--green-brand);
  font-size: 20px;
}

/* Step list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 0 12px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.step-icon {
  background: var(--green-brand);
  color: white;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* Social Proof */
.social-proof-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--bg-light);
  margin-left: -10px;
}
.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
}

.review-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stars {
  color: #F59E0B;
  display: flex;
  gap: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-gray);
}

/* Offer Card */
.offer-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.offer-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.offer-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-brand);
  margin-bottom: 12px;
}

.offer-stock {
  font-size: 14px;
  font-weight: 700;
  color: var(--alert-pink-text);
  margin-bottom: 20px;
}

.offer-sales {
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
}

/* Bonus Section */
.bonus-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.bonus-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.02);
}

.bonus-icon {
  background: #F3F5F4;
  color: var(--green-brand);
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.bonus-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.bonus-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.bonus-desc {
  font-size: 12px;
  color: var(--text-gray);
}

/* Timeline Section */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 2px solid var(--green-brand);
  gap: 20px;
}

.timeline-item {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.01);
}

.timeline-dot {
  position: absolute;
  left: -25px; /* Adjust according to border-left of .timeline */
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--green-brand);
  border-radius: 50%;
  border: 4px solid var(--bg-light);
}

.timeline-badge {
  display: inline-block;
  background: var(--green-brand);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Testimonials */
.mb-xs { margin-bottom: 8px; }

.section-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

.review-card-full {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  margin-bottom: 12px;
}

.review-quote {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  background: var(--green-brand);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-info strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-gray);
}

/* Checkout Section */
.checkout-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.02);
}

.promo-title {
  font-size: 12px;
  font-weight: 800;
  color: #EF4444;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.time-num {
  background: #F3F5F4;
  color: var(--green-brand);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E4EBE6;
}

.time-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
}

.checkout-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.price-old {
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: line-through;
  font-weight: 500;
}

.price-discount {
  background: #EEF3ED;
  color: var(--green-brand);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.price-main {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
  line-height: 1;
}

.price-main span {
  font-size: 20px;
  margin-top: 4px;
}
.price-main small {
  font-size: 20px;
  margin-top: 4px;
}

.checkout-features {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-features li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.checkout-features i {
  margin-top: 2px;
}

.checkout-banner {
  background: #F8FAF9;
  border: 1px solid #E4EBE6;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  background: var(--green-brand);
  color: white;
  text-decoration: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(89, 122, 94, 0.2);
  margin-bottom: 16px;
}

.checkout-subtext {
  font-size: 11px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.checkout-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
}

.checkout-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Guarantee Card */
.text-orange {
  color: #D97706;
}

.guarantee-card {
  background: #FFFBEB; /* Light yellow */
  border-radius: 16px;
  padding: 32px 24px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #FEF3C7;
}

.guarantee-icon {
  background: #FEF3C7;
  color: #D97706;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.guarantee-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.guarantee-title span {
  color: #D97706;
}

.guarantee-text {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.guarantee-subtext {
  font-size: 15px;
  color: #D97706;
  font-weight: 600;
}



.btn-whatsapp {
  background: #EEF8F0;
  color: #16A34A;
  border: 1px solid #A7F3D0;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 32px;
}

.btn-whatsapp i {
  font-size: 22px;
}

/* Footer Section */
.app-footer {
  background: var(--bg-light);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid #E4EBE6;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  color: #9CA3AF;
  font-size: 12px;
  text-decoration: underline;
}

.footer-copyright {
  margin-top: 8px;
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
  text-align: center;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.faq-item {
  background-color: #FDFDFD;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 15px;
  color: #1E293B;
  cursor: pointer;
  user-select: none;
}
.faq-question span {
  flex: 1; /* ensures string takes available space instead of shrinking */
}
.faq-question i {
  color: #64748B;
  font-size: 16px;
  transition: transform 0.3s ease;
  margin-left: 12px;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
}
.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 300px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Secondary CTA */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--green-brand);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  transition: transform 0.2s, background-color 0.2s;
  width: 100%;
}
.btn-secondary:active {
  transform: translateY(2px);
}
.text-center { text-align: center; }

/* Sticky Buy Bar */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #E5E7EB;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 999; /* Below whatsapp widget which is 1000 */
  display: flex;
  justify-content: center;
}
.sticky-buy-content {
  max-width: 460px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-price-info {
  display: flex;
  flex-direction: column;
}
.sticky-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--alert-pink-text);
  background: var(--alert-pink-bg);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 2px;
}
.sticky-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.btn-sticky {
  background: var(--green-brand);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

/* Make body have bottom padding so footer isn't hidden by sticky bar */
body {
  padding-bottom: 80px;
}

/* Adjust WhatsApp floating position to be slightly above the sticky bar */
.floating-whatsapp {
  bottom: 90px;
}

/* CSS Mockup Tablet */
.css-mockup-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  padding: 10px;
}
.css-mockup-tablet {
  width: 180px;
  height: 240px;
  background: #111;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), inset 0 0 0 2px #333;
  position: relative;
  overflow: hidden;
}
.mockup-screen {
  background: linear-gradient(135deg, var(--green-light), #fff);
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.mockup-header {
  background: var(--green-brand);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 8px;
  text-align: center;
  letter-spacing: 0.5px;
}
.mockup-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mockup-body h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 12px;
  text-align: center;
}
.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  align-items: center;
}
.mockup-lines span {
  display: block;
  height: 4px;
  background: rgba(20, 83, 45, 0.1);
  border-radius: 2px;
}
.mockup-lines span:nth-child(1) { width: 80%; }
.mockup-lines span:nth-child(2) { width: 100%; }
.mockup-lines span:nth-child(3) { width: 60%; }
.mockup-glare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  pointer-events: none;
}
