/* ============================================================
   Agentic Jedi — Main Stylesheet
   ============================================================ */

:root {
  --bg: #080a14;
  --bg-card: #0d0f1e;
  --bg-dark: #05060e;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 200, 255, 0.28);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #475569;
  --accent: #00C8FF;
  --accent-2: #4477EE;
  --accent-3: #8B3AD6;
  --accent-glow: rgba(0, 200, 255, 0.12);
  --green: #48bb78;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(0, 200, 255, 0.1);
  --max-w: 1140px;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 10, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-icon { display: flex; align-items: center; }
.hero-logo {
  height: 200px;
  width: auto;
  max-width: 560px;
  margin: 0 auto 8px;
}
.logo-img {
  height: 70px;
  width: auto;
  max-width: none;
}
.logo-img-footer {
  height: 80px;
  width: auto;
  max-width: none;
}
.logo-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
  margin-left: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #33DFFF 0%, #6699FF 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(0, 200, 255, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.btn-nav {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-nav:hover {
  background: linear-gradient(135deg, #33DFFF 0%, #6699FF 100%);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.supported-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.supported-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

/* Terminal */
.terminal-card {
  max-width: 640px;
  margin: 0 auto;
  background: #08091a;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  text-align: left;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0b0c1c;
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.terminal-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 4px;
}
.terminal-body {
  padding: 20px 20px 24px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 2;
}
.terminal-body p { display: block; }
.t-dim { color: var(--text-muted); }
.t-cmd { color: var(--accent); }
.t-out { color: var(--text-dim); }
.t-success { color: var(--green); margin-top: 4px; }

/* Chat Mockup (Hero) */
.chat-card {
  max-width: 560px;
  margin: 0 auto;
  background: #08091a;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  text-align: left;
}
.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  display: flex;
}
.chat-you { justify-content: flex-end; }
.chat-ai  { justify-content: flex-start; }
.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.chat-bubble-you {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.22), rgba(68, 119, 238, 0.18));
  border: 1px solid rgba(0, 200, 255, 0.25);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.chat-bubble-ai {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.chat-bubble-ai strong { color: var(--text); }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: var(--border-accent); }
.pain-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text);
}
.pain-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Use cases note */
.use-cases-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.use-cases-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.use-cases-note a:hover { color: #33DFFF; }

/* CTA note */
.cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
}

/* Contact form */
.contact-form {
  width: 100%;
  max-width: 620px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}
.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 200, 255, 0.05);
}
.form-success {
  display: none;
  margin-top: 8px;
  padding: 14px 18px;
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: 8px;
  color: #68d391;
  font-size: 0.95rem;
  text-align: center;
}
.form-success.visible { display: block; }
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  text-align: center;
}
.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-dark {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--border-accent); }
.step-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.8;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.step-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,140,0,0.3), rgba(232,48,144,0.15));
  margin-top: 72px;
  position: relative;
}
.step-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-dark);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feature-card:hover { background: #0a0b1a; }
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   WHY LOCAL — SPLIT
   ============================================================ */
.why-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.why-desc {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.7;
}
.why-list {
  margin-bottom: 36px;
}
.why-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.why-list li:last-child { border-bottom: none; }
.why-list strong { color: var(--text); }

/* Architecture card */
.arch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.arch-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.arch-row-bottom { flex-wrap: wrap; justify-content: center; }
.arch-box {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.arch-you { background: rgba(0, 200, 255, 0.1); color: var(--accent); border-color: var(--border-accent); }
.arch-chat { background: rgba(255,255,255,0.04); }
.arch-openclaw {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.12), rgba(139, 58, 214, 0.12));
  border-color: rgba(0, 200, 255, 0.3);
  color: var(--text);
  font-size: 1rem;
  padding: 12px 24px;
}
.arch-model { background: rgba(72, 187, 120, 0.08); color: #68d391; border-color: rgba(72,187,120,0.2); }
.arch-tools { background: rgba(68, 119, 238, 0.08); color: #f472b6; border-color: rgba(68,119,238,0.2); }
.arch-arrow { color: var(--text-muted); font-size: 1.2rem; }
.arch-down { color: var(--text-muted); font-size: 1.2rem; }
.arch-highlight {
  text-align: center;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 32px;
}
.arch-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 8px;
}
.arch-sub {
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 600;
}

/* ============================================================
   BEFORE / AFTER CARD (Why Agentic Jedi)
   ============================================================ */
.before-after-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.ba-body {
  display: flex;
  gap: 0;
  padding: 24px;
}
.ba-col {
  flex: 1;
}
.ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ba-label-after {
  color: var(--accent);
}
.ba-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-list li {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.ba-divider {
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  opacity: 0.5;
}
.ba-footer {
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  background: rgba(0, 200, 255, 0.04);
}
.ba-footer strong {
  color: var(--accent);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--border-accent); }
.pricing-featured {
  border-color: rgba(0, 200, 255, 0.4);
  background: linear-gradient(160deg, rgba(0, 200, 255, 0.06) 0%, var(--bg-card) 60%);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px rgba(0, 200, 255, 0.2), var(--shadow-glow);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.pricing-platform {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dim);
}
.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.price-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.875rem;
  padding: 7px 0;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.dim {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-note {
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.pricing-note strong { color: var(--text); }

/* ============================================================
   ONGOING SUPPORT
   ============================================================ */
.addons-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 48px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.2s;
}
.support-card:hover { border-color: var(--border-accent); }
.support-featured {
  border-color: rgba(0, 200, 255, 0.4);
  background: linear-gradient(160deg, rgba(0, 200, 255, 0.06) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 0 1px rgba(0, 200, 255, 0.2), var(--shadow-glow);
}
.support-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.support-icon { font-size: 2rem; }
.support-body { flex: 1; }
.support-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.support-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 14px;
}
.support-amount {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.support-period {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.support-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.support-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.support-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .support-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-accent); }
.testimonial-stars { color: #f6ad55; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  text-align: center;
  padding: 64px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 200, 255, 0.12) 0%, rgba(68, 119, 238, 0.06) 50%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand {
  flex: 0 0 240px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 100px 0 60px; }
  .steps {
    flex-direction: column;
    gap: 20px;
  }
  .step-connector { display: none; }

  .why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 32px;
  }
  .pricing-featured { transform: none; }

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

  .features-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-logos { gap: 8px; }
}

/* ============================================================
   FADE-IN ANIMATIONS (JS triggered)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV MOBILE MENU (JS toggled)
   ============================================================ */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 160px; left: 0; right: 0;
  background: rgba(8, 10, 20, 0.97);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}
.nav.open .nav-links a {
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.nav.open .nav-links li:last-child a { border-bottom: none; }
