/* ============================================================
   PROFITORA — Premium Affiliate Landing Page Styles
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a6ef5;
  --primary-dark: #0f52d4;
  --primary-light: #4a90f7;
  --secondary: #0a2540;
  --accent: #f7c948;
  --accent-orange: #ff6b35;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --white: #ffffff;
  --light: #f0f5ff;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --text: #1e293b;
  --border: #e2e8f0;
  --gradient: linear-gradient(135deg, #1a6ef5 0%, #0a2540 100%);
  --gradient-light: linear-gradient(135deg, #4a90f7 0%, #1a6ef5 100%);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2a50 40%, #1a6ef5 100%);
  --shadow-sm: 0 2px 8px rgba(26, 110, 245, 0.1);
  --shadow-md: 0 8px 24px rgba(26, 110, 245, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 110, 245, 0.2);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 90px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, #1a6ef5, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #f7c948, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 110, 245, 0.08);
  color: var(--primary);
  border: 1px solid rgba(26, 110, 245, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.light-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-xl { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gradient-light);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26, 110, 245, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f52d4 0%, #1a6ef5 100%);
  box-shadow: 0 8px 30px rgba(26, 110, 245, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.pulse-btn {
  animation: pulseBtn 2.5s infinite;
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(26, 110, 245, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(26, 110, 245, 0.6), 0 0 0 8px rgba(26, 110, 245, 0.1); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1a6ef5, #00c6ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }

.nav-cta {
  background: var(--gradient-light) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(26, 110, 245, 0.4) !important;
}

.nav-cta:hover {
  box-shadow: 0 8px 25px rgba(26, 110, 245, 0.6) !important;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.15) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 110, 245, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0, 198, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 201, 72, 0.15);
  color: #f7c948;
  border: 1px solid rgba(247, 201, 72, 0.3);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-size: clamp(32px, 6vw, 66px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.trust-item i { color: #f7c948; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-bar i { animation: flame 1s ease infinite alternate; }

@keyframes flame {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

.countdown-inline {
  background: rgba(255,255,255,0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.urgency-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}

.urgency-link:hover { opacity: 0.85; }

/* ============================================================
   PRODUCTS SECTIONS
   ============================================================ */
.products-section { background: var(--white); }
.physical-products-section { background: var(--light-gray); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.products-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-light);
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 110, 245, 0.2);
}

.product-card:hover::before { transform: scaleX(1); }

.featured-card {
  border: 2px solid rgba(26, 110, 245, 0.3);
  background: linear-gradient(135deg, #fff 0%, #f0f5ff 100%);
}

.featured-card::before { transform: scaleX(1); }

.physical-card { border-left: 4px solid var(--success); }
.physical-card::before { background: linear-gradient(135deg, #059669, #10b981); }

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-badge.hot { background: #fee2e2; color: #dc2626; }
.product-badge.new { background: #d1fae5; color: #059669; }
.product-badge.value { background: #fef3c7; color: #d97706; }

.product-icon-wrap { margin-bottom: 16px; }

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.bg-blue { background: linear-gradient(135deg, #1a6ef5, #4a90f7); }
.bg-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.bg-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.bg-green { background: linear-gradient(135deg, #059669, #10b981); }
.bg-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.bg-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.bg-teal { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.bg-navy { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.bg-gold { background: linear-gradient(135deg, #d97706, #f59e0b); }

.product-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
  opacity: 0.8;
}

.product-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-features {
  margin-bottom: 20px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 6px;
  font-weight: 500;
}

.product-features li i {
  color: var(--success);
  font-size: 12px;
  flex-shrink: 0;
}

.btn-group-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--light); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 110, 245, 0.2);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 110, 245, 0.1), rgba(74, 144, 247, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-light);
  color: #fff;
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: #fff; }

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  font-size: 56px;
  font-weight: 900;
  color: rgba(26, 110, 245, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.step-link:hover { gap: 10px; }

.step-arrow {
  color: var(--primary);
  font-size: 24px;
  opacity: 0.4;
  margin-top: 80px;
  flex-shrink: 0;
}

.how-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.featured-testimonial {
  border: 2px solid rgba(26, 110, 245, 0.3);
  background: linear-gradient(135deg, #fff 0%, #f0f5ff 100%);
}

.testimonial-badge {
  background: var(--gradient-light);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars i { color: #f59e0b; font-size: 14px; }

.testimonial-text {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.author-role {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */
.bonus-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2a50 50%, #1a3f7a 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(26, 110, 245, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bonus-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bonus-header { margin-bottom: 50px; }

.text-white { color: #fff !important; }
.text-light { color: rgba(255, 255, 255, 0.7) !important; }

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.bonus-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.bonus-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 110, 245, 0.3), rgba(74, 144, 247, 0.3));
  border: 1px solid rgba(26, 110, 245, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1a6ef5;
  margin: 0 auto 12px;
}

.bonus-value {
  font-size: 12px;
  font-weight: 700;
  color: #f7c948;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bonus-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 14px;
}

.bonus-tag {
  background: rgba(247, 201, 72, 0.15);
  border: 1px solid rgba(247, 201, 72, 0.3);
  color: #f7c948;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* ============================================================
   URGENCY / COUNTDOWN
   ============================================================ */
.urgency-section {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
}

.urgency-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.urgency-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.text-yellow { color: #f7c948; }

.urgency-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.countdown-num {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-separator {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.urgency-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.urgency-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.urgency-feat i { color: #86efac; }

.urgency-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; }

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(26, 110, 245, 0.3); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light); color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); background: rgba(26, 110, 245, 0.04); }

.faq-question i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 14px;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f2ff 100%);
  border-top: 1px solid var(--border);
}

.final-cta-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.final-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

.final-trust span i { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.footer-links-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-section ul li {
  margin-bottom: 10px;
}

.footer-links-section ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links-section ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-legal-links a:hover { color: var(--primary-light); }

.footer-affiliate-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 580px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover { background: #fee2e2; color: #dc2626; }

#modalContent h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
#modalContent p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 10px; }
#modalContent a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gradient-light);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Particle styles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .navbar { padding: 12px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 15px; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-divider { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-container { flex-direction: column; align-items: center; }
  .step-card { min-width: unset; max-width: 100%; width: 100%; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .countdown-timer { gap: 8px; }
  .countdown-block { padding: 12px 16px; min-width: 72px; }
  .countdown-num { font-size: 34px; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .final-cta-btns { flex-direction: column; align-items: center; }

  .urgency-bar { font-size: 12px; gap: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 12px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .product-badge { font-size: 10px; padding: 3px 8px; }
}
