/* ===================================================
   CryptoBotiq – Main Stylesheet
   Design: Dark space theme with electric blue/purple
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --blue:      #00D4FF;
  --blue-dim:  #0099bb;
  --purple:    #8B5CF6;
  --purple-dim:#6d46d4;
  --teal:      #06D6A0;
  --teal-dim:  #04a87d;
  --green:     #22c55e;
  --red:       #ef4444;
  --bg:        #040711;
  --bg2:       #070d1a;
  --bg3:       #0c1525;
  --card:      #0f1d30;
  --card2:     #13243d;
  --border:    rgba(0, 212, 255, 0.12);
  --border2:   rgba(139, 92, 246, 0.2);
  --text:      #e2e8f0;
  --text-muted:#7a8fa6;
  --text-dim:  #4a5d73;
  --font:      'Inter', sans-serif;
  --mono:      'JetBrains Mono', monospace;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-blue: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.2);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.35);
  --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
}

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(4, 7, 17, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(4, 7, 17, 0.95);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-btn-primary {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white !important;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: var(--glow-blue);
}
.nav-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.lang-switcher {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.lang-btn:hover, .lang-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  border-color: transparent;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: 3s;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: 50%; left: 30%;
  animation-delay: 6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.6s ease both;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 60%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: var(--glow-blue);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
}
.btn-primary.btn-purple {
  background: linear-gradient(135deg, var(--purple), #ff6b9d);
  box-shadow: var(--glow-purple);
}
.btn-primary.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.35);
}
.btn-primary.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-primary.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--blue);
}
.btn-ghost.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 36px;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
  row-gap: 16px;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-sep {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
  opacity: 0.6;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.bots-section, .performance-section, .how-section {
  padding: 100px 0;
}
.performance-section { background: var(--bg2); }
.how-section { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   BOT CARDS
   ============================================================ */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.bot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.bot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.bot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-blue);
}
.bot-card.featured {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(160deg, #13233e, #0f1d30);
  box-shadow: var(--shadow-purple);
}
.bot-card.featured:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}
.bot-featured-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--purple), #ff6b9d);
  color: white;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.bot-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.bot-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.bot-icon-wrap.purple {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}
.bot-icon-wrap.teal {
  background: rgba(6, 214, 160, 0.1);
  border-color: rgba(6, 214, 160, 0.25);
}
.bot-meta { flex: 1; }
.bot-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}
.bot-type {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.bot-type.futures {
  background: rgba(0, 212, 255, 0.1);
  color: var(--blue);
}
.bot-type.spot {
  background: rgba(6, 214, 160, 0.1);
  color: var(--teal);
}
.bot-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.bot-chart-wrap {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.bot-chart-wrap.ls-chart-wrap {
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  padding: 12px 12px 4px;
}
.bot-chart { width: 100% !important; display: block; }
.chart-axis-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 0 4px;
}
.chart-axis-labels span {
  font-size: 0.62rem;
  color: var(--text-dim);
  font-family: var(--mono);
}
.chart-start-end {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px 2px;
}
.cs-start, .cs-end {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text-muted);
}
.cs-end.green { color: var(--green); }
.chart-label {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--mono);
}

.bot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.bs-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bs-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--mono);
}
.bs-val.green { color: var(--green); }

.bot-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.bot-actions {
  display: flex;
  gap: 10px;
}
.bot-actions .btn-primary,
.bot-actions .btn-ghost {
  flex: 1;
  justify-content: center;
}

.more-strategies-cta {
  text-align: center;
}
.btn-more-strategies {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  border: 2px solid var(--border2);
  color: var(--purple);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-more-strategies:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

/* ============================================================
   PERFORMANCE TABLE
   ============================================================ */
.perf-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.perf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
}
.perf-table th {
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.perf-table td {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.perf-table tbody tr:last-child td { border-bottom: none; }
.perf-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.perf-table .top-row td { background: rgba(0, 212, 255, 0.04); }
.perf-table .green { color: var(--green); font-weight: 700; }
.perf-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.step-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--mono);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left: 8px solid var(--purple);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 80px 0; }
.cta-card {
  background: linear-gradient(160deg, var(--card2), #0a1929);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { width: 40px; border-radius: 8px; }
.footer-name {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); }
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bots-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(4, 7, 17, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 4px;
    backdrop-filter: blur(20px);
  }
  .hamburger { display: flex; }
  .bots-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector {
    width: 2px; height: 40px;
    background: linear-gradient(180deg, var(--blue), var(--purple));
  }
  .step-connector::after {
    bottom: -8px; right: -4px; top: auto;
    border: 5px solid transparent;
    border-top: 8px solid var(--purple);
    border-left-color: transparent;
  }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { padding: 16px; }
  .stat-item { padding: 0 14px; }
  .lang-switcher { display: none; }
  .cta-card { padding: 48px 24px; }
}
