/* =============================================
   OpenClaw Setup — Styles
   Design language: agentcommandkit.com aesthetic
   Color: Red accent (#DC2626) on near-black bg
   ============================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #050508;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.055);
  --bg-code: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(255,255,255,0.1);
  --text: #e8e8ed;
  --text-dim: #8a8a9a;
  --text-muted: #5a5a6a;
  --accent: #DC2626;
  --accent-hover: #B91C1C;
  --accent-glow: rgba(220,38,38,0.12);
  --accent-glow-strong: rgba(220,38,38,0.25);
  --accent2: #FF6B6B;
  --green: #22c55e;
  --yellow: #FFD93D;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --nav-height: 64px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orb-drift {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5,5,8,0.8);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(5,5,8,0.95);
  border-color: var(--border-accent);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.nav-logo-openclaw { color: var(--accent); }
.nav-logo-setup    { color: var(--text); }

.btn-nav {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-drift 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: fadeInUp 0.6s ease forwards;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--bg-card);
  padding: 8px 16px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* Avatar */
.avatar-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.avatar-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px var(--accent-glow-strong);
  object-fit: cover;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

/* Headline */
.hero-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 0%, #ffb3b3 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.br-desktop { display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); }

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.stat-pill {
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 7px 16px;
  background: var(--bg-card);
}

/* CTAs */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  transition: color 0.2s;
  z-index: 1;
}
.scroll-indicator:hover { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow-strong);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid var(--border-accent);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-lg { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.section-alt { background: rgba(255,255,255,0.015); }
.section:last-of-type { border-bottom: none; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-card {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(220,38,38,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-size: 14px; font-weight: 600; color: var(--text); }
.trust-text span { font-size: 13px; color: var(--text-dim); }

/* ===== MODULE CARDS (Problem) ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.module-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 28px 32px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.module-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}
.module-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--card-accent, var(--accent));
  border-radius: 0 2px 2px 0;
}
.module-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--card-accent, var(--accent));
  opacity: 0.7;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.module-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.module-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(220,38,38,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-text strong { font-size: 14px; font-weight: 600; color: var(--text); }
.feature-text span { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

/* ===== EXPERT ===== */
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.expert-video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-facade {
  position: relative;
  cursor: pointer;
  display: block;
}
.video-facade img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.video-facade:hover img { opacity: 0.8; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.video-facade:hover .play-overlay { background: rgba(0,0,0,0.45); }
.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220,38,38,0.5);
  padding-left: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-facade:hover .play-btn {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(220,38,38,0.6);
}
.play-btn-sm { width: 40px; height: 40px; padding-left: 3px; }
.video-iframe-container {
  position: relative;
  aspect-ratio: 16/9;
}
.video-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bio-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.expert-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.expert-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: var(--text-dim); font-weight: 500; }

/* ===== VIDEO CARDS ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.video-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.video-card .video-facade img {
  max-height: 180px;
  object-fit: cover;
}
.video-meta {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.video-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: opacity 0.2s;
}
.video-link:hover { opacity: 0.75; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-accent); }
.quote-mark {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 20px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 1px; }
.author-info strong { font-size: 14px; font-weight: 600; color: var(--text); }
.author-info span { font-size: 12px; color: var(--text-dim); }

/* ===== PRICING CARD ===== */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-gradient-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
}
.pricing-inner { padding: 40px 40px 36px; }
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 6px;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.3;
}
.pricing-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}
.check-icon { flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ===== LEAD FORM ===== */
.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}
.optional {
  color: var(--text-muted);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-code);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238a8a9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group select option { background: #111118; color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--accent);
  background: rgba(220,38,38,0.05);
}
.field-error {
  font-size: 12px;
  color: var(--accent);
  min-height: 16px;
  display: block;
}

/* Checkbox */
.form-group-check { margin-bottom: 28px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--border-accent);
  background: var(--bg-code);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.checkbox-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Submit button loading */
.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.spinner { animation: spin 0.8s linear infinite; }

/* Success state */
.success-state {
  text-align: center;
  padding: 48px 20px;
}
.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.success-state h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.success-state p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-card);
}
.faq-item[open] { background: var(--bg-card-hover); }
.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question::-webkit-details-marker { display: none; }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s;
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  :root { --nav-height: 58px; }

  .nav-logo { font-size: 15px; }

  .hero { padding: calc(var(--nav-height) + 32px) 0 64px; }
  .hero-headline { font-size: 30px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .br-desktop { display: none; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { border-radius: 0; }

  .problem-grid,
  .features-grid,
  .testimonials-grid,
  .videos-grid { grid-template-columns: 1fr; }

  .expert-grid { grid-template-columns: 1fr; gap: 28px; }

  .pricing-deliverables { grid-template-columns: 1fr; }
  .pricing-inner { padding: 28px 24px; }

  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .section { padding: 72px 0; }
  .section-title { font-size: 26px; }

  .expert-stats { gap: 20px; }
  .stat-num { font-size: 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .stat-pill { width: 100%; max-width: 220px; text-align: center; }
}
