/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
  background: #0a1628;
  color: #f1f5f9;
  direction: rtl;
  overflow-x: hidden;
}
::selection { background: #7c3aed; color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f1d35; }
::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 4px; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gradient {
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: #fff; border: none; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent; color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

.section-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem;
}
.section-title {
  font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .section-title { font-size: 2rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
.section-desc {
  color: #94a3b8; font-size: 1rem; line-height: 1.625;
  max-width: 48rem; margin: 0 auto;
}

.section { padding: 4rem 0; position: relative; }
@media (min-width: 640px) { .section { padding: 5rem 0; } }
.section-center { text-align: center; margin-bottom: 2.5rem; }

/* Grid overlay */
.bg-grid {
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow-purple { box-shadow: 0 0 30px rgba(124, 58, 237, 0.3); }
.glow-cyan { box-shadow: 0 0 30px rgba(6, 182, 212, 0.3); }
.card-gradient { background: linear-gradient(135deg, rgba(15, 29, 53, 0.8), rgba(124, 58, 237, 0.1)); }

/* Fade in animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 22, 40, 0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; max-width: 1280px; margin: 0 auto; padding: 0 1rem;
}
@media (min-width: 1024px) { .navbar-inner { height: 5rem; } }
.navbar-logo { display: flex; align-items: center; gap: 0.5rem; }
.navbar-logo-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem; font-weight: 700;
}
.navbar-logo-text { font-size: 1.25rem; font-weight: 700; color: #fff; }
.navbar-links { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-link {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; color: #cbd5e1;
  border-radius: 0.5rem; transition: all 0.2s;
}
.navbar-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-toggle {
  display: block; background: none; border: none; color: #cbd5e1;
  padding: 0.5rem; font-size: 1.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-drawer {
  display: none; background: rgba(15, 29, 53, 0.95);
  backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block; padding: 0.625rem 0.75rem;
  color: #cbd5e1; border-radius: 0.5rem; font-size: 0.875rem;
}
.mobile-drawer a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-drawer .btn-primary {
  display: block; text-align: center; margin-top: 0.75rem;
}

/* ===== HERO ===== */
.hero {
  min-height: auto; display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 2rem; position: relative; overflow: hidden;
}
.hero .bg-grid { position: absolute; inset: 0; }
.hero-orb1, .hero-orb2 {
  position: absolute; width: 24rem; height: 24rem; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.hero-orb1 { top: 25%; left: -8rem; background: rgba(124, 58, 237, 0.2); }
.hero-orb2 { bottom: 25%; right: -8rem; background: rgba(6, 182, 212, 0.2); }
.hero-content { position: relative; text-align: center; max-width: 56rem; margin: 0 auto; }
.hero-title {
  font-size: 1.875rem; font-weight: 700; line-height: 1.25; margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 3.75rem; } }
.hero-desc {
  font-size: 1rem; color: #94a3b8; line-height: 1.75;
  max-width: 48rem; margin: 0 auto 2rem;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
@media (min-width: 640px) { .hero-stats { gap: 2.25rem; } }
.stat-value { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 640px) { .stat-value { font-size: 1.875rem; } }
.stat-label { font-size: 0.75rem; color: #64748b; margin-top: 0.25rem; }

/* ===== BUILDER ===== */
#builder {
  padding-top: 2.5rem;
}

.builder-insights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) { .builder-insights { grid-template-columns: repeat(3, 1fr); } }
.insight-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(19,37,68,0.85), rgba(6,182,212,0.08));
  padding: 1rem;
}
.insight-card span {
  display: block;
  color: #06b6d4;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}
.insight-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.insight-card small {
  color: #94a3b8;
  line-height: 1.6;
}

.builder-card {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem;
  background: rgba(15, 29, 53, 0.6); backdrop-filter: blur(4px);
  overflow: hidden; max-width: 64rem; margin: 0 auto;
}
.steps-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0.25rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.step-dot {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.625rem; border-radius: 0.5rem;
  font-size: 0.75rem; border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03); color: #64748b;
  transition: all 0.3s; cursor: default;
}
.step-dot.active { background: rgba(124, 58, 237, 0.2); border-color: rgba(124, 58, 237, 0.3); color: #8b5cf6; }
.step-dot.done { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); color: #10b981; cursor: pointer; }
.step-dot.done:hover { background: rgba(16, 185, 129, 0.2); }
.step-connector { width: 1rem; height: 1px; background: rgba(255,255,255,0.1); }
.step-connector.done { background: rgba(16, 185, 129, 0.4); }
.step-dot-label { display: none; }
@media (min-width: 640px) { .step-dot-label { display: inline; } }

.builder-body { padding: 1.5rem; }
@media (min-width: 640px) { .builder-body { padding: 2rem; } }
@media (min-width: 1024px) { .builder-body { padding: 2.5rem; } }
.builder-step { display: none; max-width: 36rem; margin: 0 auto; }
.builder-step.active { display: block; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #cbd5e1; margin-bottom: 0.375rem; }
.form-input, .form-textarea {
  width: 100%; padding: 0.625rem 1rem;
  background: #132544; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; color: #fff; font-size: 0.875rem;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(124, 58, 237, 0.5); }
.form-textarea { resize: vertical; min-height: 5rem; }
.form-hint { font-size: 0.75rem; color: #64748b; margin-top: 0.25rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (max-width: 639px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }

.option-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 0.75rem; border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem;
  background: rgba(255,255,255,0.03); color: #cbd5e1;
  text-align: right; transition: all 0.2s; width: 100%;
}
.option-btn:hover { background: rgba(255,255,255,0.06); }
.option-btn.selected { background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.3); color: #8b5cf6; }
.option-btn .icon { width: 1rem; height: 1rem; flex-shrink: 0; }

.tool-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem;
  background: rgba(255,255,255,0.03); color: #cbd5e1;
  text-align: right; transition: all 0.2s; width: 100%;
}
.tool-btn:hover { background: rgba(255,255,255,0.06); }
.tool-btn.selected { background: rgba(124, 58, 237, 0.15); border-color: rgba(124, 58, 237, 0.3); color: #8b5cf6; }
.tool-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0;
  background: rgba(255,255,255,0.05); color: #94a3b8;
}
.tool-btn.selected .tool-icon { background: rgba(124, 58, 237, 0.2); color: #8b5cf6; }
.tool-check {
  width: 1.25rem; height: 1.25rem; border-radius: 0.375rem;
  border: 2px solid rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s;
}
.tool-btn.selected .tool-check { background: #7c3aed; border-color: #7c3aed; }
.tool-check-inner { display: none; }
.tool-btn.selected .tool-check-inner { display: block; color: #fff; font-size: 0.75rem; }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}
.toggle-label { font-size: 0.875rem; font-weight: 500; color: #cbd5e1; }
.toggle-desc { font-size: 0.75rem; color: #64748b; }
.toggle-switch {
  width: 2.75rem; height: 1.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.2); border: none;
  position: relative; transition: background 0.2s; flex-shrink: 0;
}
.toggle-switch.on { background: #7c3aed; }
.toggle-knob {
  position: absolute; top: 0.125rem; width: 1.25rem; height: 1.25rem;
  border-radius: 50%; background: #fff; transition: transform 0.2s;
}
.toggle-switch.on .toggle-knob { transform: translateX(-1.25rem); }

.builder-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(19, 37, 68, 0.5);
}
@media (min-width: 640px) { .builder-footer { padding: 1rem 2rem; } }
@media (min-width: 1024px) { .builder-footer { padding: 1rem 2.5rem; } }
.step-counter { font-size: 0.75rem; color: #64748b; }

/* Chat */
.chat-container { max-width: 36rem; margin: 0 auto; }
.chat-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem;
}
.chat-agent-name { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: #fff; }
.chat-mock-label { font-size: 0.75rem; color: #64748b; }
.chat-box {
  height: 20rem; overflow-y: auto; border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1); background: #132544;
  padding: 1rem; margin-bottom: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.chat-empty {
  text-align: center; color: #64748b; font-size: 0.875rem;
  padding-top: 4rem;
}
.chat-empty .icon { width: 2rem; height: 2rem; margin: 0 auto 0.5rem; opacity: 0.5; }
.chat-msg { max-width: 85%; padding: 0.75rem; border-radius: 1rem; font-size: 0.875rem; }
.chat-msg.user { background: #132544; border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; align-self: flex-start; }
.chat-msg.agent { background: linear-gradient(to left, rgba(124,58,237,0.2), rgba(6,182,212,0.2)); border: 1px solid rgba(124,58,237,0.2); color: #f1f5f9; align-self: flex-end; }
.chat-msg-agent-name { display: flex; align-items: center; gap: 0.25rem; font-size: 0.625rem; color: #8b5cf6; margin-bottom: 0.25rem; }
.chat-input-row { display: flex; gap: 0.5rem; }
.chat-input-row .form-input { flex: 1; }

/* Export */
.export-block { margin-bottom: 1.25rem; }
.export-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.export-label { font-size: 0.875rem; font-weight: 500; color: #cbd5e1; }
.export-action { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #94a3b8; background: none; border: none; cursor: pointer; }
.export-action:hover { color: #8b5cf6; }
.export-code {
  padding: 0.75rem; border-radius: 0.75rem;
  background: #132544; border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem; color: #cbd5e1; font-family: monospace;
  overflow-x: auto; max-height: 10rem; overflow-y: auto;
  white-space: pre; direction: ltr; text-align: left;
}
.export-success {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 1.25rem;
}
.export-note { font-size: 0.75rem; color: #64748b; text-align: center; }

/* Saved agents */
.saved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .saved-grid { grid-template-columns: repeat(3, 1fr); } }
.saved-agent-card,
.empty-state {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  padding: 1.25rem;
}
.saved-agent-card {
  transition: transform 0.2s, border-color 0.2s;
}
.saved-agent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,182,212,0.35);
}
.saved-agent-card .agent-type {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(6,182,212,0.1);
  color: #22d3ee;
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
}
.saved-agent-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.saved-agent-card p {
  color: #94a3b8;
  font-size: 0.8rem;
}
.empty-state {
  grid-column: 1 / -1;
  color: #94a3b8;
  text-align: center;
}

/* ===== TEMPLATES ===== */
.templates-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .templates-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .templates-grid { grid-template-columns: repeat(3, 1fr); } }
.template-card {
  padding: 1.25rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s; display: block;
}
.template-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,0.2); }
.template-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem; font-size: 1.25rem;
}
.template-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.template-desc { font-size: 0.75rem; color: #94a3b8; line-height: 1.5; margin-bottom: 0.75rem; }
.template-tools { display: flex; align-items: center; gap: 0.25rem; font-size: 0.6875rem; color: #64748b; margin-bottom: 0.75rem; }
.template-tools .dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: rgba(6,182,212,0.6); }
.template-prompt {
  border: 1px solid rgba(139,92,246,0.16);
  border-radius: 0.75rem;
  background: rgba(124,58,237,0.08);
  padding: 0.75rem;
  margin-bottom: 0.85rem;
}
.template-prompt span {
  display: block;
  color: #a78bfa;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.template-prompt p {
  color: #94a3b8;
  font-size: 0.72rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.template-action {
  font-size: 0.75rem;
  color: #8b5cf6;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
}
.template-card:hover .template-action { gap: 0.5rem; }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .how-grid { grid-template-columns: repeat(6, 1fr); } }
.how-card {
  position: relative; text-align: center; padding: 1.25rem;
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.how-card:hover { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.05); }
.how-number {
  position: absolute; top: -0.75rem; left: -0.75rem;
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; font-weight: 700;
}
.how-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(6,182,212,0.2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; font-size: 1.375rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding: 1rem 1.5rem; background: none; border: none;
  color: #fff; font-size: 0.875rem; font-weight: 500; text-align: right;
}
@media (min-width: 640px) { .faq-question { font-size: 1rem; } }
.faq-arrow {
  width: 1rem; height: 1rem; color: #94a3b8; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-arrow.open { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 20rem; }
.faq-answer-inner { padding: 0 1.5rem 1rem; font-size: 0.875rem; color: #94a3b8; line-height: 1.625; }
@media (min-width: 640px) { .faq-answer-inner { font-size: 1rem; } }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(15, 29, 53, 0.5);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3rem 1rem; }
@media (min-width: 640px) { .footer-inner { padding: 4rem 1.5rem; } }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand { max-width: 24rem; }
.footer-brand p { font-size: 0.875rem; color: #94a3b8; line-height: 1.625; margin-top: 0.5rem; }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: #94a3b8; transition: color 0.2s; }
.footer-col a:hover { color: #06b6d4; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social-icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.05); display: flex;
  align-items: center; justify-content: center;
  color: #94a3b8; font-size: 0.875rem;
  transition: background 0.2s; cursor: pointer;
}
.footer-social-icon:hover { background: rgba(124,58,237,0.2); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 1rem 0; border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 2.5rem; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copy { font-size: 0.75rem; color: #64748b; }

/* ===== BACKGROUND SECTIONS ===== */
.bg-gradient-section {
  background: linear-gradient(to bottom, #0a1628, rgba(15,29,53,0.3), #0a1628);
}
.bg-grid-section { position: relative; }
.bg-grid-section .bg-grid { position: absolute; inset: 0; opacity: 0.3; }
.bg-grid-section > *:not(.bg-grid) { position: relative; z-index: 1; }
