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

:root {
  --primary: #69db7c;
  --primary-dark: #52b665;
  --primary-glow: rgba(105, 219, 124, 0.15);
  --primary-glow-strong: rgba(105, 219, 124, 0.25);
  --blue: #4dabf7;
  --yellow: #ffd43b;
  --red: #FF4B4B;
  --bg-main: #2b2b2b;
  --bg-secondary: #363636;
  --bg-dark: #1e1e1e;
  --bg-darker: #151515;
  --bg-card: #323232;
  --bg-card-hover: #3a3a3a;
  --text-primary: #f0f0f0;
  --text-muted: #999999;
  --text-faint: #666666;
  --border: #555555;
  --border-light: #444444;
  --border-subtle: #333333;
  --font-main: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  --max-width: 1200px;
  --nav-height: 70px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(105, 219, 124, 0.1);
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

code, pre {
  font-family: var(--font-mono);
  background: var(--bg-dark);
  border-radius: var(--radius);
}

code { padding: 2px 6px; font-size: 0.9em; color: var(--primary); }

pre {
  padding: 20px;
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  margin: 16px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

pre code { padding: 0; background: none; color: var(--text-primary); }

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

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(43, 43, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(43, 43, 43, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-logo {
  margin-right: auto;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--bg-dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #7ee890; transform: translateY(-1px); box-shadow: var(--shadow-glow); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── UK MAP VISUAL ───────────────────────────── */
.uk-map-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.uk-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(105, 219, 124, 0.08));
}

.uk-outline {
  fill: url(#mapGrad);
  stroke: #69db7c;
  stroke-width: 1.2;
  stroke-opacity: 0.5;
  stroke-linejoin: round;
}

.uk-glow {
  fill: none;
  stroke: #69db7c;
  stroke-width: 6;
  stroke-opacity: 0.06;
  stroke-linejoin: round;
  filter: url(#glow);
}

.pulse-ring {
  fill: none;
  stroke: #69db7c;
  stroke-width: 1;
  stroke-opacity: 0;
  animation: pulseRing 3s ease-out infinite;
}

.pulse2 { animation-delay: 0.6s; }
.pulse3 { animation-delay: 1.2s; }
.pulse4 { animation-delay: 1.8s; }
.pulse5 { animation-delay: 2.4s; }

@keyframes pulseRing {
  0% { r: 4; stroke-opacity: 0.6; }
  100% { r: 22; stroke-opacity: 0; }
}

.node-dot {
  animation: nodePulse 2s ease-in-out infinite alternate;
}

.node-dot:nth-child(odd) { animation-delay: 0.5s; }

@keyframes nodePulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.flow-line {
  stroke: #69db7c;
  stroke-width: 1;
  stroke-opacity: 0.3;
  stroke-dasharray: 4 3;
  animation: flowDash 2s linear infinite;
}

.flow2 { animation-delay: 0.4s; animation-direction: reverse; }
.flow3 { animation-delay: 0.8s; }
.flow4 { animation-delay: 1.2s; animation-direction: reverse; }
.flow5 { animation-delay: 1.6s; }

@keyframes flowDash {
  0% { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}

.particle {
  animation: particleMove 3s linear infinite;
}

.particle1 {
  offset-path: path('M0,105 L151,105');
  animation-delay: 0s;
}
.particle2 {
  offset-path: path('M270,208 L192,208');
  animation-delay: 0.6s;
}
.particle3 {
  offset-path: path('M0,310 L131,253');
  animation-delay: 1.2s;
}
.particle4 {
  offset-path: path('M94,163 L270,150');
  animation-delay: 1.8s;
}
.particle5 {
  offset-path: path('M212,273 L0,350');
  animation-delay: 2.4s;
}

@keyframes particleMove {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@media (max-width: 968px) {
  .uk-map-visual { max-width: 380px; }
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(105, 219, 124, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(77, 171, 247, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(105, 219, 124, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 { margin-bottom: 20px; }

.hero-logo {
  max-width: 440px;
  width: 80%;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 40px rgba(105, 219, 124, 0.15));
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.terminal-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-body {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
}

.terminal-body .prompt { color: var(--primary); }
.terminal-body .comment { color: var(--text-faint); }
.terminal-body .flag { color: var(--blue); }
.terminal-body .url { color: var(--yellow); }
.terminal-body .output { color: var(--text-muted); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #7ee890;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ── SECTIONS ────────────────────────────────── */
.section {
  padding: 100px 0;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ── FEATURE CARDS ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(105, 219, 124, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feature-icon img {
  width: 48px;
  height: 48px;
}

.feature-card h3 { margin-bottom: 12px; }

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-dark);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 4px;
}

.pricing-price .currency { font-size: 1.5rem; vertical-align: super; }
.pricing-price .period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── BUNDLE LADDER (volume tiers) ────────────── */
.trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  margin-bottom: 40px;
  text-align: center;
}
.trial-banner p { margin: 0; color: var(--text-primary); font-size: 1.02rem; }

/* First-purchase bonus promo banner */
.bonus-banner {
  background: linear-gradient(135deg, var(--primary-glow-strong), rgba(77, 171, 247, 0.12));
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  margin: 28px 0 36px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.bonus-banner .bonus-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bonus-banner p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.12rem;
  line-height: 1.5;
}
.bonus-banner strong { color: var(--primary); }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.bundle-grid .pricing-card {
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bundle-grid .pricing-card .pricing-price {
  font-size: 2.3rem;
  margin: 10px 0 4px;
}

.bundle-grid .pricing-card .pricing-desc {
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.bundle-grid .pricing-card .btn { width: 100%; }

.pricing-save {
  display: inline-block;
  background: var(--blue);
  color: var(--bg-dark);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* ── INCLUDED BAND ───────────────────────────── */
.included-band {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 32px;
}

.included-band h4 {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
  max-width: 880px;
  margin: 0 auto 22px;
}

.included-grid div {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-grid .check { color: var(--primary); font-weight: 700; flex-shrink: 0; }

.included-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ── ENTERPRISE BAND ─────────────────────────── */
.enterprise-band {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.enterprise-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.enterprise-band h3 { margin-bottom: 6px; font-size: 1.25rem; }
.enterprise-band p { color: var(--text-muted); margin: 0; max-width: 560px; }

/* ── Bundle responsive ───────────────────────── */
@media (max-width: 992px) {
  .bundle-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .enterprise-band { padding: 28px 24px; }
  .enterprise-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  max-width: 600px;
  margin: 0 auto;
}

.stat { text-align: center; }

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── HOW IT WORKS ────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--border-subtle);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(105, 219, 124, 0.08), rgba(77, 171, 247, 0.05));
  border: 1px solid rgba(105, 219, 124, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
}

.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

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

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-faint);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-faint);
  font-size: 0.85rem;
}

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

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(105, 219, 124, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 { margin-bottom: 16px; }

.page-header-logo {
  max-width: 320px;
  width: 60%;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(105, 219, 124, 0.12));
}

.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── DOCS ────────────────────────────────────── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding-top: calc(var(--nav-height) + 40px);
}

.docs-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}

.docs-sidebar nav a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-left: 2px solid var(--border-subtle);
  transition: all var(--transition);
}

.docs-sidebar nav a:hover,
.docs-sidebar nav a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: var(--primary-glow);
}

.docs-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.docs-content h2:first-child { margin-top: 0; }

.docs-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.docs-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.docs-content ul, .docs-content ol {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 16px;
}

.docs-content li { margin-bottom: 8px; line-height: 1.6; }

/* ── BLOG ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(105, 219, 124, 0.3);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body { padding: 24px; }

.blog-card-tag {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card-body h3 { margin-bottom: 8px; }

.blog-card-body h3 a { color: var(--text-primary); }
.blog-card-body h3 a:hover { color: var(--primary); }

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* ── ABOUT ───────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
}

.value-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.team-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-glow);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ── COMPARISON TABLE ────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.comparison-table th {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--primary);
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.comparison-table tr:hover td { background: var(--bg-card); }

.comparison-table .highlight-col {
  background: var(--primary-glow);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question .arrow {
  transition: transform var(--transition);
  color: var(--text-muted);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SCROLL ANIMATION ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 24px; max-width: 400px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-subtle);
  }

  .nav-links.open { right: 0; }
  .nav-hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 24px; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; max-width: 200px; }
}
