/* ============================================
   GSC DOJO — Main Stylesheet
   ============================================ */

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

:root {
  --bg: #ffffff;
  --bg-2: #f4f8ff;
  --bg-3: #e8efff;
  --border: rgba(45,90,200,0.1);
  --border-hover: rgba(45,90,200,0.22);
  --text: #0d1d3a;
  --text-muted: #4a637d;
  --text-dim: #8aa0b8;
  --orange: #f5c518;
  --orange-dark: #d4a017;
  --orange-glow: rgba(245,197,24,0.25);
  --trust-blue: #2d7cf6;
  --trust-blue-dark: #1a65d6;
  --trust-blue-glow: rgba(45,124,246,0.3);
  --green: #16a34a;
  --green-glow: rgba(22,163,74,0.2);
  --blue: #6366f1;
  --blue-glow: rgba(99,102,241,0.2);
  --purple: #a855f7;
  --purple-glow: rgba(168,85,247,0.2);
  --red: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --shadow: 0 2px 8px rgba(45,90,200,0.07), 0 1px 3px rgba(45,90,200,0.04);
  --shadow-md: 0 6px 20px rgba(45,90,200,0.1), 0 2px 6px rgba(45,90,200,0.06);
  --shadow-lg: 0 16px 48px rgba(45,90,200,0.13);
}

html { scroll-behavior: smooth; }

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

/* ==================
   UTILITIES
   ================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #5ba4ff 0%, #2d7cf6 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--trust-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ==================
   BUTTONS
   ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font);
}

.btn-primary {
  background: var(--trust-blue);
  color: #fff;
  box-shadow: 0 0 0 0 var(--trust-blue-glow);
}
.btn-primary:hover {
  background: var(--trust-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--trust-blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(45,90,200,0.05);
  border-color: var(--trust-blue);
  color: var(--trust-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }
.btn-xl { padding: 18px 36px; font-size: 17px; border-radius: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ==================
   NAV
   ================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0 24px;
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(45,90,200,0.07);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--text); background: rgba(45,90,200,0.07); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-mobile a:hover { color: var(--text); background: rgba(45,90,200,0.07); }
.nav-mobile.open { display: flex; }

/* ==================
   HERO
   ================== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 130% 70% at 60% -5%, #d8e8ff 0%, #ffffff 65%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,124,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,124,246,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

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

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2d7cf6 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-60%);
  opacity: 0.12;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: 100px; right: -100px;
  opacity: 0.08;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: 200px; left: -50px;
  opacity: 0.08;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1f3c;
  border: 1px solid rgba(45,124,246,0.35);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(13,31,60,0.18);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.desktop-br { display: block; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-avatars {
  display: flex;
}

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: linear-gradient(135deg, #f5c518, #d4a017);
}

.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #f5c518, #d4a017); }
.av2 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.av3 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.av4 { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.av5 { background: linear-gradient(135deg, #4f8ef7, #f5c518); }

.proof-text { display: flex; flex-direction: column; }
.proof-stars { color: #fbbf24; font-size: 14px; letter-spacing: 1px; }
.proof-text span { font-size: 13px; color: var(--text-muted); }
.proof-text strong { color: var(--text); }

/* HERO SCREENSHOT */
.hero-screenshot {
  position: relative;
  margin-top: 64px;
  max-width: 900px;
}

.screenshot-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(45,124,246,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.screenshot-frame {
  position: relative;
  z-index: 1;
  background: #0f2240;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10,30,80,0.22), 0 0 0 1px rgba(255,255,255,0.06);
}

.screenshot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0a1628;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.address-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: #4e6a8a;
  max-width: 280px;
  margin: 0 auto;
}

.screenshot-content { padding: 20px; }

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.mock-logo { font-weight: 700; font-size: 15px; color: #eef4ff; }

.mock-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 4px;
}

.mock-tab {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #90aacb;
  cursor: pointer;
}

.mock-tab.active {
  background: var(--trust-blue);
  color: #fff;
  font-weight: 600;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px;
}

