@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --gold: #FFD500;
  --gold-light: #FFE44D;
  --gold-dark: #CC9F00;
  --gold-glow: rgba(255, 213, 0, 0.3);
  --gold-glow-strong: rgba(255, 213, 0, 0.6);
  --bg-dark: #282727;
  --bg-darker: #1e1d1d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(255, 213, 0, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.3);
  --starter: #8B8B8B;
  --bronze: #CD7F32;
  --silver: #C0C0C0;
  --gold-tier: #FFD500;
  --platinum: #E5E4E2;
  --diamond: #B9F2FF;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(255, 213, 0, 0.12);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   SECTION UTILITIES
======================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-darker);
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  background: rgba(255, 213, 0, 0.08);
  border: 1px solid rgba(255, 213, 0, 0.15);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.highlight {
  color: var(--gold);
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 213, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 213, 0, 0.12);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 213, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.3);
}

.nav-panel-btn {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.nav-panel-btn:hover {
  background: var(--gold);
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay .nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 180px 24px 60px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-gradient-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text-side {
  text-align: left;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Panel mockup */
.hero-visual-side {
  position: relative;
}

.hero-panel-mockup {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 213, 0, 0.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel-mockup:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) scale(1.02);
}

.hero-panel-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(30, 30, 30, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-panel-dot.red { background: #ff5f57; }
.hero-panel-dot.yellow { background: #febc2e; }
.hero-panel-dot.green { background: #28c840; }

.hero-panel-topbar-text {
  margin-left: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-panel-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   VIDEO BANNER (Fixed under navbar)
======================================== */
.video-banner {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(135deg, rgba(255, 213, 0, 0.06) 0%, rgba(255, 180, 0, 0.03) 50%, rgba(255, 213, 0, 0.06) 100%);
  border-bottom: 1px solid rgba(255, 213, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.video-banner:hover {
  background: linear-gradient(135deg, rgba(255, 213, 0, 0.12) 0%, rgba(255, 180, 0, 0.06) 50%, rgba(255, 213, 0, 0.12) 100%);
}

.video-banner-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.video-banner-play {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(255, 213, 0, 0.35);
}

.video-banner-play-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 213, 0, 0.3);
  animation: video-ring-pulse 2s ease-in-out infinite;
}

@keyframes video-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

.video-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.video-banner-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.video-banner-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.video-banner-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 213, 0, 0.08);
  border: 1px solid rgba(255, 213, 0, 0.12);
  border-radius: 10px;
  color: var(--gold);
  transition: var(--transition);
}

.video-banner:hover .video-banner-arrow {
  background: rgba(255, 213, 0, 0.15);
  border-color: rgba(255, 213, 0, 0.25);
  transform: translateX(3px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255, 213, 0, 0.06);
  border: 1px solid rgba(255, 213, 0, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 213, 0, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 213, 0, 0); }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 213, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 213, 0, 0.35);
}

.btn-primary svg {
  fill: currentColor;
  stroke: currentColor;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-video:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.play-circle svg {
  fill: var(--gold);
  stroke: none;
}

/* Hero trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Stats bar */
.stats-bar {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   HOW IT WORKS - DETAILED FLOW
======================================== */
.how-it-works-flow {
  max-width: 800px;
  margin: 0 auto 60px;
}

.hiw-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.hiw-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(255, 213, 0, 0.06);
  border: 1px solid rgba(255, 213, 0, 0.15);
  border-radius: 16px;
}

.hiw-step-content {
  flex: 1;
  padding-bottom: 12px;
}

.hiw-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hiw-step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 213, 0, 0.2), rgba(255, 213, 0, 0.05));
  margin: 0 0 0 27px;
}

.hiw-detail-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hiw-detail-box-gold {
  background: rgba(255, 213, 0, 0.04);
  border-color: rgba(255, 213, 0, 0.12);
  color: var(--gold-light);
}

.hiw-detail-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.hiw-detail-icon svg {
  display: block;
}

/* Platform examples in how-it-works */
.hiw-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.hiw-example {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-secondary);
}

.hiw-example-platform {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(255, 213, 0, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Mini tier preview in how-it-works */
.hiw-tier-preview {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hiw-tier-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
}

.hiw-tier-mini-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.hiw-tier-mini-pct {
  color: var(--gold);
  font-weight: 700;
}

/* ========================================
   BENEFITS GRID
======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(255, 213, 0, 0.12);
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 213, 0, 0.06);
  border: 1px solid rgba(255, 213, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--gold);
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   COMMISSION TIERS - 6 TIER SYSTEM
======================================== */
#komisyonlar {
  background: var(--bg-dark);
}

/* Tier progression bar */
.tier-progression {
  max-width: 700px;
  margin: 0 auto 48px;
}

.tier-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.tier-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--starter) 0%, var(--bronze) 20%, var(--silver) 40%, var(--gold-tier) 60%, var(--platinum) 80%, var(--diamond) 100%);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

