/* ============================================
   TECHNOVA Solutions Group — Site statique
   Design: Editorial Minimal
   Palette: Ivoire / Bleu nuit / Cuivre
   ============================================ */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F5F3EF;
  --fg: #1A1F36;
  --muted: #6B7280;
  --primary: #2B3A67;
  --accent: #B88E5A;
  --accent-light: rgba(184, 142, 90, 0.1);
  --card: #FFFFFF;
  --border: #E5E3DF;
  --footer-bg: #1A1F36;
  --footer-text: #F5F3EF;
  --radius: 12px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #141828;
  --bg-alt: #1A1F36;
  --fg: #E8E6E2;
  --muted: #9CA3AF;
  --primary: #6B8AFF;
  --accent: #D4A574;
  --accent-light: rgba(212, 165, 116, 0.15);
  --card: #1E2440;
  --border: #2A3050;
  --footer-bg: #0F1320;
  --footer-text: #E8E6E2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.02);
}
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover { border-color: var(--fg); background: rgba(0,0,0,0.03); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { transform: scale(1.02); }
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ============ EYEBROW ============ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  display: block;
}
.eyebrow span:last-child {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.eyebrow-light span:last-child { color: var(--accent); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(20, 24, 40, 0.8);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}
.logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-family: var(--font-display);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.8;
  position: relative;
  transition: opacity 0.3s;
}
.nav-link:hover { opacity: 1; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
.nav-cta { font-size: 0.875rem; padding: 0.625rem 1.25rem; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--fg);
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-deco {
  position: absolute;
  top: 20%; right: -8rem;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--accent-light);
  filter: blur(80px);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title .gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .dot { color: var(--accent); }
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-cta { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 200px;
}
[data-theme="dark"] .hero-badge { background: rgba(30,36,64,0.85); }
.badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.125rem; display: block; line-height: 1; }
.hero-badge span { font-size: 0.75rem; color: var(--muted); }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-indicator svg { animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============ STATS ============ */
.stats { padding: 5rem 0 7rem; }
.separator-line { width: 100%; height: 2px; margin-bottom: 4rem; }
.separator-line line { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.5s var(--ease-out); }
.separator-line.drawn line { stroke-dashoffset: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
@media (min-width: 1024px) { .stat-item { text-align: left; } }
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) { .stat-value { font-size: 4rem; } }
.stat-value .suffix { color: var(--accent); }
.stat-item p { font-size: 0.875rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============ MARQUEE ============ */
.marquee {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--fg);
  color: var(--bg);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
}
.marquee-track span::after { content: '✦'; color: var(--accent); font-size: 1.5rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION HEADER ============ */
.section-header { max-width: 42rem; margin-bottom: 4rem; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* ============ SERVICES / BENTO ============ */
.services { padding: 6rem 0; }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); auto-rows: 280px; } }
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s var(--ease-out);
  min-height: 280px;
}
.bento-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.bento-card.featured { grid-column: span 2; grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }
@media (max-width: 1023px) { .bento-card.featured, .bento-card.wide { grid-column: span 1; } }
.bento-card .card-img {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  object-fit: cover;
  transition: all 0.7s var(--ease-out);
}
.bento-card:hover .card-img { opacity: 0.25; transform: scale(1.05); }
.bento-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.6));
}
[data-theme="dark"] .bento-card .card-overlay {
  background: linear-gradient(to top, var(--card), rgba(30,36,64,0.9) 50%, rgba(30,36,64,0.6));
}
.bento-card .card-content { position: relative; z-index: 1; }
.bento-card .card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s var(--ease-out);
}
.bento-card:hover .card-icon { background: var(--accent); transform: scale(1.1); }
.bento-card .card-icon svg { color: var(--accent); transition: color 0.3s; }
.bento-card:hover .card-icon svg { color: #fff; }
.bento-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.bento-card.featured h3 { font-size: 1.875rem; }
.bento-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.bento-card .card-more {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover .card-more { opacity: 1; }
.bento-card .card-more::after { content: ''; width: 1.5rem; height: 1px; background: var(--accent); }

/* ============ EXPERTISE ============ */
.expertise { padding: 6rem 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.expertise::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent-light);
  filter: blur(80px);
  z-index: 0;
}
.expertise > .container { position: relative; z-index: 1; }
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); } }
.expertise-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
}
.expertise-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.expertise-card .ex-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease-out);
}
[data-theme="dark"] .expertise-card .ex-icon { background: rgba(255,255,255,0.05); }
.expertise-card:hover .ex-icon { background: var(--accent); }
.expertise-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.expertise-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ============ APPROCHE / TIMELINE ============ */
.approche { padding: 6rem 0; }
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .timeline::before {
    content: '';
    position: absolute;
    top: 2rem; left: 0; right: 0;
    height: 1px;
    background: var(--border);
  }
}
.timeline-step { position: relative; }
.timeline-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
  position: relative;
  z-index: 1;
}
.timeline-step:hover .timeline-num { border-color: var(--accent); }
.timeline-step h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.timeline-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ============ CTA ============ */
.cta-section { padding: 6rem 0; }
.cta-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--fg);
}
.cta-content {
  position: relative;
  padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .cta-content { padding: 6rem 5rem; } }
.cta-title {
  font-size: 2rem;
  color: var(--bg);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .cta-title { font-size: 3.5rem; } }
.cta-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ============ CONTACT ============ */
.contact { padding: 6rem 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.contact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(43,58,103,0.05);
  filter: blur(80px);
  z-index: 0;
}
.contact > .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all 0.3s var(--ease-out);
}
.contact-item:hover .contact-icon { background: var(--accent); border-color: var(--accent); }
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); display: block; margin-bottom: 0.25rem; }
.contact-item p { font-size: 1rem; font-weight: 500; }
.contact-form {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) { .contact-form { padding: 2.5rem; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ============ FOOTER ============ */
.footer { background: var(--footer-bg); color: var(--footer-text); overflow: hidden; }
.footer-top-line { height: 1px; background: linear-gradient(to right, transparent, var(--accent), transparent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand .logo-name, .footer-brand .logo-sub { color: var(--footer-text); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-top: 1.25rem; max-width: 16rem; }
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a, .footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  cursor: pointer;
}
.footer-col ul li a:hover, .footer-col ul li:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.scroll-top {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--footer-text);
  cursor: pointer;
  transition: all 0.3s;
}
.scroll-top:hover { background: var(--accent); border-color: var(--accent); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
[data-theme="dark"] .mobile-menu { background: rgba(20,24,40,0.95); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; padding: 0.5rem 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding-top: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: var(--accent); color: #fff; }
