/* =============================================================================
   SHS MARKETING — PROFESSIONAL THEME
   Brand: Navy #0D1B3E | Gold #C9972C
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================= */
:root {
  /* Brand */
  --navy:        #0D1B3E;
  --navy-mid:    #1B2D5B;
  --navy-light:  #243B73;
  --gold:        #C9972C;
  --gold-light:  #E2B84A;
  --gold-pale:   #F5E6C0;
  --gold-dim:    #A37820;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F7F5EF;
  --text:        #0D1B3E;
  --text-muted:  #5C6B8A;
  --border:      #DDD5B0;
  --border-dark: rgba(255, 255, 255, 0.10);

  /* Semantic */
  --success: #1A7A3C;
  --danger:  #B91C1C;

  /* Shadows */
  --shadow-gold: 0 8px 32px rgba(201, 151, 44, 0.28);
  --shadow-navy: 0 8px 32px rgba(13, 27, 62, 0.22);
  --shadow-card: 0 2px 16px rgba(13, 27, 62, 0.10);

  /* Motion */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================================
   RESET
   ============================================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* =============================================================================
   NAVBAR
   ============================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 151, 44, 0.20);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline.small {
  padding: 7px 18px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(201, 151, 44, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary.small  { padding: 7px 18px; font-size: 13px; }
.btn-primary.large  { padding: 15px 40px; font-size: 15px; border-radius: 8px; }
.btn-primary.full   { width: 100%; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 13px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-secondary.large { padding: 15px 40px; }

.btn-small {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-small:hover { background: var(--gold-light); }

/* =============================================================================
   HERO
   ============================================================================= */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
  overflow: hidden;
  margin-top: 72px;
}

/* Diagonal gold slice */
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 130%;
  background: linear-gradient(160deg, rgba(201, 151, 44, 0.07) 0%, rgba(201, 151, 44, 0.03) 60%, transparent 100%);
  border-left: 1px solid rgba(201, 151, 44, 0.12);
  transform: skewX(-8deg);
  pointer-events: none;
}

/* Geometric grid lines */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 151, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 151, 44, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-background { display: none; }

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 44, 0.12);
  border: 1px solid rgba(201, 151, 44, 0.30);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-text h1 {
  font-family: 'Sora', sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.10;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text h1 .gold-word {
  color: var(--gold-light);
  position: relative;
}

.hero-text h1 .gold-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 44px;
  line-height: 1.80;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.stat:first-child { padding-left: 0; }

.stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 151, 44, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 151, 44, 0.22);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  transition: var(--transition);
}

.float-card:hover {
  border-color: var(--gold);
  background: rgba(201, 151, 44, 0.08);
  transform: translateY(-4px);
}

.float-card i {
  font-size: 28px;
  color: var(--gold-light);
}

.float-card p {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
}

.card-1 { width: 160px; height: 160px; bottom: 30px; left: 0px;   animation: floatA 7s ease-in-out infinite; }
.card-2 { width: 160px; height: 160px; bottom: 30px; left: 200px;    animation: floatB 8s ease-in-out infinite; }
.card-3 { width: 160px; height: 160px; bottom: 30px; left: 400px;  animation: floatA 9s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(18px); }
}

/* =============================================================================
   STATS BANNER
   ============================================================================= */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.stats-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.stats-item:last-child { border-right: none; }

.stats-item:hover { background: var(--white); }

.stats-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-gold);
}

.stats-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stats-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================================================
   SECTION SHARED STYLES
   ============================================================================= */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
  margin: 16px auto 56px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* =============================================================================
   HOW IT WORKS
   ============================================================================= */
.how-it-works {
  padding: 100px 40px;
  background: var(--white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.step-item {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-item:hover { background: var(--navy); }

.step-item:hover .step-item-title,
.step-item:hover p { color: rgba(255, 255, 255, 0.80); }

.step-item:hover .step-number {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--navy);
}

.step-item:hover .step-icon {
  color: var(--gold-light);
  opacity: 0.4;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.step-icon {
  font-size: 42px;
  color: var(--navy);
  opacity: 0.08;
  margin: 16px 0;
  transition: var(--transition);
}

.step-item-title,
.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: var(--transition);
}

.step-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  transition: var(--transition);
}

/* =============================================================================
   PREMIUM FEATURES
   ============================================================================= */
.premium-features {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.premium-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 151, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 151, 44, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.premium-features .section-title { color: var(--white); }
.premium-features .section-title::after { background: linear-gradient(90deg, var(--gold), transparent); }

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 151, 44, 0.15);
  border-radius: 14px;
  padding: 36px 28px;
  transition: var(--transition);
}