/* 6 tier grid */
.tiers-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.tier-card-new {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.tier-card-new:hover {
  transform: translateY(-4px);
}

.tier-card-inner {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-card-popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px;
  background: linear-gradient(135deg, var(--diamond), #7eddff);
  color: #000;
}

.tier-card-top {
  padding: 28px 24px 20px;
  text-align: center;
}

.tier-level-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-level-badge-hot {
  color: var(--platinum);
}

.tier-level-badge-diamond {
  color: var(--diamond);
}

.tier-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 14px;
}

.tier-icon-starter { background: rgba(139, 139, 139, 0.1); color: var(--starter); border: 1px solid rgba(139, 139, 139, 0.15); }
.tier-icon-bronze  { background: rgba(205, 127, 50, 0.1);  color: var(--bronze);  border: 1px solid rgba(205, 127, 50, 0.15); }
.tier-icon-silver  { background: rgba(192, 192, 192, 0.1); color: var(--silver);  border: 1px solid rgba(192, 192, 192, 0.15); }
.tier-icon-gold    { background: rgba(255, 213, 0, 0.1);   color: var(--gold-tier); border: 1px solid rgba(255, 213, 0, 0.15); }
.tier-icon-platinum { background: rgba(229, 228, 226, 0.08); color: var(--platinum); border: 1px solid rgba(229, 228, 226, 0.12); }
.tier-icon-diamond { background: rgba(185, 242, 255, 0.08); color: var(--diamond); border: 1px solid rgba(185, 242, 255, 0.12); }

.tier-card-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.tier-card-pct {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.tier-starter .tier-card-pct { color: var(--starter); }
.tier-bronze .tier-card-pct  { color: var(--bronze); }
.tier-silver .tier-card-pct  { color: var(--silver); }
.tier-gold .tier-card-pct    { color: var(--gold-tier); }
.tier-platinum .tier-card-pct { color: var(--platinum); }
.tier-diamond .tier-card-pct { color: var(--diamond); }

.tier-card-range {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.tier-card-bottom {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-glass);
  flex: 1;
}

.tier-perk-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
}

.tier-check-icon {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Tier hover borders */
.tier-starter:hover .tier-card-inner { border-color: rgba(139, 139, 139, 0.25); }
.tier-bronze:hover .tier-card-inner  { border-color: rgba(205, 127, 50, 0.25); }
.tier-silver:hover .tier-card-inner  { border-color: rgba(192, 192, 192, 0.25); }
.tier-gold:hover .tier-card-inner    { border-color: rgba(255, 213, 0, 0.25); }
.tier-platinum:hover .tier-card-inner { border-color: rgba(229, 228, 226, 0.2); }
.tier-diamond:hover .tier-card-inner { border-color: rgba(185, 242, 255, 0.25); box-shadow: 0 0 40px rgba(185, 242, 255, 0.06); }

/* Diamond special glow */
.tier-diamond .tier-card-inner {
  border-color: rgba(185, 242, 255, 0.1);
}

/* ========================================
   TIER EXPLANATION
======================================== */
.tier-explanation {
  margin-bottom: 48px;
}

.tier-explanation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.tier-explanation-left h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.tier-explanation-left p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tier-explanation-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-exp-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.tier-exp-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 213, 0, 0.08);
  border: 1px solid rgba(255, 213, 0, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.tier-example-scenario {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-example-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.tier-example-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.tier-example-row-highlight {
  background: rgba(255, 213, 0, 0.04);
  border-color: rgba(255, 213, 0, 0.12);
}

.tier-example-month {
  font-weight: 700;
  color: var(--text-primary);
  min-width: 50px;
}

.tier-example-detail {
  color: var(--text-secondary);
  flex: 1;
  text-align: center;
}

.tier-example-result {
  font-weight: 700;
  color: var(--gold);
  min-width: 100px;
  text-align: right;
}

/* ========================================
   EARNINGS CALCULATOR
======================================== */
.calc-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.calc-heading {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.calc-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.calc-field-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.calc-number-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-number-input:focus {
  border-color: var(--border-gold);
}

.calc-slider {
  width: 100%;
  margin: 16px 0;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 213, 0, 0.3);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.calc-quick-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.calc-quick-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.calc-quick-btn:hover {
  border-color: rgba(255, 213, 0, 0.3);
  color: var(--gold);
}

.calc-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 213, 0, 0.02);
  border: 1px solid rgba(255, 213, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.calc-result-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.calc-result-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
}

.calc-result-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.calc-breakdown-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.calc-tiers-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.calc-tier-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}

.calc-tier-pill.active {
  color: #000;
  font-weight: 700;
}

.calc-tier-pill.starter.active { background: var(--starter); border-color: var(--starter); }
.calc-tier-pill.bronze.active  { background: var(--bronze); border-color: var(--bronze); }
.calc-tier-pill.silver.active  { background: var(--silver); border-color: var(--silver); color: #000; }
.calc-tier-pill.gold.active    { background: var(--gold-tier); border-color: var(--gold-tier); }
.calc-tier-pill.platinum.active { background: var(--platinum); border-color: var(--platinum); color: #000; }
.calc-tier-pill.diamond.active { background: var(--diamond); border-color: var(--diamond); color: #000; }

/* ========================================
   PLATFORMS
======================================== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  border-color: rgba(255, 213, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.platform-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.platform-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-logo-box img,
.platform-logo-box svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform-badges {
  display: flex;
  gap: 6px;
}

.p-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.p-badge-popular   { background: rgba(255, 213, 0, 0.12); color: var(--gold); }
.p-badge-viral     { background: rgba(255, 71, 87, 0.12); color: #ff4757; }
.p-badge-passive   { background: rgba(46, 213, 115, 0.12); color: #2ed573; }
.p-badge-community { background: rgba(41, 182, 246, 0.12); color: #29b6f6; }
.p-badge-fast      { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }
.p-badge-easy      { background: rgba(46, 213, 115, 0.12); color: #2ed573; }
.p-badge-medium    { background: rgba(255, 213, 0, 0.12); color: var(--gold); }
.p-badge-hard      { background: rgba(255, 71, 87, 0.12); color: #ff4757; }

.platform-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.platform-earnings {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.earn-label {
  font-size: 12px;
  color: var(--text-muted);
}

.earn-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.platform-tips {
  margin-bottom: 16px;
  flex: 1;
}

.tip-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  line-height: 1.5;
}

.tip-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.platform-strategy-box {
  background: rgba(255, 213, 0, 0.03);
  border: 1px solid rgba(255, 213, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.platform-strategy-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.platform-strategy-box p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.platform-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.platform-footer-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 213, 0, 0.1);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.t-stars span {
  color: var(--gold);
  font-size: 14px;
}

.t-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 213, 0, 0.08);
  border: 1px solid rgba(255, 213, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}

.t-name {
  font-size: 14px;
  font-weight: 600;
}

.t-role {
  font-size: 12px;
  color: var(--text-muted);
}

.t-earn {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}

/* ========================================
   FAQ
======================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--bg-glass);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-icon-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.open .faq-icon-btn {
  transform: rotate(45deg);
  color: var(--gold);
  background: rgba(255, 213, 0, 0.1);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-body {
  max-height: 300px;
}

.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   APPLICATION FORM
======================================== */
#basvur {
  background: var(--bg-dark);
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-gold);
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #111;
  color: #fff;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 16px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  box-shadow: 0 8px 30px rgba(255, 213, 0, 0.3);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 32px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .tiers-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tier-explanation-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 170px 20px 50px;
    min-height: auto;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text-side {
    text-align: center;
  }

  .hero-panel-mockup {
    transform: none;
  }

  .hero-panel-mockup:hover {
    transform: scale(1.01);
  }

  .video-banner-desc {
    display: none;
  }

  .video-banner-title {
    font-size: 12px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .tiers-grid-6 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .calc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 28px 20px;
  }

  .calc-box {
    padding: 28px 20px;
  }

  .tier-explanation-inner {
    padding: 24px 20px;
  }

  .hiw-example-grid {
    grid-template-columns: 1fr;
  }

  .hiw-tier-preview {
    gap: 4px;
  }

  .hiw-tier-mini {
    padding: 4px 10px;
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hiw-step {
    gap: 16px;
  }

  .hiw-step-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
  }

  .hiw-connector {
    margin-left: 21px;
    height: 24px;
  }

  .tier-progress-labels {
    font-size: 10px;
  }

  .calc-result-amount {
    font-size: 36px;
  }

  .tier-example-row {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .tier-example-result {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .stats-bar {
    padding: 24px 16px;
  }

  .calc-quick-btns {
    gap: 4px;
  }

  .calc-quick-btn {
    padding: 4px 8px;
    font-size: 10px;
  }
}
