/* ===== 名爵 mjbotvip.com — 全新 Dark Racing 主题 ===== */

/* --- 字体导入 --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700;900&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS 变量 --- */
:root {
  --bg-primary: #0b0d17;
  --bg-secondary: #11131f;
  --bg-card: #181b2b;
  --bg-card-hover: #1f2340;
  --accent: #f5b342;
  --accent-soft: #d4942f;
  --accent-glow: rgba(245, 179, 66, 0.25);
  --gold-light: #fcd68a;
  --red-accent: #e84d4d;
  --blue-accent: #4a7dff;
  --text: #e8e6f0;
  --text-muted: #8b8fa3;
  --text-dim: #5a5e72;
  --border: rgba(245, 179, 66, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --container: 1200px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: all .3s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- Multi-layer Background --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(245,179,66,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(74,125,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(232,77,77,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(11,13,23,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all .4s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; max-width: 70%; }
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .3s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(245,179,66,0.1);
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  color: var(--accent);
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeSlideUp 0.8s ease forwards; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .35s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  color: var(--bg-primary);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
  color: var(--bg-primary);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.hero-image {
  position: relative;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(245,179,66,0.15);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px solid var(--border);
  z-index: -1;
}

/* ===== Section Common ===== */
.section { padding: 80px 0; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  background: rgba(245,179,66,0.1);
  border-radius: 100px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===== Module: Feature Grid ===== */
.feature-grid {
  display: grid;
  gap: 24px;
}
.feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .35s ease;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(245,179,66,0.1);
}
.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Module: Bento Grid ===== */
.bento-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}
.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }
.bento-item.full { grid-column: 1 / -1; }
.bento-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.bento-item p, .bento-item li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.bento-item ul { margin-top: 8px; }
.bento-item ul li { padding-left: 18px; position: relative; margin-bottom: 4px; }
.bento-item ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.bento-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.bento-icon { font-size: 2rem; margin-bottom: 12px; }

/* ===== Module: Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

/* ===== Module: Timeline ===== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), transparent);
}
.timeline-item {
  position: relative;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-glow);
}
.timeline-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== Module: Accordion/FAQ ===== */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question .arrow {
  transition: transform .3s ease;
  font-size: 1.2rem;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 400px;
}

/* ===== Module: Table ===== */
.gaming-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.gaming-table th {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
}
.gaming-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.gaming-table tr:hover td { background: var(--bg-card-hover); }

/* ===== Module: Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial-card .author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===== Module: Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.step-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Module: Logo Cloud ===== */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}
.logo-cloud-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dim);
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
}
.logo-cloud-item:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* ===== Module: CTA ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(245,179,66,0.08), rgba(232,77,77,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 28px;
}
.cta-section .btn { margin: 0 auto; }

/* ===== Module: Two Column Content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.two-col-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.two-col-text ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.two-col-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.two-col-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===== Module: Icon List ===== */
.icon-list { display: grid; gap: 16px; }
.icon-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
}
.icon-list-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.icon-list-item .il-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,179,66,0.1);
  border-radius: 10px;
}
.icon-list-item .il-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.icon-list-item .il-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Module: Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== Module: Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all .35s ease;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: scale(1.03);
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
}
.pricing-card ul { margin: 16px 0; }
.pricing-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border: none; }
.pricing-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ===== Module: Process Flow ===== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
}
.process-step:last-child::after { display: none; }
.process-step .ps-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 6px;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: all .3s ease;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.footer-contact strong { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ===== Animations ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.section { animation: fadeSlideUp 0.6s ease both; }

/* Staggered cards */
.feature-card:nth-child(1) { animation: fadeSlideUp 0.5s ease 0.05s both; }
.feature-card:nth-child(2) { animation: fadeSlideUp 0.5s ease 0.10s both; }
.feature-card:nth-child(3) { animation: fadeSlideUp 0.5s ease 0.15s both; }
.feature-card:nth-child(4) { animation: fadeSlideUp 0.5s ease 0.20s both; }
.feature-card:nth-child(5) { animation: fadeSlideUp 0.5s ease 0.25s both; }
.feature-card:nth-child(6) { animation: fadeSlideUp 0.5s ease 0.30s both; }
.feature-card:nth-child(7) { animation: fadeSlideUp 0.5s ease 0.35s both; }
.feature-card:nth-child(8) { animation: fadeSlideUp 0.5s ease 0.40s both; }

.bento-item:nth-child(1) { animation: fadeSlideUp 0.5s ease 0.05s both; }
.bento-item:nth-child(2) { animation: fadeSlideUp 0.5s ease 0.10s both; }
.bento-item:nth-child(3) { animation: fadeSlideUp 0.5s ease 0.15s both; }
.bento-item:nth-child(4) { animation: fadeSlideUp 0.5s ease 0.20s both; }
.bento-item:nth-child(5) { animation: fadeSlideUp 0.5s ease 0.25s both; }
.bento-item:nth-child(6) { animation: fadeSlideUp 0.5s ease 0.30s both; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-item.wide { grid-column: span 2; }
  .bento-item.tall { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(11,13,23,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { padding: 110px 0 40px; }
  .hero-image { order: -1; }
  .feature-grid-3, .feature-grid-4 { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
