/* Adsterraguru - AI Content Monetization System */
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #2563eb;
  --black: #0f172a;
  --dark: #1e293b;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --white: #ffffff;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --shadow: 0 10px 40px rgba(30, 64, 175, 0.15);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* Typography */
.font-display { font-family: 'Sora', 'Inter', sans-serif; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--black);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo span { color: var(--primary); font-size: 0.7rem; display: block; font-weight: 600; letter-spacing: 0.05em; }

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

.badge-slots {
  background: #fff7ed;
  color: #ea580c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--black);
  border: 1.5px solid #e2e8f0;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto 16px;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 24px;
}

.hero-video-wrap {
  max-width: 700px;
  margin: 32px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
  gap: 12px;
}

.play-btn {
  width: 72px;
  height: 72px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stat-item {
  background: white;
  padding: 20px;
  text-align: center;
}

.stat-item .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item .label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  background: var(--black);
  color: white;
  padding: 12px 0;
  margin: 40px 0 0;
}

.marquee {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pricing card */
.pricing-section {
  padding: 60px 0;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.pricing-card .tag {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--success);
}

.price-old {
  font-size: 1.3rem;
  color: var(--gray);
  text-decoration: line-through;
}

.price-discount {
  background: #fef3c7;
  color: #d97706;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.slots-info {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 12px 0 20px;
}

/* Sections common */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* Curriculum */
.modules-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.module-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}

.module-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(30,64,175,0.1);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.module-num {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.module-title {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.module-chevron {
  color: var(--gray);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.module-item.active .module-chevron {
  transform: rotate(180deg);
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f8fafc;
}

.module-item.active .module-body {
  max-height: 300px;
}

.module-content {
  padding: 0 20px 20px 76px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bonus-card {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: white;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bonus-card .bonus-price {
  margin-left: auto;
  text-align: right;
}

.bonus-card .old { text-decoration: line-through; opacity: 0.7; }
.bonus-card .free { font-size: 1.5rem; font-weight: 800; color: #4ade80; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.testimonial-card .earn {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--success);
  margin-bottom: 12px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* Outcomes */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.outcome-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

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

.outcome-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.outcome-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.outcome-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.outcome-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}

.roadmap-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.roadmap-num {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.roadmap-days {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.roadmap-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.roadmap-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Who it's for */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.who-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.who-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(30,64,175,0.12);
}

.who-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.who-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.who-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: '−';
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* CTA final */
.cta-final {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 70px 20px;
  border-radius: 24px;
  margin: 40px 20px;
}

.cta-final h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-final p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.cta-final .btn-primary {
  background: white;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--black);
  color: #94a3b8;
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-links h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========== PAGE 2: Training ========== */
.training-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
  color: white;
}

.training-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.3;
}

.enrollment-details {
  background: white;
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  margin: -40px auto 40px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.enrollment-details h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--black);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}

.detail-row:last-of-type {
  border-bottom: none;
}

.detail-row .label {
  color: var(--gray);
}

.detail-row .value {
  font-weight: 700;
  color: var(--black);
}

.guarantee-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #166534;
}

/* Popup Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.show .modal {
  transform: scale(1);
}

.modal-header {
  background: var(--gradient);
  color: white;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 24px;
  text-align: center;
}

.modal-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.modal-stats div {
  padding: 12px 20px;
  border-right: 1px solid #e2e8f0;
}

.modal-stats div:last-child {
  border-right: none;
}

.modal-stats .n {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--black);
}

.modal-stats .l {
  font-size: 0.75rem;
  color: var(--gray);
}

.modal-body p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}

.modal-price-box {
  background: #f0fdf4;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.modal-price-box .current {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--success);
}

.modal-price-box .old {
  text-decoration: line-through;
  color: var(--gray);
  margin-left: 8px;
}

.modal-price-box .ends {
  color: #ea580c;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ========== ENROLL PAGE ========== */
.enroll-page {
  min-height: 100vh;
  background: #f1f5f9;
  padding: 40px 20px 80px;
}

.enroll-card {
  background: white;
  border-radius: 20px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.enroll-card-header {
  background: #f8fafc;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: var(--gray);
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 600;
}

.live-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.steps-nav {
  display: flex;
  padding: 20px 24px 0;
  gap: 8px;
}

.step-tab {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  padding-bottom: 12px;
  border-bottom: 3px solid #e2e8f0;
  position: relative;
}

.step-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.step-tab.done {
  color: var(--success);
  border-bottom-color: var(--success);
}

.step-tab .circle {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--gray);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-right: 4px;
}

.step-tab.active .circle {
  background: var(--primary);
  color: white;
}

.step-tab.done .circle {
  background: var(--success);
  color: white;
}

.enroll-body {
  padding: 28px 24px 32px;
}

.enroll-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.enroll-body .sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #f8fafc;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.payment-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
}

.payment-method-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-row .label {
  color: var(--gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-row .value {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  background: #e2e8f0;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: var(--primary);
  color: white;
}

.copy-btn.copied {
  background: var(--success);
  color: white;
}

.upload-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #f8fafc;
  margin: 20px 0;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--primary);
  background: #eff6ff;
}

.upload-zone input {
  display: none;
}

.upload-preview {
  max-width: 100%;
  max-height: 200px;
  margin: 12px auto 0;
  border-radius: 8px;
}

.step-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.secure-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Thank you page */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
  padding: 40px 20px;
  text-align: center;
}

.thankyou-card {
  background: white;
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.thankyou-card h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.thankyou-card p {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

/* Privacy page */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background: white;
  border-radius: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.privacy-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.privacy-content h2 {
  font-size: 1.3rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.privacy-content p, .privacy-content li {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.privacy-content ul {
  padding-left: 20px;
  list-style: disc;
}

/* Responsive */
@media (max-width: 768px) {
  .header-actions .badge-slots {
    display: none;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .module-content {
    padding-left: 20px;
  }
  
  .bonus-card {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-card .bonus-price {
    margin-left: 0;
  }
  
  .cta-final {
    margin: 20px 10px;
    padding: 50px 16px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .price-current {
    font-size: 2rem;
  }
  
  .enroll-body {
    padding: 20px 16px 24px;
  }
}