/* ═══════════════════════════════════════════════
   NAMRATA · AI ENABLEMENT — DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #080b16;
  color: #e2e8f0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── DESIGN TOKENS ── */
:root {
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #c084fc 100%);
  --grad-blue:    linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --grad-warm:    linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --grad-cool:    linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --grad-dark:    linear-gradient(135deg, #0f1629 0%, #1a0a2e 100%);
  --accent:       #8b5cf6;
  --accent2:      #06b6d4;
  --surface:      rgba(255,255,255,0.04);
  --surface-hover:rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-glow:  rgba(139,92,246,0.3);
  --text-muted:   #94a3b8;
  --radius:       16px;
  --radius-sm:    8px;
  --shadow-card:  0 8px 40px rgba(0,0,0,0.4);
}

/* ── GRADIENTS ── */
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL BAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080b16; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── GLOW ELEMENTS ── */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow1 { width: 600px; height: 600px; background: rgba(99,102,241,0.18); top: -100px; left: -100px; }
.glow2 { width: 500px; height: 500px; background: rgba(6,182,212,0.12); top: 200px; right: -100px; }
.glow3 { width: 700px; height: 700px; background: rgba(139,92,246,0.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.glow4 { width: 600px; height: 600px; background: rgba(6,182,212,0.1); top: 50%; right: -200px; transform: translateY(-50%); }
.glow5 { width: 800px; height: 600px; background: rgba(99,102,241,0.15); top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ── SECTION LAYOUT ── */
section { position: relative; padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent2);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.center { display: flex; justify-content: center; }
h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: #f1f5f9; margin-bottom: 20px; }
.center { text-align: center; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-primary);
  color: #fff; font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(139,92,246,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(139,92,246,0.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #e2e8f0; font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--surface-hover); border-color: var(--accent); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,11,22,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
#navbar.scrolled { background: rgba(8,11,22,0.95); box-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; height: 72px;
}
.logo {
  font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 700;
  color: #f1f5f9; text-decoration: none; white-space: nowrap; letter-spacing: -0.01em;
}
.dot { color: var(--accent); }
.nav-links {
  display: flex; list-style: none; gap: 32px; margin-left: auto;
}
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #f1f5f9; }
.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--grad-primary);
  color: #fff; font-weight: 600; font-size: 0.875rem;
  padding: 10px 24px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 20px rgba(139,92,246,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(139,92,246,0.55); }
.hamburger { display: none; background: none; border: none; color: #f1f5f9; font-size: 1.4rem; cursor: pointer; margin-left: auto; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  padding: 8px 0 16px; border-top: 1px solid var(--border);
}
.mobile-menu a { padding: 12px 24px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.mobile-menu a:hover { color: #f1f5f9; }
.mobile-menu .mobile-cta { color: var(--accent); font-weight: 600; }
.mobile-menu.open { display: flex; }
@media (max-width: 860px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  padding: 160px 0 100px;
  display: flex; align-items: center;
  min-height: 100vh;
  overflow: hidden;
}
#hero .section-inner {
  display: none; /* We override with flex below */
}
#hero {
  display: flex; align-items: center; justify-content: center;
  gap: 64px;
  padding: 140px 48px 80px;
  flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 320px; max-width: 640px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 540px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeUp 0.7s 0.3s ease both; }
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { flex: 1; min-width: 100px; padding: 20px 24px; text-align: center; }
.stat-num { display: block; font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; background: var(--border); }

/* Hero Image */
.hero-image-wrap {
  position: relative; flex-shrink: 0;
  width: 380px; height: 420px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-image-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: 0.2;
  animation: pulse 3s ease-in-out infinite;
}
.hero-img {
  width: 360px; height: 400px;
  object-fit: cover; object-position: top;
  border-radius: 32px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 60px rgba(139,92,246,0.3), var(--shadow-card);
  position: relative; z-index: 1;
}
.hero-badge-float {
  position: absolute; z-index: 2;
  background: rgba(15,22,45,0.9);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 16px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; color: #e2e8f0;
}
.badge-f1 { top: 20px; left: -60px; animation: float 4s ease-in-out infinite; }
.badge-f2 { bottom: 40px; right: -60px; animation: float 4s 2s ease-in-out infinite; }
@media (max-width: 900px) {
  .hero-image-wrap { width: 280px; height: 320px; }
  .hero-img { width: 260px; height: 300px; }
  .badge-f1, .badge-f2 { display: none; }
}
@media (max-width: 600px) {
  #hero { padding: 130px 20px 60px; justify-content: center; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { margin: 0; }
}

/* ══════════════════════════════════
   LOGOS / SOCIAL PROOF
══════════════════════════════════ */
#logos {
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}
.logos-label { text-align: center; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.logos-track-wrap { overflow: hidden; }
.logos-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logo-pill {
  display: inline-flex; align-items: center;
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.logo-pill:hover { border-color: var(--accent); color: #f1f5f9; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { background: rgba(255,255,255,0.01); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-text p strong { color: #e2e8f0; }
.credential-row { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.credential {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
  transition: border-color 0.25s, background 0.25s;
}
.credential:hover { border-color: var(--border-glow); background: var(--surface-hover); }
.cred-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.credential strong { display: block; color: #f1f5f9; font-size: 0.9rem; }
.credential small { color: var(--text-muted); font-size: 0.8rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.75rem; font-weight: 600; padding: 5px 14px;
  border-radius: 100px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
}

/* About Visual Card */
.about-visual { position: relative; }
.about-card-glow {
  position: absolute; top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: rgba(139,92,246,0.2);
  border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.about-metrics-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(15,22,45,0.6) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.about-metrics-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 28px; letter-spacing: -0.01em; }
.metric-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.metric-label { font-size: 0.8rem; color: var(--text-muted); flex: 1 0 140px; }
.progress-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 0;
  background: var(--grad-primary);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.progress-fill.animated { width: var(--w); }
.metric-val { font-size: 0.85rem; font-weight: 700; color: #c084fc; width: 36px; text-align: right; }
.about-quote {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-style: italic; color: var(--text-muted); font-size: 0.85rem; line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services { background: #080b16; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius);
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: 0 20px 60px rgba(139,92,246,0.2); }
.service-card:hover::before { opacity: 0.04; }
.service-card.featured {
  border-color: rgba(139,92,246,0.5);
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.06));
  box-shadow: 0 0 40px rgba(139,92,246,0.15);
}
.svc-badge-top {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--grad-primary); color: #fff;
  padding: 3px 10px; border-radius: 100px;
}
.svc-icon { font-size: 2rem; margin-bottom: 16px; display: block; position: relative; z-index: 1; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: -0.01em; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; position: relative; z-index: 1; }
.svc-tags span {
  font-size: 0.68rem; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted);
}
@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
#how-it-works { background: linear-gradient(180deg, #080b16 0%, #0d0f24 100%); }
.steps-grid {
  display: flex; align-items: stretch; gap: 12px;
  flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.step-num {
  font-family: 'Outfit', sans-serif; font-size: 3.2rem; font-weight: 800;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 12px; opacity: 0.6; letter-spacing: -0.03em;
}
.step-icon { font-size: 1.8rem; margin-bottom: 16px; }
.step-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; letter-spacing: -0.01em; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.step-duration { margin-top: 20px; font-size: 0.75rem; font-weight: 600; color: var(--accent2); }
.step-arrow { font-size: 1.5rem; color: var(--border-glow); align-self: center; flex-shrink: 0; }
@media (max-width: 720px) { .step-arrow { display: none; } .steps-grid { flex-direction: column; } }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
#testimonials { background: #080b16; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: 0 16px 50px rgba(139,92,246,0.15); }
.testi-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 0.875rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.875rem; color: #f1f5f9; }
.testi-author small { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
#pricing { background: linear-gradient(180deg, #0d0f24 0%, #080b16 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(139,92,246,0.5);
  background: linear-gradient(180deg, rgba(99,102,241,0.12) 0%, rgba(8,11,22,0.8) 100%);
  box-shadow: 0 0 60px rgba(139,92,246,0.2);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 20px; border-radius: 100px;
}
.price-plan-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; letter-spacing: -0.01em; }
.price-tag { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.03em; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-tag span { font-size: 1rem; font-weight: 400; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { font-size: 0.85rem; color: #cbd5e1; }
.price-features li.muted { color: #475569; }
.btn-price {
  display: block; text-align: center; text-decoration: none;
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  background: var(--surface); border: 1px solid var(--border); color: #e2e8f0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-price:hover { background: var(--surface-hover); border-color: var(--accent); transform: translateY(-2px); }
.btn-price.featured {
  background: var(--grad-primary); border: none; color: #fff;
  box-shadow: 0 0 30px rgba(139,92,246,0.4);
}
.btn-price.featured:hover { box-shadow: 0 0 50px rgba(139,92,246,0.6); }
.pricing-note { text-align: center; margin-top: 48px; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact { background: #080b16; }
.contact-inner { display: flex; justify-content: center; }
.contact-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 64px 56px;
  max-width: 760px; width: 100%;
  backdrop-filter: blur(10px);
}
.contact-form { margin-top: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #475569; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.form-group select option { background: #0d0f24; color: #e2e8f0; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-primary.full-width { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.contact-alt { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-alt span { font-size: 0.85rem; color: var(--text-muted); }
.contact-alt a { color: #a5b4fc; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.contact-alt a:hover { color: #c4b5fd; }
@media (max-width: 600px) {
  .contact-card { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer {
  background: #04060f;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 48px;
  display: flex; gap: 64px; flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .logo { font-size: 1.4rem; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-col strong { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin-bottom: 4px; }
.fl-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: #f1f5f9; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px; text-align: center;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem; color: #374151;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50%       { transform: scale(1.08); opacity: 0.35; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 14px 32px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 9999; opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