.stat-label { font-size: 11px; color: #4e6a8a; margin-bottom: 6px; }
.stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #eef4ff; }
.stat-value.green { color: #22c55e; }
.stat-value.orange { color: var(--orange); }
.stat-change { font-size: 11px; color: #4e6a8a; margin-top: 4px; }

.mock-table {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 10px 16px;
  font-size: 13px;
  color: #eef4ff;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}

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

.header-row {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4e6a8a;
  background: rgba(255,255,255,0.03);
}

.pos { color: #90aacb; font-weight: 500; }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-high { background: rgba(34,197,94,0.15); color: var(--green); }
.tag-med { background: rgba(245,197,24,0.15); color: var(--orange); }
.tag-low { background: rgba(100,116,139,0.15); color: var(--text-dim); }

/* ==================
   TRUST BAR
   ================== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar .container { text-align: center; }

.trust-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.trust-logo:hover { color: var(--text-muted); }

/* ==================
   PROBLEM SECTION
   ================== */
.problem-section {
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.problem-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ==================
   FEATURES
   ================== */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45,124,246,0.05) 50%, transparent 100%);
}

.features-section .section-sub { margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,124,246,0.02) 0%, rgba(168,85,247,0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before { opacity: 1; }

.feature-lg {
  grid-column: span 2;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap.orange { background: rgba(245,197,24,0.15); color: var(--orange); }
.feature-icon-wrap.blue { background: rgba(99,102,241,0.15); color: var(--blue); }
.feature-icon-wrap.green { background: rgba(34,197,94,0.15); color: var(--green); }
.feature-icon-wrap.purple { background: rgba(168,85,247,0.15); color: var(--purple); }

.feature-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(245,197,24,0.15);
  color: var(--orange);
  border: 1px solid rgba(245,197,24,0.25);
}

.feature-badge.new {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border-color: rgba(34,197,94,0.25);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 16px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-visual {
  margin-top: 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.opp-list { display: flex; flex-direction: column; gap: 8px; }

.opp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.opp-kw { flex: 1; color: var(--text); font-weight: 500; }
.opp-pos { color: var(--text-dim); font-size: 12px; }

.workspace-preview { display: flex; flex-direction: column; gap: 10px; }

.ws-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.ws-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.green-dot { background: var(--green); }
.orange-dot { background: var(--orange); }
.blue-dot { background: var(--blue); }

/* ==================
   HOW IT WORKS
   ================== */
.how-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-2);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--trust-blue);
  background: rgba(45,124,246,0.1);
  border: 1px solid rgba(45,124,246,0.25);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.step-line {
  flex: 0.5;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,124,246,0.4) 0%, rgba(45,124,246,0.1) 100%);
  margin-top: 26px;
  max-width: 100px;
}

/* ==================
   FREE TIER
   ================== */
.free-tier-section { padding: 100px 0; }

.free-tier-card {
  position: relative;
  background: linear-gradient(135deg, rgba(45,124,246,0.07) 0%, rgba(168,85,247,0.07) 100%);
  border: 1px solid rgba(45,124,246,0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
}

.free-tier-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,124,246,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.free-tier-inner { position: relative; z-index: 1; max-width: 620px; }

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,124,246,0.1);
  border: 1px solid rgba(45,124,246,0.3);
  color: var(--trust-blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.free-tier-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.free-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.free-sub strong { color: var(--text); }

.free-ctas { margin: 32px 0 28px; }

.waitlist-form { margin: 32px 0 28px; }

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}

.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--trust-blue); box-shadow: 0 0 0 3px rgba(45,124,246,0.15); background: rgba(255,255,255,0.09); }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.donation-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 4px;
}

.donation-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.donation-note strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.plan-donation-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
  font-style: italic;
}

.plan-donation-note svg { color: var(--orange); flex-shrink: 0; }

/* SUCCESS STATE */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
}

.form-success.show { display: flex; }

/* ==================
   TESTIMONIALS
   ================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.featured-testimonial {
  background: var(--bg-2);
  border-color: rgba(45,124,246,0.2);
}

.stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-av1 { background: linear-gradient(135deg, #f5c518, #d4a017); }
.t-av2 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.t-av3 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.t-av4 { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.t-av5 { background: linear-gradient(135deg, #4f8ef7, #f5c518); }
.t-av6 { background: linear-gradient(135deg, #0ea5e9, #22c55e); }

.t-name { font-weight: 700; font-size: 14px; }
.t-role { font-size: 12px; color: var(--text-dim); }

/* ==================
   PRICING
   ================== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 48px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.save-badge {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(45,124,246,0.3);
  border-color: var(--trust-blue);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--trust-blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.amount-free {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--green);
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.pricing-featured {
  background: var(--bg);
  border-color: var(--trust-blue);
  box-shadow: 0 0 0 1px rgba(45,124,246,0.25), 0 12px 48px rgba(45,124,246,0.14);
  transform: translateY(-8px);
}

.pricing-featured:hover { transform: translateY(-12px); }

.plan-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--trust-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 48px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}

.currency { font-size: 22px; font-weight: 700; color: var(--text-muted); margin-top: 4px; }
.amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.period { font-size: 16px; color: var(--text-muted); margin-left: 4px; }

.plan-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.plan-feature-no { opacity: 0.4; text-decoration: line-through; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-dim);
}

.pricing-note strong { color: var(--text-muted); }

/* ==================
   FAQ
   ================== */
.faq-section { padding: 100px 0; }

.faq-list {
  max-width: 740px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-item.open { border-color: var(--border-hover); }

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

.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ==================
   CTA SECTION
   ================== */
.cta-section { padding: 60px 0 100px; }

.cta-card {
  position: relative;
  background: #0d1f3c;
  border: 1px solid rgba(45,124,246,0.25);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.orb-cta-1 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,124,246,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.orb-cta-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #eef4ff;
}

.cta-card p {
  font-size: 17px;
  color: #90aacb;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-card .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}

.cta-card .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.cta-note { color: rgba(255,255,255,0.35); }

.cta-btns { position: relative; z-index: 1; }
.cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ==================
   FOOTER
   ================== */
.footer {
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { flex: 0 0 280px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }

.footer-links-group { flex: 1; display: flex; gap: 40px; flex-wrap: wrap; }

.footer-col { min-width: 140px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer-love { font-style: italic; }

.footer .logo-text { color: #ffffff; }

/* ==================
   SCROLL REVEAL
   ================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-column: span 2; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .table-row { grid-template-columns: 2fr 1fr 1fr; }
  .table-row span:nth-child(4) { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .desktop-br { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-title { letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .mock-tabs { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: span 1; }

  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-line { display: none; }

  .pricing-grid,
  .pricing-grid-2 { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .free-tier-card { padding: 36px 24px; }

  .cta-card { padding: 48px 24px; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { flex: none; }
  .footer-links-group { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { flex-direction: column; }
  .form-input { min-width: 0; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 11px; }
  .trust-logos { gap: 24px; }
  .trust-logo { font-size: 15px; }
  .problem-grid { grid-template-columns: 1fr; }
}
