/* ============================================
   CENTRIC — CPA Website Redesign Showcase
   Editorial luxury aesthetic
   ============================================ */

:root {
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --ink-muted: #6b6b6b;
  --paper: #faf9f7;
  --paper-warm: #f5f3ef;
  --paper-dark: #eae7e1;
  --accent: #c4973b;
  --accent-light: #dbb96a;
  --accent-dark: #9e7a2f;
  --white: #ffffff;
  --error: #c0392b;
  --success: #27ae60;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  color: var(--accent);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500;
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--ink-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.15);
  width: 100%;
}
.btn-outline:hover { border-color: var(--ink); }

.btn-full { width: 100%; }

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper) 0%, var(--paper-warm) 50%, #f0ece4 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.12;
}

.device-laptop {
  width: 500px;
  height: 320px;
  background: var(--ink);
  border-radius: 12px;
  padding: 12px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.mock-site { padding: 12px; }
.mock-nav { height: 8px; background: var(--paper-dark); border-radius: 4px; margin-bottom: 16px; }
.mock-hero-block { height: 80px; background: linear-gradient(135deg, var(--paper-dark), var(--paper-warm)); border-radius: 8px; margin-bottom: 16px; }
.mock-cards { display: flex; gap: 8px; }
.mock-card { flex: 1; height: 60px; background: var(--paper-dark); border-radius: 6px; }

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  padding: 120px 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.problem-text p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
}

.problem-issues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.issue-card {
  padding: 24px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.issue-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}

.issue-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.issue-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================
   ARCHETYPES SECTION
   ============================================ */

.archetypes {
  padding: 120px 0;
  background: var(--paper);
}

.archetypes .section-desc {
  margin-bottom: 56px;
}

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

.archetype-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  display: block;
}

.archetype-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,0,0,0.1);
}

.archetype-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.archetype-card { position: relative; }

.archetype-preview {
  height: 220px;
  overflow: hidden;
}

.arch-preview-1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c5f4a 0%, #4a8c6e 40%, #6db88d 100%);
  position: relative;
}
.arch-preview-1::after {
  content: 'Small Local Practice';
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(255,255,255,0.9);
}

.arch-preview-2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 40%, #3b82b6 100%);
  position: relative;
}
.arch-preview-2::after {
  content: 'Growing Regional';
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(255,255,255,0.9);
}

.arch-preview-3 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #3f3f5f 100%);
  position: relative;
}
.arch-preview-3::after {
  content: 'Established Multi-Office';
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(255,255,255,0.9);
}

.arch-preview-4 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a3728 0%, #6b5344 40%, #8c7460 100%);
  position: relative;
}
.arch-preview-4::after {
  content: 'Bespoke';
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(255,255,255,0.9);
}

.archetype-info {
  padding: 24px;
}

.archetype-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.archetype-info p {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.archetype-templates {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  opacity: 0.7;
  margin-bottom: 12px;
}

.archetype-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  transition: color var(--transition);
}

.archetype-card:hover .archetype-link { color: var(--accent); }

.archetype-coming {
  opacity: 0.6;
  cursor: default;
}
.archetype-coming:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.process .section-eyebrow { color: var(--accent-light); }
.process .section-title { color: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step {
  flex: 1;
  padding: 0 24px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.step p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.step-connector {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin-top: 24px;
}

/* ============================================
   BEFORE / AFTER SECTION
   ============================================ */

.before-after {
  padding: 120px 0;
  background: var(--paper-warm);
}

.before-after .section-desc { margin-bottom: 48px; }

.ba-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  background: var(--white);
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after { z-index: 1; }

.ba-label {
  position: absolute;
  top: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 3;
}

.ba-before .ba-label {
  left: 16px;
  background: var(--error);
  color: var(--white);
}

.ba-after .ba-label {
  right: 16px;
  background: var(--success);
  color: var(--white);
}

/* Old site mockup */
.ba-mock-old {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  padding: 20px;
}

.old-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 2px solid #0000cc;
}
.old-nav-item { width: 60px; height: 10px; background: #0000cc; border-radius: 0; }

.old-hero {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.old-hero-img {
  width: 40%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  border: 2px solid #999;
}
.old-hero-text { flex: 1; }
.old-h1 { height: 16px; width: 80%; background: #333; margin-bottom: 12px; }
.old-p { height: 10px; width: 100%; background: #888; margin-bottom: 8px; border-radius: 0; }
.old-p.short { width: 60%; }

.old-content {
  display: flex;
  gap: 12px;
}
.old-block {
  flex: 1;
  height: 80px;
  background: #e0e0e0;
  border: 1px solid #ccc;
}

/* New site mockup */
.ba-mock-new {
  width: 100%;
  height: 100%;
  background: var(--white);
}

.new-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.new-logo { width: 32px; height: 8px; background: var(--ink); border-radius: 4px; }
.new-nav-links { display: flex; gap: 16px; }
.new-nav-item { width: 40px; height: 6px; background: rgba(0,0,0,0.15); border-radius: 3px; }
.new-nav-cta { width: 60px; height: 24px; background: var(--ink); border-radius: 12px; }

.new-hero {
  padding: 32px 24px;
  background: linear-gradient(135deg, #2c5f4a, #4a8c6e);
}
.new-hero-content { max-width: 60%; }
.new-eyebrow { width: 80px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 12px; }
.new-h1 { height: 14px; width: 90%; background: rgba(255,255,255,0.9); border-radius: 4px; margin-bottom: 8px; }
.new-h1.short { width: 60%; }
.new-p { height: 8px; width: 80%; background: rgba(255,255,255,0.4); border-radius: 3px; margin: 16px 0; }
.new-btn { width: 100px; height: 28px; background: var(--white); border-radius: 14px; }

.new-cards {
  display: flex;
  gap: 12px;
  padding: 24px;
}
.new-card {
  flex: 1;
  height: 60px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.ba-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-muted);
  pointer-events: auto;
  cursor: ew-resize;
  flex-shrink: 0;
}

.ba-improvements {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.improvement {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.improve-check {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  padding: 120px 0;
  background: var(--white);
}

.pricing .section-title { text-align: center; }
.pricing .section-eyebrow { text-align: center; }
.pricing .section-desc { text-align: center; margin: 0 auto 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--paper);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.04);
}

.price-featured:hover { transform: scale(1.04) translateY(-4px); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 100px;
}

.price-tier {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.6;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 28px;
  vertical-align: super;
  opacity: 0.6;
}

.price-period {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(128,128,128,0.1);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price-featured .price-features li { border-color: rgba(255,255,255,0.1); }
.price-featured .price-features li::before { color: var(--accent-light); }

.price-featured .btn-primary {
  background: var(--accent);
  color: var(--white);
}
.price-featured .btn-primary:hover { background: var(--accent-light); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 40px;
  line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 120px 0;
  background: var(--paper);
}

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

.contact-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.contact-text > p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details p {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 151, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.5;
}

.form-group textarea { resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 48px 0;
  background: var(--ink);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--paper); padding: 24px; gap: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { flex-direction: column; min-height: auto; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-issues { grid-template-columns: 1fr 1fr; }
  .archetype-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 100%; height: 1px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .ba-improvements { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 600px) {
  .problem-issues { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
}
