/* ============================================
   裁裁AI - Global Styles
   ============================================ */

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

:root {
  --black: #020408;
  --dark: #0a0f1a;
  --card: #0f1623;
  --card2: #141c2e;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --accent: #4f8ef7;
  --accent2: #7c3aed;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --gradient: linear-gradient(135deg, #4f8ef7 0%, #7c3aed 100%);
  --font: 'Noto Sans SC', 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(0px);
}

#navbar.scrolled {
  background: rgba(2,4,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: white;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }

.btn-nav {
  background: var(--gradient) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(2,4,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; padding: 16px 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orbs { position: absolute; inset: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: #4f8ef7;
  top: -100px; left: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #7c3aed;
  top: 200px; right: -50px;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #22c55e;
  bottom: 50px; left: 40%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: white;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 12px 40px rgba(79,142,247,0.4); }
.btn-primary.full-width { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 4px;
  transition: all 0.2s;
}
.btn-ghost:hover { color: white; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
  transition: all 0.2s;
  width: 100%;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px 0 0;
}
.stat:first-child { padding-left: 0; }

.num {
  font-size: 32px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.stat span:nth-child(2) {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Dashboard Card */
.hero-visual {
  flex: 0 0 auto;
  width: min(420px, 100%);
}

.dashboard-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.dc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.dc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dc-dot.red { background: #ef4444; }
.dc-dot.yellow { background: #eab308; }
.dc-dot.green { background: #22c55e; }
.dc-header span { margin-left: 8px; }

.dc-body { padding: 16px; }

.dc-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.dc-bar-wrap { flex: 1; }

.dc-bar {
  position: relative;
  height: 22px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.dc-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--w);
  background: var(--c);
  opacity: 0.85;
  border-radius: 4px;
  animation: barGrow 1.5s ease-out forwards;
}
.dc-bar span {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  color: white;
  padding: 0 8px;
  line-height: 22px;
  display: block;
}

@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w); }
}

.dc-summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.dc-big {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}
.dc-big span { font-size: 16px; color: var(--text-muted); }
.dc-save {
  font-size: 13px;
  color: var(--accent-green);
  margin-top: 4px;
}
.dc-save strong { font-weight: 700; }

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  width: max-content;
}

.ticker span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}

.dark-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(79,142,247,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card.featured {
  border-color: rgba(79,142,247,0.4);
  background: linear-gradient(135deg, rgba(79,142,247,0.08), rgba(124,58,237,0.08));
  grid-column: span 1;
}

.sc-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.sc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-number {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ps-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.ps-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.ps-duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.process-arrow {
  font-size: 24px;
  color: var(--border2);
  margin-top: 48px;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ============================================
   CASES
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.case-card:hover {
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-4px);
}

.case-tag {
  display: inline-flex;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.case-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.4;
}

.case-metrics {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.metric {
  flex: 1;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.metric:last-child { border-right: none; }

.m-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.m-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.case-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-quote {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  line-height: 1.6;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-section { background: linear-gradient(180deg, var(--black) 0%, rgba(79,142,247,0.03) 100%); }

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

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.pain-card:hover { border-color: rgba(79,142,247,0.3); }

.pain-icon { font-size: 32px; margin-bottom: 16px; }

.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.pain-solution {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  background: rgba(79,142,247,0.08);
  border-radius: 8px;
  padding: 10px 14px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: rgba(79,142,247,0.5);
  background: linear-gradient(135deg, rgba(79,142,247,0.1), rgba(124,58,237,0.1));
  transform: scale(1.02);
}

.pc-hot {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pc-price {
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin-bottom: 4px;
  line-height: 1;
}
.pc-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }

.pc-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card ul li {
  font-size: 14px;
  color: var(--text);
}
.pricing-card ul li.dim { color: var(--text-muted); }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: 12px;
  padding: 16px;
}
.pricing-note strong { color: var(--text); }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-left .tag { margin-bottom: 12px; }

.contact-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.cf-item {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(79,142,247,0.06);
}
.form-group select { cursor: pointer; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}
.checkbox-label:hover { border-color: var(--accent); color: var(--text); }
.checkbox-label input { accent-color: var(--accent); }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-success {
  text-align: center;
  padding: 60px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.footer-social a:hover { color: white; border-color: var(--accent); }

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: white; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 480px; }
  .br-desktop { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 16px; }
  .stat { padding: 0 12px 0 0; }

  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .process-steps { flex-direction: column; align-items: flex-start; }
  .process-arrow { transform: rotate(90deg); margin: 8px 0; padding: 0; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
