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

:root {
  /* Colors */
  --primary: #4f46e5;      /* Indigo 600 */
  --primary-dark: #3730a3; /* Indigo 800 */
  --primary-light: #818cf8;/* Indigo 400 */
  
  --secondary: #ec4899;    /* Pink 500 */
  --secondary-dark: #be185d;
  
  --cta-bg: #10b981;       /* Emerald 500 */
  --cta-hover: #059669;    /* Emerald 600 */
  --cta-glow: rgba(16, 185, 129, 0.4);
  
  --bg-color: #f8fafc;     /* Slate 50 */
  --bg-card: rgba(255, 255, 255, 0.85);
  
  --text-main: #1e293b;    /* Slate 800 */
  --text-muted: #64748b;   /* Slate 500 */
  
  --border-color: rgba(226, 232, 240, 0.8);
  
  /* Layout */
  --max-width: 680px;
  --border-radius: 16px;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.top-bar span {
  color: #fde047; /* Yellow 300 */
  font-weight: 800;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 50px 20px 20px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  color: var(--text-main);
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--primary-dark), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* VSL / VIDEO WRAP */
.vsl-wrap {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 30px;
  border-radius: var(--border-radius);
  padding: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
  position: relative;
}

.vsl-inner {
  background: #000;
  border-radius: calc(var(--border-radius) - 2px);
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsl-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

/* BUTTONS */
.btn-cta {
  display: block;
  width: 100%;
  background: var(--cta-bg);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--cta-glow), inset 0 2px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  animation: pulse-btn 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--cta-glow), inset 0 2px 0 rgba(255,255,255,0.2);
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 40px 0 25px;
  color: var(--primary-dark);
}

/* FEATURES */
.features {
  padding: 20px 0;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.icon-purple { background: #e0e7ff; color: var(--primary); }
.icon-pink { background: #fce7f3; color: var(--secondary); }
.icon-green { background: #d1fae5; color: var(--cta-bg); }

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* BONUSES */
.bonus-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 2px solid rgba(79, 70, 229, 0.15);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
}

.bonus-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.4);
}

.bonus-img {
  width: 200px;
  height: auto;
  min-height: 180px;
  background: #f8fafc;
  object-fit: contain;
  display: block;
  padding: 12px;
  flex-shrink: 0;
}

.bonus-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

@media (max-width: 550px) {
  .bonus-card {
    flex-direction: column;
  }
  .bonus-img {
    width: 100%;
    height: 220px;
  }
}


.bonus-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bonus-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

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

.price-was {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-free {
  color: var(--cta-bg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

/* PRICING PLANS */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.plan-card {
  background: #fff;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 20px 15px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.premium {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
  transform: scale(1.02);
}

.plan-badge {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 10px;
  display: inline-block;
}

.plan-title {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 5px;
}

.plan-price {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 15px;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price .currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 5px;
  display: inline-block;
}

.premium .plan-price {
  color: var(--primary);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.icon-check { color: var(--cta-bg); font-weight: bold; }
.icon-cross { color: #cbd5e1; }
.text-strike { color: #cbd5e1; text-decoration: line-through; }

.btn-plan {
  display: block;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-align: center;
}

.btn-plan-basic {
  background: #f1f5f9;
  color: #64748b;
}

.btn-plan-basic:hover {
  background: #e2e8f0;
  color: #475569;
}

.btn-plan-premium {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-plan-premium:hover {
  background: var(--primary-dark);
}

@media(max-width: 500px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.premium { transform: scale(1); margin-top: 15px; }
}

/* SOCIAL PROOF (WhatsApp / Instagram mocks) */
.social-proof {
  margin: 30px 0;
}

.wa-mock {
  background: #efeae2;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.wa-header {
  background: #008069;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wa-name { font-weight: 600; font-size: 0.95rem; }
.wa-status { font-size: 0.75rem; opacity: 0.8; }

.wa-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-msg {
  background: #fff;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  max-width: 85%;
  font-size: 0.9rem;
  color: #111;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-msg-right {
  background: #d9fdd3;
  border-radius: 12px 0 12px 12px;
  align-self: flex-end;
}


/* FAQ ACCORDION */
.faq-section {
  padding: 20px 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-q {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-item.open {
  border-color: var(--primary-light);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.05);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-a {
  padding: 0 20px 16px;
  max-height: 300px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 24px;
  color: #94a3b8;
}

/* UTILS */
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* GLOW EFFECTS */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.glow-orb-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--secondary);
}

.glow-orb-2 {
  top: 300px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary);
}

/* STATS STRIP */
.stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

@media(max-width: 500px) {
  .stat-divider { display: none; }
  .stats-strip { gap: 15px; }
  .stat-item { width: 45%; }
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1.1rem;
}

/* PAIN POINTS SECTION */
.pain-points {
  background: #f1f5f9;
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: var(--border-radius);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.pain-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pain-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