.feature-box:hover {
  background: rgba(201, 151, 44, 0.06);
  border-color: rgba(201, 151, 44, 0.40);
  transform: translateY(-6px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-header i {
  font-size: 26px;
  color: var(--gold-light);
  min-width: 36px;
}

.feature-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.feature-box p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-list { list-style: none; }

.feature-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list i { color: var(--gold); font-size: 11px; }

/* =============================================================================
   COMMISSION
   ============================================================================= */
.commission-section {
  padding: 100px 40px;
  background: var(--white);
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.commission-card {
  background: var(--navy);
  border: 1px solid rgba(201, 151, 44, 0.20);
  border-radius: 16px;
  padding: 44px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.commission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
}

.commission-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 151, 44, 0.50);
  box-shadow: var(--shadow-gold);
}

.commission-level {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.commission-rate {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 14px 0;
}

.commission-card p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  margin-bottom: 20px;
}

.commission-badge {
  display: inline-block;
  background: rgba(201, 151, 44, 0.15);
  border: 1px solid rgba(201, 151, 44, 0.30);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================================================
   DASHBOARD PREVIEW
   ============================================================================= */
.dashboard-section {
  padding: 100px 40px;
  background: var(--off-white);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy);
}

.dashboard-card.earnings { border-left-color: var(--gold); }
.dashboard-card.members  { border-left-color: var(--navy-mid); }
.dashboard-card.payout   { border-left-color: var(--gold-dim); }
.dashboard-card.network  { border-left-color: var(--navy-light); }

.dashboard-card h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.earnings-value,
.members-value,
.payout-value {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0;
}

.earnings-growth,
.members-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}

.network-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0;
}

.dashboard-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.testimonials-section {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 151, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 151, 44, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title::after { background: linear-gradient(90deg, var(--gold), transparent); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 151, 44, 0.14);
  border-radius: 16px;
  padding: 30px 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(201, 151, 44, 0.06);
  border-color: rgba(201, 151, 44, 0.35);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-header img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.role {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
}

.rating {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
}

/* =============================================================================
   PRICING
   ============================================================================= */
.pricing-section {
  padding: 100px 40px;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-desc { color: var(--white); }

.pricing-card.featured .pricing-list li {
  color: rgba(255, 255, 255, 0.70);
  border-color: rgba(255, 255, 255, 0.07);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--navy);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 18px;
}

.price {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-dim);
  margin: 16px 0;
}

.price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-list li {
  padding: 11px 0;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child  { border-bottom: none; }
.pricing-list i.fa-check { color: var(--success); }
.pricing-list i.fa-times  { color: #CBD5E1; }

/* =============================================================================
   FAQ
   ============================================================================= */
.faq-section {
  padding: 100px 40px;
  background: var(--white);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold-dim); }

.faq-question i {
  color: var(--gold-dim);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
  line-height: 1.80;
  font-size: 15px;
}

/* =============================================================================
   CTA FINAL
   ============================================================================= */
.cta-final {
  padding: 120px 40px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 151, 44, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'Sora', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta-final p {
  font-size: 18px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.60);
  position: relative;
  z-index: 1;
}

.journey-link { position: relative; z-index: 1; }

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: #080F1F;
  color: rgba(255, 255, 255, 0.50);
  padding: 72px 40px 0;
  border-top: 1px solid rgba(201, 151, 44, 0.14);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}

.footer-column h4 {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.footer-column ul { list-style: none; }

.footer-column ul li { margin-bottom: 10px; }

.footer-column a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}

.footer-column a:hover { color: var(--gold-light); }

.footer-column ul li i {
  color: var(--gold-dim);
  width: 18px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* =============================================================================
   MODAL
   ============================================================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(13, 27, 62, 0.80);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: var(--white);
  margin: 6% auto;
  padding: 48px 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-gold);
  border-top: 4px solid var(--gold);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.close {
  float: right;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close:hover { color: var(--navy); }

.modal-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 44, 0.12);
}

.form-group.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-group.checkbox input  { width: auto; margin-top: 3px; cursor: pointer; }
.form-group.checkbox label  { font-weight: 400; font-size: 13px; color: var(--text-muted); margin: 0; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .hero-content       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual        { height: 280px; }
  .hero-text h1       { font-size: 44px; }
  .steps-container,
  .commission-grid,
  .dashboard-preview,
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-container { grid-template-columns: repeat(2, 1fr); }
  .stats-banner       { grid-template-columns: repeat(2, 1fr); }
  .footer-content     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar           { height: 62px; }
  .nav-container    { padding: 0 20px; }
  .nav-menu         { display: none; }
  .hero-section     { padding: 80px 20px 60px; }
  .hero-text h1     { font-size: 34px; }
  .hero-subtitle    { font-size: 15px; }

  .hero-stats { flex-direction: column; gap: 16px; }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0 0 16px;
  }

  .stat:last-child { border-bottom: none; padding: 0; }

  .hero-buttons                    { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary     { width: 100%; justify-content: center; }

  .how-it-works,
  .premium-features,
  .commission-section,
  .dashboard-section,
  .testimonials-section,
  .pricing-section,
  .faq-section,
  .cta-final { padding: 64px 20px; }

  .section-title { font-size: 28px; }

  .steps-container,
  .features-container,
  .commission-grid,
  .dashboard-preview,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }

  .stats-banner               { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured      { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .cta-final h2               { font-size: 32px; }
  .footer                     { padding: 48px 20px 0; }
  .footer-content             { grid-template-columns: 1fr 1fr; gap: 28px; }
  .modal-content              { margin: 20% auto; padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero-text h1               { font-size: 28px; }
  .stats-banner               { grid-template-columns: 1fr; }
  .footer-content             { grid-template-columns: 1fr; }
  .cta-final h2               { font-size: 24px; }
  .btn-primary.large,
  .btn-secondary.large        { padding: 13px 28px; }
}