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

    :root {
      --crimson: #8B2332;
      --crimson-light: #A83245;
      --crimson-dark: #6B1A26;
      --crimson-soft: rgba(139, 35, 50, 0.08);
      --teal: #01BFBF;
      --teal-light: #33CCCC;
      --teal-dark: #019E9E;
      --teal-soft: rgba(1, 191, 191, 0.08);
      --teal-muted: rgba(1, 191, 191, 0.15);
      --olive: #7D8340;
      --olive-light: #9AA04F;
      --olive-dark: #636833;
      --olive-soft: rgba(125, 131, 64, 0.08);
      --ink: #1A1A1A;
      --ink-soft: #2D2D2D;
      --charcoal: #444444;
      --slate: #666666;
      --gray: #888888;
      --silver: #B0B0B0;
      --mist: #E0E0E0;
      --cloud: #F0EFEB;
      --cream: #F8F5F0;
      --warm-white: #FDFCFA;
      --white: #FFFFFF;
      --logo-red: #E63946;
      --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
      --space-xs: 4px;
      --space-sm: 8px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      --space-4xl: 96px;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --radius-2xl: 24px;
      --radius-pill: 100px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
    a { color: var(--teal); }
    a:visited { color: var(--teal); }
    a:hover { color: var(--crimson); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
    .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--space-lg); }

    /* Nav — Floating Glassmorphism */
    .nav {
      position: fixed; top: 16px; left: 24px; right: 24px; z-index: 100;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: var(--radius-xl);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    .nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 100%; padding: 0 var(--space-lg); }
    .nav-logo { display: flex; align-items: center; text-decoration: none; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; }
    .nav-logo .infra { color: var(--ink); }
    .nav-logo .red { color: var(--logo-red); }
    .nav-links { display: flex; gap: var(--space-xl); list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--charcoal); font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:visited { color: var(--charcoal); }
    .nav-links a:hover, .nav-links a.active { color: var(--teal); }
    .nav-links a.active:visited { color: var(--teal); }
    .nav-cta {
      background: var(--crimson); color: var(--white) !important;
      padding: 10px 24px; border-radius: var(--radius-pill);
      font-weight: 600; font-size: 14px; transition: all 0.25s;
    }
    .nav-cta:hover { background: var(--crimson-light); transform: translateY(-1px); }
    .nav-cta .cta-short { display: none; }

    /* Mobile Menu Toggle — hidden on desktop */
    .mobile-menu-toggle {
      display: none; align-items: center; gap: 6px;
      background: none; border: none; cursor: pointer;
      font-family: var(--font); font-size: 13px; font-weight: 600;
      color: var(--charcoal); padding: 6px 10px;
    }
    .mobile-menu-toggle .close-icon { display: none; }
    .mobile-menu-toggle.open .hamburger-icon { display: none; }
    .mobile-menu-toggle.open .close-icon { display: block; }

    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .mobile-menu-overlay.open { display: block; }
    .mobile-menu-panel {
      position: absolute; top: 72px; left: 8px; right: 8px;
      background: var(--white); border-radius: var(--radius-xl);
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      padding: var(--space-lg) 0;
    }
    .mobile-menu-links {
      list-style: none; padding: 0; margin: 0;
    }
    .mobile-menu-links li { border-bottom: 1px solid var(--cloud); }
    .mobile-menu-links li:last-child { border-bottom: none; }
    .mobile-menu-links a {
      display: block; padding: var(--space-md) var(--space-xl);
      text-decoration: none; color: var(--charcoal);
      font-size: 16px; font-weight: 500; transition: background 0.15s;
    }
    .mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--teal); background: var(--cream); }

    /* Hero */
    .hero-section {
      padding: 160px 0 80px;
      position: relative;
    }
    .hero-section .hero-label {
      display: inline-block;
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 2px; color: var(--teal);
      margin-bottom: var(--space-lg);
    }
    .hero-section h1 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 600; line-height: 1.1;
      color: var(--ink);
      max-width: 800px;
      margin-bottom: var(--space-lg);
    }
    .hero-section h1 em, .section-heading em, h2 em, .accent-text {
      font-family: var(--font-accent);
      font-style: italic; font-weight: 400;
      color: var(--crimson);
    }
    .hero-section p {
      font-size: 18px; color: var(--slate);
      max-width: 560px; line-height: 1.7;
      margin-bottom: var(--space-xl);
    }
    .hero-section .hero-actions { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; }
    .hero-section .hero-actions .btn-crimson { padding: 16px 40px; font-size: 16px; }
    .hero-section .hero-actions .btn-outline { border-color: var(--silver); }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-pill);
      font-family: var(--font); font-size: 15px; font-weight: 600;
      text-decoration: none !important; cursor: pointer; border: 2px solid transparent;
      transition: all 0.25s;
    }
    .btn-crimson { background: var(--crimson); color: var(--white) !important; }
    .btn-crimson:hover { background: var(--crimson-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,35,50,0.25); }
    .btn-teal { background: var(--teal); color: var(--white) !important; }
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(1,191,191,0.25); }
    .btn-outline { background: transparent; color: var(--ink) !important; border-color: var(--mist); }
    .btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white) !important; }
    .btn-dark { background: var(--ink); color: var(--white) !important; }
    .btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }
    .btn-white { background: var(--white); color: var(--ink) !important; }
    .btn-white:hover { background: var(--cream); transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--charcoal) !important; padding: 14px 0; text-decoration: none !important; }
    .btn-ghost:hover { color: var(--teal) !important; }
    .btn-sm { padding: 10px 24px; font-size: 14px; }
    .btn-lg { padding: 18px 40px; font-size: 16px; }

    /* Section basics */
    .section { padding: 72px 0; }
    .section-alt { background: var(--cream); }
    .section-label {
      display: inline-block;
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 2px; color: var(--teal);
      margin-bottom: var(--space-md);
    }
    .section h2 {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 600; line-height: 1.2;
      color: var(--ink);
      margin-bottom: var(--space-md);
    }
    .section h3 { font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: var(--space-sm); }
    .section p { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: var(--space-md); }
    .section strong { color: var(--ink); }
    .section a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
    .section a:hover { color: var(--teal-dark); }
    .section hr { border: none; border-top: 1px solid var(--mist); margin: var(--space-2xl) 0; }
    .section ul { list-style: none; padding: 0; margin-left: var(--space-xl); margin-bottom: var(--space-lg); }
    .section ul li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 8px 0; font-size: 15px; color: var(--charcoal); line-height: 1.6;
    }
    .section ul li::before {
      content: ''; flex-shrink: 0; width: 8px; height: 8px;
      border-radius: 50%; background: var(--teal); margin-top: 8px;
    }
    .section blockquote {
      font-family: var(--font-accent);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 400; font-style: italic;
      line-height: 1.5; color: var(--ink);
      max-width: 800px; margin: 0 auto var(--space-xl);
      text-align: center; padding: var(--space-2xl) 0;
      border: none;
    }

    /* Stats Bar */
    .stats-bar {
      padding: var(--space-3xl) 0;
      background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 100%); color: var(--white);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: var(--space-xl); text-align: center;
    }
    .stat-item .stat-number { font-size: 40px; font-weight: 700; color: var(--white); line-height: 1; white-space: nowrap; min-height: 40px; display: flex; align-items: flex-end; justify-content: center; }
    .stat-item:last-child .stat-number { font-size: 34px; letter-spacing: -0.5px; }
    .stat-item .stat-label { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: var(--space-sm); font-weight: 500; }
    .stats-tagline { text-align: center; font-size: 15px; color: var(--silver); margin-top: var(--space-xl); line-height: 1.6; }

    /* Process Steps */
    .process-section { padding: 48px 0 72px; background: var(--cream); }
    .process-header { text-align: center; margin-bottom: var(--space-md); }
    .process-intro {
      text-align: center; font-size: 16px; color: var(--slate);
      max-width: 600px; margin: 0 auto var(--space-2xl); line-height: 1.7;
    }
    .process-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }
    .process-step { position: relative; }
    .process-number { font-size: 48px; font-weight: 700; color: var(--mist); line-height: 1; margin-bottom: var(--space-md); }
    .process-step h3 { font-size: 20px; font-weight: 600; margin-bottom: var(--space-sm); }
    .process-step p { font-size: 15px; color: var(--slate); line-height: 1.7; }
    .process-card {
      padding: var(--space-2xl); border: 1px solid var(--mist);
      border-radius: var(--radius-xl); background: var(--white);
      transition: all 0.3s; position: relative;
    }
    .process-card:hover {
      border-color: var(--teal-muted);
      box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px);
    }
    .process-card .process-number { font-size: 48px; font-weight: 700; color: var(--mist); line-height: 1; margin-bottom: var(--space-md); }
    .process-card h3 { font-size: 20px; font-weight: 600; margin-bottom: var(--space-sm); color: var(--ink); }
    .process-card p { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: var(--space-sm); }
    .process-card .check-list { margin-bottom: var(--space-md); margin-left: 0; }
    .process-card .check-list li { font-size: 14px; padding: 4px 0; }
    .process-card .check-list li::before {
      width: 6px !important; height: 6px !important;
      border-radius: 50%; background: var(--mist) !important;
      background-image: none !important;
      margin-top: 7px;
    }
    .learn-more {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: var(--space-md); font-size: 14px; font-weight: 600;
      color: var(--teal); text-decoration: none !important; transition: gap 0.2s;
    }
    .learn-more:hover { gap: 10px; }

    /* Case Study Card — two-column with stats and image */
    .case-study-section { padding: 16px 0; background: var(--cream); }
    .case-study-card {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl); align-items: center;
      background: var(--cream); border-radius: var(--radius-2xl);
      padding: var(--space-3xl); overflow: hidden;
    }
    .case-study-content .section-label { margin-bottom: var(--space-md); }
    .case-study-content h2 { margin-bottom: var(--space-md); }
    .case-study-content p { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: var(--space-lg); }
    .case-stats {
      display: flex; gap: var(--space-md); margin: var(--space-lg) 0;
    }
    .case-stat {
      background: var(--white); border-radius: var(--radius-lg);
      padding: var(--space-md) var(--space-lg);
      display: flex; flex-direction: column;
    }
    .case-stat-number { font-size: 36px; font-weight: 700; color: var(--crimson); line-height: 1; }
    .case-stat-label { font-size: 13px; color: var(--slate); margin-top: var(--space-xs); }
    .case-study-image {
      display: flex; flex-direction: column; align-items: center; gap: var(--space-lg);
    }
    .case-study-image img { width: 100%; height: auto; object-fit: contain; }
    .case-study-quote blockquote {
      font-family: var(--font-accent); font-style: italic;
      font-size: 16px; line-height: 1.6; color: var(--ink);
      margin: 0; padding: 0; border: none; text-align: center;
    }
    .case-study-quote p {
      font-size: 14px; color: var(--slate); text-align: center; margin-top: var(--space-sm);
    }

    /* Tiers / Pricing */
    .tiers-section { padding: 72px 0; background: var(--white); border-top: 1px solid var(--mist); }
    .tiers-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg); margin-top: var(--space-2xl);
    }
    .tier-card {
      background: var(--white); border: 2px solid var(--mist);
      border-radius: var(--radius-xl); padding: var(--space-2xl);
      position: relative; transition: all 0.3s;
      display: flex; flex-direction: column;
    }
    .tier-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .tier-card .btn { margin-top: var(--space-xl); align-self: flex-start; }
    .tier-card strong { display: block; margin-bottom: 0; }
    .tier-card.featured { border-color: var(--teal); box-shadow: 0 12px 40px rgba(1,191,191,0.18); transform: scale(1.03); z-index: 1; }
    .tier-card.featured:hover { transform: scale(1.03) translateY(-2px); }
    .tier-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--teal); color: var(--white);
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      padding: 6px 20px; border-radius: var(--radius-pill);
    }
    .tier-card h3 { font-size: 20px; font-weight: 600; margin-bottom: var(--space-sm); color: var(--ink); }
    .tier-card p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: var(--space-md); }
    .tier-card ul { margin-bottom: var(--space-lg); }
    .tier-card ul li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--cloud); }
    .tier-card ul li:last-child { border-bottom: none; }
    .tiers-allservices {
      display: flex; align-items: center; gap: var(--space-lg);
      margin-top: var(--space-xl);
      padding: var(--space-lg) var(--space-xl);
      background: var(--white); border: 1px solid var(--cloud);
      border-radius: var(--radius-lg);
    }
    .allservices-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(1, 191, 191, 0.08); border-radius: var(--radius-md);
    }
    .allservices-content h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
    .allservices-content p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.5; }

    /* Contact Section (two-column) */
    .contact-section { padding: 72px 0; background: var(--cream); }
    .contact-section h2 { text-align: center; margin-bottom: var(--space-2xl); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl); align-items: start;
    }
    .contact-info h3, .contact-form-col h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: var(--space-lg); }
    .contact-detail {
      display: flex; gap: var(--space-md); align-items: flex-start;
      margin-bottom: var(--space-lg);
    }
    .contact-detail svg { flex-shrink: 0; margin-top: 2px; }
    .contact-detail strong { font-size: 14px; font-weight: 600; color: var(--ink); }
    .contact-detail div { font-size: 14px; color: var(--slate); line-height: 1.6; }
    .contact-detail a { color: var(--crimson); text-decoration: none; }
    .contact-detail a:hover { text-decoration: underline; }
    .newsletter-box {
      margin-top: var(--space-xl); padding: var(--space-lg);
      background: var(--white); border: 1px solid var(--cloud);
      border-radius: var(--radius-lg);
    }
    .newsletter-box h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
    .newsletter-box p { font-size: 13px; color: var(--slate); margin: 0 0 var(--space-md); line-height: 1.5; }
    .newsletter-form { display: flex; gap: 8px; }
    .newsletter-form input {
      flex: 1; padding: 10px var(--space-md);
      border: 1px solid var(--mist); border-radius: var(--radius-lg);
      font-family: var(--font); font-size: 14px;
    }
    .newsletter-form input:focus { outline: none; border-color: var(--teal); }
    .btn-teal {
      background: var(--teal); color: var(--white) !important; border: none;
      padding: 10px 24px; border-radius: var(--radius-pill);
      font-family: var(--font); font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all 0.2s; text-decoration: none;
    }
    .btn-teal:hover { opacity: 0.85; color: var(--white) !important; }
    .contact-form-col {
      background: var(--white); border: 1px solid var(--cloud);
      border-radius: var(--radius-lg); padding: var(--space-xl);
    }
    .contact-form-inline .form-group { margin-bottom: var(--space-md); }
    .contact-form-inline label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
    .contact-form-inline input, .contact-form-inline select, .contact-form-inline textarea {
      width: 100%; padding: 12px var(--space-md);
      border: 1px solid var(--mist); border-radius: var(--radius-lg);
      font-family: var(--font); font-size: 14px; transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .contact-form-inline input:focus, .contact-form-inline select:focus, .contact-form-inline textarea:focus { outline: none; border-color: var(--teal); }
    .contact-form-inline textarea { resize: vertical; min-height: 100px; }

    /* Quote Section */
    .quote-section { padding: 72px 0; text-align: center; }
    .quote-section blockquote {
      font-family: var(--font-accent);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 400; font-style: italic;
      line-height: 1.5; color: var(--ink);
      max-width: 800px; margin: 0 auto var(--space-xl);
      border: none; padding: 0;
    }

    /* Testimonials Grid (multiple quotes) */
    .testimonials-section { padding: 72px 0; background: var(--cream); }
    .testimonials-section h2 { text-align: center; margin-bottom: var(--space-2xl); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl); max-width: 1000px; margin: 0 auto;
    }
    .testimonial-card {
      background: var(--white); border-radius: var(--radius-xl);
      padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
      border: 1px solid var(--mist);
      position: relative;
      display: flex; flex-direction: column;
    }
    .testimonial-card::before {
      content: '\201C'; font-family: var(--font-accent);
      font-size: 72px; line-height: 0.8; color: var(--silver);
      display: block; margin-bottom: var(--space-sm);
    }
    .testimonial-card p {
      font-family: var(--font-accent);
      font-size: 19px; font-weight: 600; line-height: 1.5;
      color: var(--ink); margin-bottom: auto;
    }
    .testimonial-attribution {
      font-size: 14px; font-weight: 600; color: var(--crimson);
      padding-top: var(--space-md); border-top: 1px solid var(--mist);
      margin-top: var(--space-xl);
    }

    /* FAQ Section */
    .faq-section { padding: 72px 0; }
    .faq-section h2 { text-align: center; margin-bottom: var(--space-2xl); }
    .faq-list { max-width: 740px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--mist); padding: 0;
    }
    .faq-question {
      font-size: 17px; font-weight: 600; color: var(--ink);
      padding: var(--space-lg) 0; cursor: pointer;
      list-style: none; display: flex; justify-content: space-between; align-items: center;
    }
    .faq-question::-webkit-details-marker { display: none; }
    summary.faq-question::after {
      content: '+'; font-size: 20px; font-weight: 400; color: var(--charcoal);
      width: 36px; height: 36px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: var(--cloud);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .faq-item[open] summary.faq-question::after {
      content: '\2212'; background: var(--teal-soft); color: var(--teal);
    }
    details.faq-item .faq-answer {
      padding: 0 0 var(--space-lg); font-size: 15px;
      color: var(--slate); line-height: 1.7;
    }
    details.faq-item .faq-answer p { margin-bottom: var(--space-sm); }

    /* Problem Section Transition Line */
    .problem-transition {
      font-size: 15px !important; font-weight: 600 !important;
      color: var(--teal) !important;
      padding: var(--space-md) var(--space-lg);
      background: var(--teal-soft);
      border-radius: var(--radius-md);
      border-left: 3px solid var(--teal);
      margin-top: var(--space-md) !important;
    }
    .problem-transition a { color: var(--teal-dark) !important; font-weight: 700; text-decoration: underline; }

    /* Case Study Blockquote */
    .case-study-content blockquote {
      border-left: 3px solid var(--crimson); padding: var(--space-md) var(--space-lg);
      margin: var(--space-lg) 0; background: rgba(139,35,50,0.04); border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .case-study-content blockquote p {
      font-family: var(--font-accent); font-style: italic; font-size: 16px !important;
      color: var(--ink) !important; margin-bottom: 0 !important;
    }

    /* Dark Section */
    .dark-section { background: var(--ink); color: var(--white); padding: 72px 0; }
    .dark-section h2 { color: var(--white); }
    .dark-section p { color: var(--silver); }
    .dark-section ul li { color: var(--silver); }
    .dark-section ul li::before { background: var(--teal); }
    .dark-section a { color: var(--teal); }

    /* Problem Section (Sounds Familiar) — two-column with image */
    .problem-section { padding: 72px 0; }
    .problem-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl); align-items: center;
    }
    .problem-image {
      display: flex; align-items: center; justify-content: center;
    }
    .problem-image img { width: 100%; height: auto; object-fit: contain; }
    .problem-content .section-label { margin-bottom: var(--space-md); }
    .problem-content h2 { margin-bottom: var(--space-md); }
    .problem-content p { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: var(--space-lg); }

    /* Team Section (What We Bring) — content left, image right */
    .team-section { padding: 72px 0; background: var(--cream); }
    .team-heading { text-align: center; margin-bottom: var(--space-2xl); }
    .team-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl); align-items: center;
    }
    .team-content .section-label { margin-bottom: var(--space-md); }
    .team-content p { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: var(--space-lg); }
    .team-image {
      display: flex; align-items: center; justify-content: center;
    }
    .team-image img { width: 100%; height: auto; object-fit: contain; }
    .team-content ul { margin-top: var(--space-lg); margin-bottom: var(--space-xl); }
    .problem-content ul { margin-top: var(--space-sm); margin-bottom: var(--space-md); }

    /* Split Layout */
    .split-section { padding: 72px 0; }
    .split-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl); align-items: start;
    }

    /* Check List (for/not-for) */
    .check-list { list-style: none !important; padding: 0; margin-left: var(--space-md); }
    .check-list li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 8px 0; font-size: 15px; color: var(--charcoal); line-height: 1.6;
    }
    .check-list li::before {
      content: '' !important; width: 20px !important; height: 20px !important;
      border-radius: 50%; background: var(--teal) !important;
      margin-top: 2px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E") !important;
      background-size: 14px !important; background-repeat: no-repeat !important; background-position: center !important;
    }
    .cross-list { list-style: none !important; padding: 0; margin: var(--space-md) 0; }
    .cross-list li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 8px 0; font-size: 15px; color: var(--charcoal); line-height: 1.6;
    }
    .cross-list li::before {
      content: '' !important; width: 20px !important; height: 20px !important;
      border-radius: 50%; background: var(--crimson-soft) !important;
      margin-top: 2px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%238B2332' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%238B2332' stroke-width='2' fill='none'/%3E%3C/svg%3E") !important;
      background-size: 12px !important; background-repeat: no-repeat !important; background-position: center !important;
    }

    /* Qualify Section — flows into industries (shared cream background) */
    .qualify-section {
      padding: 72px 0 var(--space-md); background: var(--cream);
      margin-bottom: 0;
    }
    .qualify-section h2 {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 600; line-height: 1.2;
      color: var(--ink);
      margin-bottom: var(--space-md);
    }
    .qualify-section p { font-size: 16px; color: var(--slate); line-height: 1.7; }

    /* Industries Grid — continues from qualify section (seamless overlap) */
    .industries-section {
      padding: calc(var(--space-xl) + 4px) 0 72px; background: var(--cream);
      margin-top: -4px;
    }
    .industries-section h2 {
      margin-bottom: var(--space-xl);
    }
    .industries-section p {
      color: var(--slate); margin-top: var(--space-lg);
    }
    .industries-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg); margin: var(--space-xl) 0;
    }
    .industry-item {
      padding: var(--space-md) 0;
      background: transparent;
      text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
    }
    .industry-icon {
      width: 80px; height: 80px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      overflow: hidden;
    }
    .industry-icon img { width: 100%; height: 100%; object-fit: cover; }
    .industry-name {
      font-size: 15px; color: var(--ink); font-weight: 500;
    }

    /* Qualify section — two-column cards */
    .qualify-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: var(--space-xl); margin-top: var(--space-xl); margin-bottom: 0;
    }
    .qualify-card {
      padding: var(--space-lg) var(--space-lg);
      background: transparent;
      border-radius: 0;
      position: relative;
    }
    .qualify-card::before {
      content: ''; position: absolute;
      left: 0; top: var(--space-sm); bottom: var(--space-sm);
      width: 1px; background: var(--mist);
    }
    .qualify-card h3 {
      font-size: 18px; font-weight: 600; margin-bottom: var(--space-md);
    }
    .qualify-card .check-list li,
    .qualify-card .cross-list li {
      align-items: flex-start;
    }
    .qualify-card .check-list li::before,
    .qualify-card .cross-list li::before {
      margin-top: 3px; flex-shrink: 0;
    }
    .qualify-yes::before {
      background: var(--teal);
    }
    .qualify-yes h3 { color: var(--teal-dark); }
    .qualify-not::before {
      background: var(--charcoal);
    }
    .qualify-not h3 { color: var(--charcoal); }
    .qualify-not .cross-list li::before {
      background: var(--charcoal) !important;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 4.5l7 7m0-7l-7 7' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E") !important;
      background-size: 10px !important; background-repeat: no-repeat !important; background-position: center !important;
    }
    .qualify-subtitle {
      font-size: 17px; color: var(--slate); line-height: 1.6;
      margin-bottom: var(--space-lg);
    }
    .qualify-cta {
      display: flex; gap: var(--space-md); justify-content: center;
      margin-top: var(--space-xl);
    }

    /* Video Embed */
    .video-embed {
      position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
      border-radius: var(--radius-xl); margin: var(--space-lg) 0; background: var(--ink);
    }
    .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .video-caption { text-align: center; font-size: 14px; color: var(--gray); margin-top: var(--space-sm); }

    /* Callouts */
    .callout { padding: 20px 24px; border-radius: var(--radius-md); margin: var(--space-lg) 0; }
    .callout-note { background: var(--cream); border: 1px solid var(--mist); }
    .callout-highlight { background: var(--teal-soft); border: 1px solid var(--teal); }
    .callout-warning { background: #FFF3E0; border: 1px solid #FF9800; }

    /* Access Gate */
    .access-gate { text-align: center; padding: var(--space-2xl) var(--space-lg); background: var(--cream); border-radius: var(--radius-xl); margin: var(--space-xl) 0; }
    .access-form { display: flex; gap: var(--space-sm); justify-content: center; margin: var(--space-lg) 0; flex-wrap: wrap; }
    .access-form input[type="email"] {
      padding: 14px 20px; border: 2px solid var(--mist); border-radius: var(--radius-pill);
      font-family: var(--font); font-size: 16px; min-width: 300px;
    }
    .access-form input[type="email"]:focus { outline: none; border-color: var(--teal); }
    .access-note { font-size: 13px; color: var(--gray); }

    /* FAQ Accordion */
    .faq-list { max-width: 800px; margin: var(--space-2xl) auto 0; }
    .faq-item { border-bottom: 1px solid var(--mist); }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between;
      padding: var(--space-lg) 0; cursor: pointer;
      font-size: 17px; font-weight: 600; color: var(--ink);
      width: 100%; background: none; border: none;
      font-family: var(--font); text-align: left; transition: color 0.2s;
    }
    .faq-question:hover { color: var(--teal); }
    .faq-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: var(--cloud);
      font-size: 20px; color: var(--charcoal);
      transition: transform 0.3s, background 0.3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal-soft); color: var(--teal); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p { padding: 0 0 var(--space-lg); font-size: 15px; color: var(--slate); line-height: 1.7; }

    /* Contact Form */
    .contact-form { max-width: 600px; margin: 0 auto; background: var(--white); border-radius: var(--radius-xl); padding: var(--space-2xl); }
    .form-group { margin-bottom: var(--space-md); }
    .form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 14px var(--space-md);
      border: 2px solid var(--mist); border-radius: var(--radius-md);
      font-family: var(--font); font-size: 15px; transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
    .form-group textarea { min-height: 120px; resize: vertical; }

    /* Footer */
    .footer { background: var(--ink); color: var(--gray); padding: var(--space-3xl) 0 var(--space-lg); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--space-2xl); margin-bottom: var(--space-2xl);
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: var(--gray); margin-top: var(--space-md); }
    .footer-col h4 {
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--silver); margin-bottom: var(--space-md);
    }
    .footer-col ul { list-style: none; }
    .footer-col a { font-size: 14px; color: var(--gray); text-decoration: none; line-height: 2.2; transition: color 0.2s; }
    .footer-col a:hover { color: var(--teal); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: var(--space-lg);
      display: flex; justify-content: space-between;
      font-size: 13px; color: var(--slate);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav { top: 8px; left: 8px; right: 8px; padding: 8px 10px; overflow: visible; }
      .nav .container { padding: 0 var(--space-sm); height: 48px; }
      .nav-logo { font-size: 18px; }
      .nav-links { display: none; }
      .mobile-menu-toggle { display: flex; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form input { width: 100%; }
      .tiers-allservices { flex-direction: column; text-align: center; gap: var(--space-md); }
      .hero-section { padding: 120px 0 60px; }
      .hero-section h1 { font-size: 32px; }
      .section h2 { font-size: 26px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: 1fr; }
      .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .split-grid { grid-template-columns: 1fr; }
      .problem-grid { grid-template-columns: 1fr; }
      .problem-image { max-height: 300px; }
      .team-grid { grid-template-columns: 1fr; }
      .team-image { max-height: 300px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .case-study-card { grid-template-columns: 1fr; }
      .case-study-image { max-height: 300px; }
      .case-stats { flex-wrap: wrap; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .qualify-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-section { padding: var(--space-2xl) 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; gap: var(--space-sm); }
      .access-form { flex-direction: column; align-items: center; }
      .access-form input[type="email"] { min-width: unset; width: 100%; max-width: 400px; }
      .qualify-cta { flex-direction: column; gap: var(--space-md); }
      .qualify-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
      .hero-section .hero-actions { gap: var(--space-md); }
      .hero-section .hero-actions .btn { padding: 12px 24px; font-size: 14px; }
      /* Case study mobile */
      .case-study-card { padding: var(--space-xl) var(--space-md); }
      .case-stats { gap: var(--space-sm); }
      .case-stat { padding: var(--space-sm) var(--space-md); }
      .case-stat-number { font-size: 24px; }
      .case-stat-label { font-size: 11px; }
      .case-study-content .btn { white-space: nowrap; padding: 12px 24px; font-size: 14px; }
      .case-study-quote blockquote { font-size: 14px; }
      /* Buttons — spacing before all buttons on mobile */
      .section .btn, .case-study-content .btn { margin-top: var(--space-lg); }
      /* Method sections mobile */
      #method-intro.section { padding: var(--space-3xl) 0; }
      #method-intro.section .container { max-width: 100%; }
      #method-guide.section { padding: var(--space-3xl) 0; }
      #method-guide.section .container { max-width: 100%; }
      /* Tier cards mobile */
      .tier-card.featured { transform: none; }
      .tier-card.featured:hover { transform: translateY(-2px); }
      /* Checklist spacing — tighter on mobile */
      .check-list li { padding: 4px 0; font-size: 14px; }
      .cross-list li { padding: 4px 0; font-size: 14px; }
      /* Qualify section — reduce gap between cards */
      .qualify-grid { gap: var(--space-md); }
      .qualify-card { padding: var(--space-md); }
      /* Industries grid — keep 2 columns on mobile */
      .industries-grid { grid-template-columns: repeat(2, 1fr) !important; gap: var(--space-md); }
      .industry-icon { width: 60px; height: 60px; }
      .industry-name { font-size: 13px; }
      /* Service card spacing */
      .service-card strong { display: block; margin-top: var(--space-md); margin-bottom: var(--space-sm); }
      .service-select-group { margin-top: var(--space-sm); margin-bottom: var(--space-md); }
      /* Section headings — prevent widow words */
      .section h2, .process-header h2, .case-study-content h2 { text-wrap: balance; }
    }
    @media (max-width: 480px) {
      .hero-section h1 { font-size: 28px; }
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* Method intro transition */
    #method-intro.section { text-align: center; padding: var(--space-4xl) 0; }
    #method-intro.section .container { max-width: 700px; }
    #method-intro.section h2 { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--crimson); font-size: clamp(24px, 3vw, 32px); margin-bottom: var(--space-lg); }
    #method-intro.section p { font-size: 17px; color: var(--slate); line-height: 1.8; }

    /* Method Guide CTA band */
    #method-guide.section { text-align: center; padding: var(--space-4xl) 0; background: var(--teal-soft); }
    #method-guide.section .container { max-width: 700px; }
    #method-guide.section h2 { font-size: clamp(20px, 2.5vw, 26px); margin-bottom: var(--space-xl); }
    #method-guide.section .container { font-size: 16px; color: var(--slate); line-height: 1.8; }
    #method-guide.section p { max-width: 600px; margin: 0 auto var(--space-2xl); }
    #method-guide.section .btn { display: block; margin: var(--space-2xl) auto 0; width: fit-content; }

    /* Service Cards (configurator) */
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: var(--space-lg); margin-top: var(--space-xl);
    }
    .service-card {
      background: var(--white); border: 2px solid var(--mist);
      border-radius: var(--radius-xl); padding: var(--space-xl);
      display: flex; flex-direction: column;
      transition: all 0.3s;
    }
    .service-card:hover { border-color: var(--teal-muted); box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .service-card.selected { border-color: var(--teal); background: var(--teal-soft); }
    .service-card h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
    .service-card p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: var(--space-sm); }
    .service-card p:first-of-type { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: var(--space-sm); }
    .service-card strong { color: var(--crimson); font-weight: 700; }
    .service-card .btn { margin-top: auto; align-self: flex-start; }
    .service-card .btn.added { background: var(--teal); color: var(--white) !important; border-color: var(--teal); }
    .service-select-group { margin-bottom: var(--space-sm); }
    .service-channel-select {
      width: 100%; padding: 10px var(--space-md);
      border: 1px solid var(--mist); border-radius: var(--radius-md);
      font-family: var(--font); font-size: 13px; color: var(--charcoal);
      background: var(--white); cursor: pointer; transition: border-color 0.2s;
    }
    .service-channel-select:focus { outline: none; border-color: var(--teal); }

    /* Floating Configurator Widget */
    .configurator-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: none; }
    .configurator-widget.visible { display: block; }
    .configurator-pill {
      background: var(--crimson); color: var(--white);
      border-radius: var(--radius-pill); padding: 14px 20px;
      display: flex; align-items: center; gap: 10px;
      cursor: pointer; box-shadow: 0 8px 32px rgba(139,35,50,0.4);
      font-size: 14px; font-weight: 600; transition: all 0.25s;
      border: none; font-family: var(--font);
    }
    .configurator-pill:hover { background: var(--crimson-light); transform: translateY(-2px); }
    .configurator-widget.expanded .configurator-pill { background: var(--charcoal); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
    .configurator-widget.expanded .configurator-pill:hover { background: var(--slate); }
    .configurator-badge {
      background: var(--white); color: var(--crimson);
      border-radius: 50%; min-width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700;
    }
    .configurator-panel {
      display: none; position: absolute; bottom: calc(100% + 12px); right: 0;
      width: 320px; background: var(--white);
      border: 1px solid var(--mist); border-radius: var(--radius-xl);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12); padding: var(--space-lg);
    }
    .configurator-widget.expanded .configurator-panel { display: block; }
    .configurator-panel h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: var(--space-md); }
    .configurator-item {
      display: flex; justify-content: space-between; align-items: center;
      padding: 8px 0; border-bottom: 1px solid var(--cloud);
      font-size: 14px; color: var(--charcoal);
    }
    .configurator-item:last-of-type { border-bottom: none; }
    .configurator-item .svc-price { font-size: 12px; color: var(--slate); margin-left: auto; margin-right: var(--space-sm); }
    .configurator-remove { background: none; border: none; cursor: pointer; color: var(--silver); font-size: 16px; padding: 2px 6px; font-family: var(--font); }
    .configurator-remove:hover { color: var(--crimson); }
    .configurator-total { font-size: 13px; color: var(--slate); margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 1px solid var(--mist); font-weight: 600; }
    .configurator-cta { width: 100%; margin-top: var(--space-md); justify-content: center; text-align: center; }

    @media (max-width: 768px) {
      .configurator-widget { bottom: 16px; right: 16px; }
      .configurator-panel { width: calc(100vw - 48px); right: -8px; }
      .services-grid { grid-template-columns: 1fr; }
    }

    /* Client Logos Strip */
    .clients-strip {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: var(--space-2xl) var(--space-3xl);
      padding: var(--space-md) 0;
    }
    .clients-strip img {
      max-height: 36px; width: auto; object-fit: contain;
      filter: grayscale(1) opacity(0.5);
      transition: filter 0.3s;
    }
    .clients-strip img:hover { filter: grayscale(0) opacity(1); }
    #clients.section { padding: var(--space-2xl) 0; }
    #clients.section h2 { text-align: center; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--silver); margin-bottom: var(--space-xl); }
    @media (max-width: 768px) {
      .clients-strip { gap: var(--space-xl) var(--space-2xl); }
      .clients-strip img { max-height: 28px; }
    }

    /* Form Privacy Notice */
    .form-privacy { font-size: 12px; color: var(--gray); text-align: center; margin-top: var(--space-md); line-height: 1.5; }
    .form-privacy a { color: var(--teal); text-decoration: underline; }

    /* Cookie Consent Banner */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
      background: var(--ink); color: var(--silver);
      padding: var(--space-md) var(--space-lg);
      display: none; align-items: center; justify-content: center; gap: var(--space-lg);
      font-size: 14px; line-height: 1.5;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    }
    .cookie-banner.visible { display: flex; }
    .cookie-banner p { margin: 0; max-width: 600px; }
    .cookie-banner a { color: var(--teal); }
    .cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
    .cookie-actions button {
      font-family: var(--font); font-size: 13px; font-weight: 600;
      padding: 8px 20px; border-radius: var(--radius-pill); cursor: pointer;
      border: none; transition: all 0.2s;
    }
    .cookie-accept { background: var(--teal); color: var(--white); }
    .cookie-accept:hover { background: var(--teal-dark); }
    .cookie-decline { background: transparent; color: var(--silver); border: 1px solid var(--slate) !important; }
    .cookie-decline:hover { border-color: var(--silver) !important; color: var(--white); }
    @media (max-width: 768px) {
      .cookie-banner { flex-direction: column; text-align: center; padding: var(--space-lg); gap: var(--space-md); }
    }