/* === BASE TOKENS === */
:root {
  --bg: #faf9f6;
  --bg-alt: #f2f0eb;
  --fg: #1a1916;
  --fg-muted: #6b6660;
  --accent: #c8420b;
  --accent-light: #fef3ef;
  --surface: #ffffff;
  --border: #e5e1d8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

/* === LAYOUT === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-primary:hover { background: #a8350a; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--fg);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: var(--bg-alt); }
.btn-closing {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 36px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-closing:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: #a8350a !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav.open .nav-links { display: flex; }
}

/* === HERO === */
.hero {
  background: var(--bg);
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.browser-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}
.browser-bar {
  background: var(--bg-alt);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); display: inline-block; }
.mockup-content { padding: 24px; }
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mock-logo { font-weight: 600; font-size: 0.9rem; color: var(--fg); }
.mock-links { font-size: 0.75rem; color: var(--fg-muted); }
.mock-hero-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 20px;
}
.mock-cta {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}
.how-it-works h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 480px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* === WHOM === */
.whom {
  padding: 100px 0;
  background: var(--bg);
}
.whom h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 560px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  transition: box-shadow 0.2s ease;
}
.industry-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.industry-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.industry-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-note {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.pricing-card.featured {
  background: var(--fg);
  border-color: var(--fg);
  color: white;
}
.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-price,
.pricing-card.featured li { color: white; }
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--fg);
  margin-bottom: 24px;
}
.pricing-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.5); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-footer {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* === PRICING SETUP / MONTHLY === */
.pricing-setup {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fg);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-setup-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.pricing-card.featured .pricing-setup { color: white; }
.pricing-card.featured .pricing-setup-label { color: rgba(255,255,255,0.6); }
.pricing-monthly {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-monthly { color: rgba(255,255,255,0.65); }

/* === ADD-ON SERVICES === */
.addons-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.addons-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  text-align: center;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.addon-name {
  font-size: 0.82rem;
  color: var(--fg);
  font-weight: 600;
}
.addon-price {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
@media (max-width: 768px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
  .pricing-setup { font-size: 1.4rem; }
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 100px 0;
  color: white;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 24px;
}
.closing p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-promise {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.95) !important;
  margin-top: 24px !important;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col div {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* === HERO ACTIONS === */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* === BROWSER MOCKUP EXTRAS === */
.browser-url {
  font-size: 0.72rem;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  flex: 1;
}
.mock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === PRICING CTA === */
.pricing-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--fg);
  transition: background 0.15s, border-color 0.15s;
}
.pricing-cta:hover { background: var(--bg-alt); border-color: var(--fg-muted); }
.pricing-cta--featured {
  background: white;
  border-color: white;
  color: var(--fg);
}
.pricing-cta--featured:hover { background: rgba(255,255,255,0.9); }

/* === CONTACT === */
.contact {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form .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: 0.82rem;
  font-weight: 600;
  color: var(--fg);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.form-submit:hover:not(:disabled) { background: #a8350a; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  margin-top: 12px;
  font-size: 0.88rem;
  text-align: center;
  min-height: 20px;
}
.form-status--success { color: #1a7a3c; }
.form-status--error { color: #c0392b; }

/* === STATS BAR === */
.stats {
  background: var(--fg);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* === LOCAL SEO === */
.seo {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.seo h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.seo-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.seo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.seo-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.seo-icon { flex-shrink: 0; margin-top: 2px; }
.seo-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}
.seo-list span {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
/* SERP mockup card */
.serp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.serp-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.serp-dot--google {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75%);
  flex-shrink: 0;
}
.serp-search {
  font-size: 0.82rem;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
  flex: 1;
}
.serp-results { padding: 16px; }
.serp-map-pack { display: flex; flex-direction: column; gap: 10px; }
.serp-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.serp-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}
.serp-result--top {
  background: var(--accent-light);
  border-color: var(--accent);
}
.serp-pin { flex-shrink: 0; }
.serp-biz { flex: 1; }
.serp-biz-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.serp-biz-stars { font-size: 0.75rem; color: #f5a623; }
.serp-biz-stars span { color: var(--fg-muted); }
.serp-biz-stars--muted { color: var(--fg-muted); }
.serp-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.testimonials h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
}
.testimonial-stars {
  color: #f5a623;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-biz {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .seo-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 72px; }
  .section-inner, .hero-inner { padding: 0 20px; }
  .industry-grid { grid-template-columns: 1fr; }
  .how-it-works, .whom, .pricing, .contact, .seo, .testimonials { padding: 64px 0; }
  .closing { padding: 64px 0; }
  .contact-form-wrap { padding: 24px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2rem; }
}