@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Palette */
  --primary: #059669;
  --primary-hover: #047857;
  --primary-light: #d1fae5;
  --primary-glow: rgba(5, 150, 105, 0.4);
  
  --secondary: #fbbf24; /* Gold accent for urgency & trust */
  
  --bg-gradient: linear-gradient(180deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-light: #64748b;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Poppins', 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 25px -5px rgba(5, 150, 105, 0.08), 0 8px 10px -6px rgba(5, 150, 105, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  --shadow-cta: 0 10px 30px rgba(5, 150, 105, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-gradient);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Layout & Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography styling */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Top bar urgency */
.top-bar {
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 100;
  position: relative;
  line-height: 1.3;
}

.top-bar span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.4; }
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 14px 0;
  transition: all 0.3s ease;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.header-cta-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}

.header-cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.2);
}

/* Sections Base */
section {
  padding: 70px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span.tag {
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-title p {
  font-size: 14px;
  color: var(--text-light);
}

/* Hero Section */
.hero {
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas: 
    "content mockup"
    "action mockup";
  gap: 40px;
  align-items: center;
}

.hero-content {
  grid-area: content;
}

.hero-mockup-wrapper {
  grid-area: mockup;
}

.hero-action {
  grid-area: action;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
  padding: 6px 12px;
  border-radius: 50px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Action block (CTA + Urgency) */
.hero-action {
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #10b981 0%, var(--primary) 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
}

.cta-pulse {
  animation: cta-pulse-effect 2.2s infinite;
}

@keyframes cta-pulse-effect {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.cta-sub-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}

.cta-sub-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-sub-info i {
  color: var(--primary);
  font-size: 13px;
}

/* Urgency Timer Box */
.urgency-timer {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #b45309;
  margin-top: 16px;
}

.urgency-timer i {
  font-size: 14px;
}

.timer-countdown {
  font-family: monospace;
  font-size: 13px;
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Mockup Showcase */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  filter: blur(40px);
  z-index: 1;
}

.hero-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: mockup-float 6s ease-in-out infinite;
}

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

.mockup-header {
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #f87171; }
.mockup-dot:nth-child(2) { background: #fbbf24; }
.mockup-dot:nth-child(3) { background: #34d399; }

.mockup-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-left: auto;
}

.mockup-body {
  padding: 18px;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mockup-stat-card {
  background: #f0fdf4;
  border: 1px solid rgba(5, 150, 105, 0.06);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.mockup-stat-label {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mockup-stat-val {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.mockup-graph-box {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}

.mockup-graph-header {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mockup-graph-lines {
  height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 8px;
  border-bottom: 1.5px solid #e2e8f0;
  border-left: 1.5px solid #e2e8f0;
  position: relative;
}

.mockup-graph-bar {
  width: 12%;
  background: var(--primary-light);
  border-radius: 3px 3px 0 0;
}

.mockup-graph-bar.highlight {
  background: var(--primary);
}

/* Before / After Stats Showcase */
.before-after-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #1e293b;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px;
  margin-top: 8px;
}

.ba-group {
  text-align: center;
}

.ba-label {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}

.ba-val {
  font-size: 15px;
  font-weight: 800;
}

.ba-val.before {
  color: #f87171;
  text-decoration: line-through;
}

.ba-val.after {
  color: #34d399;
}

.ba-arrow {
  color: #94a3b8;
}

/* Problem Section */
.problem {
  background: #0f172a;
  color: #f8fafc;
  padding: 80px 0;
}

.problem h2 {
  color: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.problem-content h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
}

.problem-content p {
  color: #94a3b8;
  font-size: 14.5px;
  margin-bottom: 20px;
}

.objections-list {
  list-style: none;
}

.objection-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.02);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
}

.objection-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  flex-shrink: 0;
}

.objection-text h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.objection-text p {
  color: #94a3b8;
  font-size: 12.5px;
  margin: 0;
  line-height: 1.5;
}

/* Solution / Scientific Section */
.solution-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.solution-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.solution-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Product Pillars Section (3 Pillars) */
.pillars {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.pillar-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pillar-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 9px;
  font-weight: 850;
  padding: 4px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pillar-banner {
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #064e3b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pillar-item:nth-child(2) .pillar-banner {
  background: linear-gradient(135deg, #059669 0%, #0f172a 100%);
}
.pillar-item:nth-child(3) .pillar-banner {
  background: linear-gradient(135deg, #047857 0%, #1e1b4b 100%);
}

.pillar-banner i {
  font-size: 32px;
  color: #ffffff;
  opacity: 0.9;
}

.pillar-content {
  padding: 20px;
}

.pillar-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

/* Features Grid Inside Platform */
.features {
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-box {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid #edf2f7;
  transition: all 0.2s ease;
}

.feature-box:hover {
  background: var(--bg-card);
  border-color: rgba(5, 150, 105, 0.15);
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Testimonials / Social Proof Section */
.testimonials {
  background: #f8fafc;
}

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

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 10px;
  font-size: 12px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
}

.testimonial-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-tag {
  font-size: 9.5px;
  color: var(--primary);
  font-weight: 600;
}

/* Pricing / Checkout Section */
.pricing {
  background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  gap: 20px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  padding: 30px 20px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
}

.pricing-card:hover {
  border-color: rgba(5, 150, 105, 0.25);
  box-shadow: var(--shadow-md);
}

.pricing-card.recommended {
  border: 2.5px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  min-height: 500px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, var(--primary) 100%);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 850;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.pricing-name {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pricing-card.recommended .pricing-name {
  color: var(--primary);
}

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

.price-currency {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

.price-val {
  font-size: 38px;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--text-dark);
}

.pricing-card.recommended .price-val {
  font-size: 44px;
}

.price-period {
  font-size: 11.5px;
  color: var(--text-light);
  font-weight: 500;
}

.price-details {
  font-size: 10.5px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 11.5px;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
  margin-bottom: 24px;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text-body);
}

.pricing-item.disabled {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-item i {
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-item i.check {
  color: var(--primary);
}

.pricing-item i.times {
  color: #ef4444;
}

.pricing-btn {
  width: 100%;
  padding: 13px 18px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: block;
}

.pricing-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.pricing-card.recommended .pricing-btn {
  background: linear-gradient(135deg, #10b981 0%, var(--primary) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(5, 150, 105, 0.2);
}

.pricing-card.recommended .pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Guarantee Section */
.guarantee-box {
  background: var(--bg-card);
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.guarantee-badge {
  width: 80px;
  height: 80px;
  background: #fffbeb;
  border: 2px solid #f59e0b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-family: var(--font-title);
  font-weight: 900;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(245, 158, 11, 0.1);
}

.guarantee-badge span.num {
  font-size: 22px;
  display: block;
}

.guarantee-badge span.days {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.guarantee-content p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

/* FAQ Accordion Section */
.faq {
  background: #ffffff;
}

.faq-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1.5px solid var(--border-color);
  padding: 14px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 8px 0;
}

.faq-question h3 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-question:hover h3 {
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer-content {
  padding: 8px 0 14px 0;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

/* Purchase popup */
.purchase-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  max-width: 300px;
}

.purchase-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.popup-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.popup-details {
  font-size: 11px;
  color: var(--text-body);
  line-height: 1.3;
}

.popup-details strong {
  color: var(--text-dark);
  font-weight: 700;
}

.popup-time {
  display: block;
  font-size: 9px;
  color: var(--text-light);
  margin-top: 1px;
}

/* Specialist / Authority Section */
.specialist {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.specialist-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.specialist-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
}

.specialist-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.specialist-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 2;
  transition: transform 0.5s ease;
}

.specialist-image-wrapper:hover .specialist-img {
  transform: scale(1.02);
}

.specialist-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(5, 150, 105, 0.15);
  z-index: 3;
}

.specialist-badge i {
  color: var(--primary);
  font-size: 16px;
}

.specialist-badge span {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
}

.specialist-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.specialist-content h2 {
  font-size: 32px;
  margin-bottom: 4px;
}

.specialist-lead {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}

.specialist-content p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.specialist-quote {
  background: #f0fdf4;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  position: relative;
  margin-top: 8px;
}

.specialist-quote .quote-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  opacity: 0.05;
  color: var(--primary);
}

.specialist-quote p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-hover);
  line-height: 1.5;
}

.specialist-credentials {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.credential-item i {
  color: var(--primary);
  font-size: 16px;
}

.credential-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

/* Footer styling */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 0;
  font-size: 11.5px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  max-width: 800px;
  color: #57687e;
  line-height: 1.7;
  font-size: 10px;
}

/* Mobile Sticky CTA Button (Only shows when scrolling on mobile) */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  z-index: 999;
  border-top: 1px solid #edf2f7;
  box-sizing: border-box;
  animation: slide-up-cta 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-up-cta {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-sticky-cta .cta-button {
  max-width: 100%;
  width: 100%;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-cta);
}

/* ========================================================================== */
/* RESPONSIVE DESIGN - EXTREMELY MOBILE FOCUSED (CELLPHONE OPTIMIZATION)      */
/* ========================================================================== */

@media (max-width: 992px) {
  section {
    padding: 50px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "content"
      "mockup"
      "action";
    gap: 32px;
    text-align: center;
  }
  
  .hero-badge, .cta-sub-info {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }

  .specialist-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .specialist-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .specialist-content {
    align-items: center;
  }
  
  .specialist-quote {
    text-align: left;
    border-radius: var(--radius-md);
  }

  .specialist-credentials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 24px;
  }
  
  .pricing-card.recommended {
    transform: none;
    min-height: auto;
  }
  
  .pricing-card {
    min-height: auto;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .solution-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Mobile & Touch Target specific overrides */
@media (max-width: 768px) {
  /* Reduced margins & paddings for mobile screen economy */
  .container {
    padding: 0 16px; /* Narrower safety margins */
  }

  section {
    padding: 40px 0; /* More compact scrolling sections */
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 13.5px;
  }

  /* Above-the-Fold optimization */
  .hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 26px; /* Prevents long word breaks, wraps nicely */
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  /* Better Tap Targets */
  .cta-button {
    font-size: 16px;
    padding: 15px 24px;
    min-height: 52px; /* Easy thumb touch size */
    border-radius: 14px;
    width: 100%;
  }

  .cta-sub-info {
    font-size: 10px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    font-size: 18px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .header-cta-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 8px;
  }

  /* Make sure problems and solutions stack logically */
  .objection-item {
    padding: 14px;
    border-radius: 12px;
  }

  .objection-icon {
    width: 34px;
    height: 34px;
  }

  /* Testimonials layout */
  .testimonial-card {
    padding: 16px;
  }

  .testimonial-text {
    font-size: 12.5px;
    margin-bottom: 12px;
  }

  /* Mobile Pricing layouts */
  .pricing-card {
    padding: 24px 16px;
  }

  .price-val {
    font-size: 34px;
  }

  .pricing-card.recommended .price-val {
    font-size: 40px;
  }

  .pricing-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  /* Guarantee section */
  .guarantee-box {
    padding: 20px 16px;
    gap: 16px;
    margin-top: 36px;
  }

  .guarantee-badge {
    width: 70px;
    height: 70px;
  }

  .guarantee-badge span.num {
    font-size: 18px;
  }

  .guarantee-content h3 {
    font-size: 16px;
  }

  .guarantee-content p {
    font-size: 12px;
  }

  /* FAQs */
  .faq-question h3 {
    font-size: 14px;
    padding-right: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  /* Simulating bottom sheet for checkout modal on mobile (Very Premium!) */
  #checkout-modal > div {
    border-radius: 20px 20px 0 0 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    animation: slide-up-sheet 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2) !important;
  }

  @keyframes slide-up-sheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  #checkout-sim-form {
    padding: 16px !important;
  }

  #checkout-sim-form button[type="submit"] {
    min-height: 52px !important;
    border-radius: 12px !important;
  }

  /* Adjust recent purchase popups for mobile so they don't block content */
  .purchase-popup {
    bottom: 84px; /* Rises above the sticky mobile CTA */
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 10.5px;
  }

  .popup-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

/* Small phones tuning */
@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 23px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .price-val {
    font-size: 30px;
  }

  .pricing-card.recommended .price-val {
    font-size: 36px;
  }

  .footer-nav {
    gap: 8px;
  }
}

/* Estilos do Slider de Personagem Antes/Depois */
.character-slider-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #f0fdf4;
}

.slider-layer {
  position: absolute;
  inset: 0;
  background-image: url('comparacao.png');
  background-repeat: no-repeat;
  background-size: 200% 100%;
  pointer-events: none;
}

.before-layer {
  background-position: left center;
  z-index: 1;
}

.after-layer {
  background-position: right center;
  z-index: 2;
  clip-path: inset(0 0 0 50%); /* Inicia revelando metade */
}

/* Drag Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.handle-line {
  flex-grow: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.handle-button {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 3.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-container:hover .handle-button {
  transform: scale(1.1);
}

/* Badges */
.slider-badge {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-before {
  left: 20px;
  background: #ef4444;
  color: #ffffff;
}

.badge-after {
  right: 20px;
  background: var(--primary);
  color: #ffffff;
}

/* Instruções */
.slider-instruction {
  background: #f8fafc;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
  color: var(--text-light);
  border-top: 1px solid #edf2f7;
}

.slider-instruction i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Ajustes responsivos */
@media (max-width: 480px) {
  .slider-container {
    height: 340px;
  }
}

/* Calculadora Metabólica Section */
.calculator-section {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding: 80px 0;
}

.calculator-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.calc-field {
  display: flex;
  flex-direction: column;
}

.calc-field.full-width {
  grid-column: span 2;
}

.calc-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.calc-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%252364748b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Gender Options */
.gender-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gender-option {
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gender-option input {
  display: none;
}

.gender-option.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 700;
}

.calc-btn {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  padding: 16px;
}

/* Locked Result Overlay */
.calc-result-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blur-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lock-content {
  position: relative;
  z-index: 22;
  text-align: center;
  max-width: 480px;
  animation: scale-in-lock 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scale-in-lock {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lock-icon {
  width: 60px;
  height: 60px;
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 24px;
  animation: lock-bounce 2s infinite;
}

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

.lock-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.lock-content p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lock-cta-box {
  background: #f0fdf4;
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.lock-price-text {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-hover);
  margin-bottom: 14px;
  line-height: 1.4;
}

.lock-cta-btn {
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .calculator-card {
    padding: 24px 16px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc-field.full-width {
    grid-column: span 1;
  }
  .lock-content h3 {
    font-size: 18px;
  }
  .lock-content p {
    font-size: 12.5px;
  }
}



