
  :root {
    --navy: #1B2A4A;
    --orange: #CC6633;
    --gold: #C9A84C;
    --teal: #2A7F7F;
    --warm-gray: #8C8779;
    --white: #FFFFFF;
    --black: #000000;
    --light-bg: #F8F7F5;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: "Montserrat", sans-serif; color: var(--black); background: var(--white); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--navy); z-index: 100;
    padding: 0 80px; height: 76px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
  .fox-mark { height: 46px; width: auto; filter: brightness(0) invert(1); }
  .nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
  .nav-wordmark .brand { font-family: "Bebas Neue", sans-serif; font-size: 24px; color: var(--white); letter-spacing: 3px; }
  .nav-wordmark .tagline { font-size: 9px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 3px; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); }
  .nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 11px 24px; border-radius: 3px; }
  .nav-cta:hover { background: #b55828 !important; }

  /* PADDING for fixed nav */
  .page-wrap { padding-top: 76px; }

  /* GLOBAL */
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
  .section-title { font-family: "Bebas Neue", sans-serif; font-size: 52px; color: var(--navy); letter-spacing: 1px; margin-bottom: 48px; line-height: 1; }
  .btn-primary { background: var(--orange); color: var(--white); padding: 16px 34px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.1s; display: inline-block; }
  .btn-primary:hover { background: #b55828; transform: translateY(-1px); }
  .btn-secondary { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
  .btn-secondary:hover { color: var(--white); border-color: var(--orange); }
  .page-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }

  /* HERO */
  .hero { background: var(--navy); padding: 110px 80px 100px; position: relative; overflow: hidden; min-height: 540px; display: flex; align-items: center; }
  .hero::before { content: ""; position: absolute; top: -120px; right: -120px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(204,102,51,0.10) 0%, transparent 65%); pointer-events: none; }
  .hero::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal)); }
  .hero-inner { width: 100%; max-width: 1100px; margin: 0 auto; }
  .hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
  .hero-eyebrow::before { content: ""; display: inline-block; width: 32px; height: 2px; background: var(--orange); flex-shrink: 0; }
  .hero h1 { font-family: "Bebas Neue", sans-serif; font-size: 96px; line-height: 0.92; color: var(--white); letter-spacing: 2px; margin-bottom: 32px; max-width: 800px; }
  .hero h1 span { color: var(--orange); }
  .hero-sub { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 48px; font-weight: 400; }
  .hero-ctas { display: flex; gap: 20px; align-items: center; }

  /* PAIN SECTION */
  .pain-section { padding: 90px 0; background: var(--navy); }
  .pain-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
  .pain-section .section-label { color: var(--gold); }
  .pain-section .section-title { color: var(--white); }
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #253050; border-radius: 8px; overflow: hidden; }
  .pain-card { background: #1a2035; padding: 40px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: background 0.25s; position: relative; }
  .pain-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #c9814a; opacity: 0; transition: opacity 0.2s; }
  .pain-card.even { background: #1e2540; }
  .pain-card:hover { background: rgba(201,129,74,0.12); }
  .pain-card:hover::before { opacity: 1; }
  .pain-icon-box { width: 48px; height: 48px; background: #c9814a; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
  .pain-accent-bar { width: 32px; height: 2px; background: #c9814a; margin: 0 auto 14px; }
  .pain-card h4 { font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); text-transform: uppercase; margin-bottom: 10px; line-height: 1.5; }
  .pain-card p { font-size: 13px; color: #7a8aaa; line-height: 1.8; text-align: center; }

  /* PROCESS */
  .process-section { padding: 90px 0; background: var(--light-bg); }
  .process-section .section-title { color: var(--navy); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 50px; }
  .process-connector { position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--gold)); z-index: 0; }
  .process-step { text-align: center; position: relative; z-index: 1; padding: 0 24px; }
  .step-number { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: "Bebas Neue", sans-serif; font-size: 32px; color: var(--white); box-shadow: 0 0 0 4px var(--light-bg), 0 0 0 6px var(--orange); }
  .step-name { font-family: "Bebas Neue", sans-serif; font-size: 28px; color: var(--navy); letter-spacing: 2px; margin-bottom: 10px; }
  .step-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.7; }

  /* AUTOMATION BANNER */
  .automation-banner { background: linear-gradient(135deg, #1a5f5f, var(--teal)); padding: 70px 80px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
  .automation-banner h3 { font-family: "Bebas Neue", sans-serif; font-size: 44px; color: var(--white); letter-spacing: 1px; line-height: 1.05; max-width: 480px; }
  .automation-banner p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 420px; margin-top: 14px; }
  .banner-right { flex-shrink: 0; }

  /* BOTTOM CTA */
  .bottom-cta { padding: 90px 80px; background: var(--white); text-align: center; }
  .bottom-cta h2 { font-family: "Bebas Neue", sans-serif; font-size: 56px; color: var(--navy); letter-spacing: 1px; margin-bottom: 14px; }
  .bottom-cta p { font-size: 16px; color: var(--warm-gray); margin-bottom: 36px; }

  /* PAGE HERO (interior pages) */
  .page-hero { background: var(--navy); padding: 70px 80px 60px; position: relative; }
  .page-hero::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--gold)); }
  .page-hero h1 { font-family: "Bebas Neue", sans-serif; font-size: 64px; color: var(--white); letter-spacing: 2px; line-height: 1; margin-bottom: 14px; max-width: 900px; }
  .page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.75; }

  /* SERVICES */
  .services-section { padding: 80px 0; background: var(--white); }
  .service-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
  .tier-card { border: 1px solid #E8E6E2; border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
  .tier-card:hover { box-shadow: 0 12px 40px rgba(27,42,74,0.12); transform: translateY(-3px); }
  .tier-header { background: var(--navy); padding: 32px 28px 28px; box-sizing: border-box; }
  .tier-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 4px 10px; border-radius: 2px; margin-bottom: 16px; }
  .tier-name { font-family: "Bebas Neue", sans-serif; font-size: 36px; color: var(--white); letter-spacing: 1px; line-height: 1; margin-bottom: 10px; }
  .tier-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; font-style: italic; }
  .tier-body { padding: 28px; background: var(--white); flex: 1; display: flex; flex-direction: column; }
  .tier-best-for { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px; }
  .tier-desc { font-size: 13px; color: #444; line-height: 1.7; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #F0EDE8; }
  .tier-list { list-style: none; margin-bottom: 28px; flex: 1; }
  .tier-list li { font-size: 13px; color: #333; padding: 7px 0; border-bottom: 1px solid #F8F7F5; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
  .tier-list li::before { content: "→"; color: var(--orange); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
  .tier-cta { display: block; text-align: center; background: var(--orange); color: var(--white); padding: 14px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: background 0.2s; margin-top: auto; }
  .tier-cta:hover { opacity: 0.88; }

  /* SYSTEMS SECTION */
  .systems-section { padding: 80px 0; background: var(--light-bg); }
  .systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .system-item { background: var(--white); padding: 28px; border-radius: 4px; border-top: 3px solid var(--gold); }
  .system-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .system-item p { font-size: 13px; color: var(--warm-gray); line-height: 1.7; }

  /* ABOUT PAGE */
  .about-page-section { padding: 80px 0; background: var(--white); }
  .about-hero-split { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; }
  .about-photo-wrap { position: relative; }
  .about-photo { width: 100%; border-radius: 6px; display: block; object-fit: cover; box-shadow: 0 20px 60px rgba(27,42,74,0.18); }
  .about-photo-accent { position: absolute; bottom: -16px; left: -16px; width: 100%; height: 100%; border: 3px solid var(--orange); border-radius: 6px; z-index: -1; }
  .about-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
  .about-name { font-family: "Bebas Neue", sans-serif; font-size: 68px; color: var(--navy); letter-spacing: 1px; line-height: 0.95; margin-bottom: 6px; }
  .about-title-line { font-size: 13px; font-weight: 600; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; }
  .about-bio { font-size: 15px; line-height: 1.9; color: #333; margin-bottom: 22px; }
  .about-photo-bullets { margin-top: 32px; padding: 24px; background: var(--light-bg); border-top: 3px solid var(--gold); border-radius: 4px; box-shadow: 0 2px 12px rgba(27,42,74,0.06); }
  .about-bullets-intro { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.7; }
  .about-bullets { margin: 0 0 0 18px; padding: 0; list-style: disc; }
  .about-bullets li { font-size: 13px; line-height: 1.75; color: #444; margin-bottom: 6px; }
  .about-pillars-section { background: var(--navy); padding: 60px 0; }
  .about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar-item { padding: 32px; background: rgba(255,255,255,0.07); border-top: 4px solid var(--gold); border-radius: 4px; }
  .pillar-item h4 { font-family: "Bebas Neue", sans-serif; font-size: 64px; color: var(--gold); letter-spacing: 2px; line-height: 1; margin-bottom: 12px; }
  .pillar-item p { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 2px; text-transform: uppercase; line-height: 1.5; }
  .cred-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 36px; margin-top: 36px; border-top: 1px solid #E8E6E2; }
  .cred-item h4 { font-family: "Bebas Neue", sans-serif; font-size: 42px; color: var(--orange); letter-spacing: 1px; line-height: 1; margin-bottom: 6px; }
  .cred-item p { font-size: 11px; color: var(--warm-gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; line-height: 1.5; }

  /* VALUES STRIP — kept for other pages */
  .values-strip { background: var(--navy); padding: 60px 0; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .values-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .value-item { padding: 36px 32px; background: rgba(255,255,255,0.03); }
  .value-item h4 { font-family: "Bebas Neue", sans-serif; font-size: 22px; color: var(--orange); letter-spacing: 1px; margin-bottom: 10px; }
  .value-item p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* CONTACT */
  .contact-section { padding: 80px 0; background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 50px; }
  .contact-left h3 { font-family: "Bebas Neue", sans-serif; font-size: 36px; color: var(--navy); letter-spacing: 1px; margin-bottom: 14px; }
  .contact-left p { font-size: 14px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 28px; }
  .booking-box { border-radius: 6px; padding: 32px; margin-bottom: 20px; }
  .booking-box.primary { background: var(--navy); }
  .booking-box.secondary { background: var(--light-bg); border: 1px solid #E8E6E2; }
  .booking-box h4 { font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: 1px; margin-bottom: 8px; }
  .booking-box.primary h4 { color: var(--white); }
  .booking-box.secondary h4 { color: var(--navy); }
  .booking-box p { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
  .booking-box.primary p { color: rgba(255,255,255,0.6); }
  .booking-box.secondary p { color: var(--warm-gray); }
  .btn-gold { background: var(--gold); color: var(--white); padding: 13px 28px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 3px; display: inline-block; transition: opacity 0.2s; }
  .btn-gold:hover { opacity: 0.88; }
  .contact-divider { text-align: center; margin: 28px 0; position: relative; }
  .contact-divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #E8E6E2; }
  .contact-divider span { background: var(--white); padding: 0 16px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-gray); position: relative; }
  .contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .contact-detail .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  .contact-detail span { font-size: 14px; color: #333; font-weight: 500; }
  .form-heading { font-family: "Bebas Neue", sans-serif; font-size: 36px; color: var(--navy); letter-spacing: 1px; margin-bottom: 28px; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); }
  .form-group input, .form-group textarea { border: 1px solid #D8D5CF; border-radius: 3px; padding: 12px 14px; font-size: 14px; font-family: "Montserrat", sans-serif; color: #333; outline: none; transition: border-color 0.2s; background: var(--white); }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* FOOTER */
  footer { background: var(--navy); padding: 48px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
  .footer-logo { display: flex; align-items: center; gap: 14px; }
  .footer-fox { height: 36px; width: auto; filter:brightness(0) invert(1); }
  .footer-left .brand { font-family: "Bebas Neue", sans-serif; font-size: 22px; color: var(--white); letter-spacing: 2px; }
  .footer-left .footer-tagline { font-size: 9px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 3px; }
  .footer-left .footer-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 8px; }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { font-size: 11px; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

  /* ==========================================
     HAMBURGER NAV (desktop: hidden)
     ========================================== */
  .nav-mobile-checkbox { display: none; }
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 1px;
  }

  /* ==========================================
     TABLET (max-width: 1024px)
     ========================================== */
  @media (max-width: 1024px) {
    nav { padding: 0 40px; }
    .page-inner { padding: 0 40px; }
    .pain-section-inner { padding: 0 40px; }
    .hero { padding: 80px 40px 70px; }
    .hero h1 { font-size: 72px; }
    .page-hero { padding: 60px 40px 50px; }
    .page-hero h1 { font-size: 50px; }
    .about-hero-split { grid-template-columns: 320px 1fr; gap: 48px; }
    .service-tiers { grid-template-columns: repeat(2, 1fr); }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-connector { display: none; }
    .automation-banner { padding: 60px 40px; gap: 40px; }
    .bottom-cta { padding: 70px 40px; }
    footer { padding: 40px; }
    .contact-grid { gap: 48px; }
  }

  /* ==========================================
     MOBILE (max-width: 768px)
     ========================================== */
  @media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body { overflow-x: hidden; }
    img { max-width: 100%; height: auto; }

    /* Nav — compact base for all pages (horizontal scroll) */
    nav { padding: 0 16px; height: 64px; gap: 0; }
    .nav-wordmark .brand { font-size: 20px; }
    .nav-wordmark .tagline { display: none; }
    .fox-mark { height: 36px !important; }
    .nav-links {
      gap: 6px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      flex-shrink: 1;
      min-width: 0;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a {
      white-space: nowrap;
      font-size: 9px;
      letter-spacing: 1px;
      padding: 10px 6px;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .nav-cta { padding: 8px 12px !important; }
    .page-wrap { padding-top: 64px; }

    /* Nav — hamburger mode (about.html, has .nav-mobile-checkbox) */
    nav:has(.nav-mobile-checkbox) {
      height: auto;
      min-height: 64px;
      flex-wrap: wrap;
      padding: 10px 16px;
      gap: 0;
    }
    nav:has(.nav-mobile-checkbox) .nav-logo { flex: 1; align-self: center; }
    .nav-hamburger { display: flex; }
    .nav-mobile-checkbox ~ .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
      overflow: visible;
      min-width: unset;
      flex-shrink: unset;
    }
    .nav-mobile-checkbox:checked ~ .nav-links { display: flex; }
    .nav-mobile-checkbox:checked + .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-mobile-checkbox:checked + .nav-hamburger span:nth-child(2) { opacity: 0; }
    .nav-mobile-checkbox:checked + .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    nav:has(.nav-mobile-checkbox) .nav-links li { width: 100%; }
    nav:has(.nav-mobile-checkbox) .nav-links a {
      padding: 13px 8px;
      font-size: 12px;
      letter-spacing: 1.5px;
      white-space: normal;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    nav:has(.nav-mobile-checkbox) a.nav-cta {
      display: flex !important;
      justify-content: center;
      width: 100%;
      box-sizing: border-box;
      padding: 13px 16px !important;
      margin-top: 6px;
    }

    /* Global containers */
    .page-inner { padding: 0 20px; }
    .pain-section-inner { padding: 0 20px; }

    /* Hero */
    .hero { padding: 56px 20px 48px; min-height: 0; }
    .hero h1 { font-size: 46px; max-width: 100%; }
    .hero-sub { font-size: 14px; margin-bottom: 32px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }

    /* Page hero */
    .page-hero { padding: 48px 20px 36px; }
    .page-hero h1 { font-size: 34px; }
    .page-hero p { font-size: 14px; max-width: 100%; }

    /* Section titles */
    .section-title { font-size: 34px; margin-bottom: 28px; }

    /* Buttons — full width on mobile */
    .btn-primary {
      display: block;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
      margin-right: 0 !important;
      margin-bottom: 12px;
    }

    /* About page split — stacks to single column, photo on top */
    .about-page-section { padding: 40px 0; overflow: hidden; }
    .about-hero-split { grid-template-columns: 1fr; gap: 32px; }
    .about-photo-wrap { max-width: 340px; margin: 0 auto; }
    .about-photo-accent { display: none; }
    .about-name { font-size: 46px; }

    /* About photo bullets */
    .about-photo-bullets { margin-top: 20px; padding: 20px; }
    .about-bullets-intro { font-size: 12px; }
    .about-bullets li { font-size: 12px; }

    /* About pillars — stack vertically */
    .about-pillars-section { padding: 40px 0; }
    .about-pillars { grid-template-columns: 1fr; gap: 12px; }
    .pillar-item { padding: 24px 20px; }
    .pillar-item h4 { font-size: 48px; }

    /* Cred bar */
    .cred-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; margin-top: 24px; }
    .cred-item h4 { font-size: 30px; }

    /* Services — stack vertically */
    .services-section { padding: 48px 0; }
    .service-tiers { grid-template-columns: 1fr; gap: 20px; }

    /* Pain grid */
    .pain-section { padding: 60px 0; }
    .pain-grid { grid-template-columns: 1fr; }

    /* Process */
    .process-section { padding: 60px 0; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
    .process-connector { display: none; }

    /* Automation banner */
    .automation-banner { flex-direction: column; padding: 48px 20px; gap: 24px; align-items: flex-start; }
    .automation-banner h3 { font-size: 32px; max-width: 100%; }
    .automation-banner p { font-size: 14px; max-width: 100%; margin-top: 10px; }
    .banner-right { width: 100%; }

    /* Systems */
    .systems-section { padding: 48px 0; }
    .systems-grid { grid-template-columns: 1fr; }

    /* Values */
    .values-strip { padding: 48px 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .values-grid--3 { grid-template-columns: 1fr; }

    /* Contact */
    .contact-section { padding: 48px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    footer { flex-direction: column; align-items: flex-start; padding: 36px 20px; gap: 20px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }

    /* Bottom CTA */
    .bottom-cta { padding: 60px 20px; }
    .bottom-cta h2 { font-size: 36px; }
    .bottom-cta p { font-size: 14px; margin-bottom: 28px; }
  }
