/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0f1e;
  --bg-2:        #0f172a;
  --bg-3:        #1e293b;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.14);
  --primary:     #3b82f6;
  --primary-h:   #2563eb;
  --primary-glow:rgba(59,130,246,0.35);
  --purple:      #8b5cf6;
  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --text-dim:    #64748b;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
  --transition:  0.25s cubic-bezier(.4,0,.2,1);
}

/* Light mode overrides */
html[data-theme="light"] {
  --bg:          #f8fafc;
  --bg-2:        #ffffff;
  --bg-3:        #f1f5f9;
  --border:      rgba(0,0,0,0.07);
  --border-2:    rgba(0,0,0,0.12);
  --primary-glow:rgba(59,130,246,0.2);
  --text:        #0f172a;
  --text-muted:  #475569;
  --text-dim:    #94a3b8;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm  { padding: 7px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ── Section headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(59,130,246,0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
html[data-theme="light"] .navbar.scrolled {
  background: rgba(248,250,252,0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}
.nav-logo strong { font-weight: 800; }

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.1); color: var(--text); }
html[data-theme="light"] .theme-toggle { background: rgba(0,0,0,0.04); }
html[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.08); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 100%);
}
html[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
}
html[data-theme="light"] .glow-1 {
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
}
html[data-theme="light"] .glow-2 {
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
}
.glow-2 {
  width: 500px; height: 400px;
  bottom: 0; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.08);
  font-size: 13px;
  color: #93c5fd;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 18px; font-weight: 800; }
.stat span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }

/* ── Hero Mockup ──────────────────────────────────────────── */
.hero-mockup { width: 100%; max-width: 820px; margin-top: 16px; }

.mockup-window {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red    { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green  { background: #10b981; }
.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-right: 40px;
}

.mockup-body {
  display: flex;
  height: 280px;
}

.mockup-sidebar {
  width: 56px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-item {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}
.ms-item.active {
  background: rgba(59,130,246,0.3);
}

.mockup-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mc-header {
  height: 20px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  width: 40%;
}

.mc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mc-field {
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.mc-field.short { grid-column: span 1; width: 60%; }

.mc-check-preview {
  flex: 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mcp-line {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  width: 80%;
}
.mcp-line.thick { height: 12px; width: 55%; }
.mcp-line.short { width: 35%; }
.mcp-amount {
  margin-top: auto;
  height: 28px;
  width: 130px;
  background: rgba(59,130,246,0.15);
  border-radius: 6px;
  border: 1px solid rgba(59,130,246,0.3);
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features { background: var(--bg-2); }

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--icon-color);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SCREENSHOTS ────────────────────────────────────────────── */
.screenshot-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--border-2); color: var(--text); }
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.screenshot-viewer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.screenshot-frame { position: relative; min-height: 460px; }

.screenshot-slot {
  display: none;
  width: 100%;
  height: 460px;
}
.screenshot-slot.active { display: flex; }

.screenshot-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
}
.screenshot-placeholder svg { stroke: var(--text-dim); opacity: .5; }
.screenshot-placeholder p { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.screenshot-placeholder span { font-size: 13px; color: var(--text-dim); }

.screenshot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}
.screenshot-hint code {
  background: var(--bg-3);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12px;
}

/* ── DEMO VIDEO ─────────────────────────────────────────────── */
.demo { background: var(--bg-2); }

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg-3);
  max-width: 860px;
  margin: 0 auto;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}

.video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(139,92,246,0.06) 100%);
}

.play-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 0 0 0 var(--primary-glow);
}
.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(59,130,246,0.2);
}
.play-btn svg { margin-left: 4px; }

.video-label {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
}

.video-embed {
  position: absolute;
  inset: 0;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

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

.save-badge {
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 99px;
  transition: var(--transition);
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-track { background: var(--primary); border-color: var(--primary); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(20px); background: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 400px);
  justify-content: center;
}

.pricing-card {
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, rgba(139,92,246,0.04) 100%);
}

.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 3px 16px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.pc-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pc-amount {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.pc-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}
.pc-period {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.pc-features li.ok  { color: var(--text); }
.pc-features li.no  { color: var(--text-dim); }
.pc-features li::before { content: ''; display: block; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; background-size: 10px; background-repeat: no-repeat; background-position: center; }
.pc-features li.ok::before { background-color: rgba(16,185,129,0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.pc-features li.no::before { background-color: rgba(100,116,139,0.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 32px;
}
.pricing-note a { color: var(--primary); }
.pricing-note a:hover { text-decoration: underline; }

/* ── DOWNLOAD ───────────────────────────────────────────────── */
.download { background: var(--bg-2); }

.download-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.download-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.download-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.download-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.download-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.download-specs li svg { width: 16px; height: 16px; stroke: var(--primary); flex-shrink: 0; }

.download-actions { display: flex; flex-direction: column; gap: 10px; }

.download-btn { align-self: flex-start; }

.download-version { font-size: 12px; color: var(--text-dim); padding-left: 2px; }

.download-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dv-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.dv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dv-icon svg { stroke: var(--primary); }

.dv-text { display: flex; flex-direction: column; gap: 2px; }
.dv-text strong { font-size: 15px; font-weight: 700; }
.dv-text span { font-size: 13px; color: var(--text-muted); }

.dv-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dv-feat {
  font-size: 13px;
  color: #10b981;
  font-weight: 500;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.ci {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.ci div:last-child { display: flex; flex-direction: column; gap: 2px; }
.ci strong { font-size: 14px; font-weight: 600; }
.ci span { font-size: 13px; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-group select option { background: var(--bg-3); }

.form-status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-status.success { color: #10b981; }
.form-status.error   { color: #ef4444; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 280px; }

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

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-col strong { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fl-col a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.fl-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Light mode fixes ───────────────────────────────────────── */
html[data-theme="light"] .hero-badge {
  border-color: rgba(59,130,246,0.25);
  background: rgba(59,130,246,0.06);
}
html[data-theme="light"] .mockup-window { box-shadow: var(--shadow-lg); }
html[data-theme="light"] .video-placeholder { background: var(--bg-3); }
html[data-theme="light"] .download-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(139,92,246,0.04) 100%);
  border-color: rgba(59,130,246,0.15);
}
html[data-theme="light"] .form-group select option { background: #f1f5f9; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid,
  .pricing-grid-2   { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .download-card { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 8px;
    z-index: 99;
  }
  html[data-theme="light"] .nav-links { background: rgba(248,250,252,0.97); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; padding: 12px 16px; }
  .hamburger { display: flex; }

  .hero-stats { gap: 16px; padding: 16px 20px; }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .form-row-2    { grid-template-columns: 1fr; }
  .footer-links  { gap: 32px; }

  .download-btn  { width: 100%; justify-content: center; }
  .dv-features   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
