/* AI Upscale — shared site styles */

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

    /*
      COLOR PSYCHOLOGY:
      --navy:  Deep authority, trust, intelligence — grounds the brand
      --amber: Energy, optimism, ambition — triggers forward motion & excitement
      --cream: Warm approachability — avoids cold sterility of pure white
    */
    :root {
      --navy:        #081325;
      --navy-mid:    #0d1d38;
      --navy-light:  #122040;
      --amber:       #f09238;
      --amber-hot:   #e18028;
      --amber-dim:   #fff3dc;
      --cream:       #faf8f4;
      --ink:         #081325;
      --muted:       #7a8099;
      --border:      #e4dfd5;
      --border-navy: #1a2f4a;
      --card:        #ffffff;
      --success:     #00b87a;
      --radius: 5px;
      --font-display: 'Rajdhani', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--ink);
      min-height: 100vh;
      font-size: 16px;
      line-height: 1.6;
    }

    /* ── SKIP LINK ── */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      z-index: 200;
      background: var(--amber);
      color: var(--navy);
      padding: 10px 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: var(--radius);
    }
    .skip-link:focus { top: 12px; }

    /* ── NAV ── */
    .site-nav,
    nav.site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 12px 48px;
      background: var(--navy);
      border-bottom: 1px solid var(--border-navy);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }
    .nav-links > a:not(.nav-cta):not(.nav-cta-audit) {
      color: #8a9ab8;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: var(--radius);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links > a:not(.nav-cta):not(.nav-cta-audit):hover {
      color: #fff;
      background: rgba(255,255,255,0.06);
    }
    .nav-cta-audit {
      background: transparent;
      color: var(--amber);
      border: 1.5px solid rgba(240,146,56,0.55);
      padding: 9px 18px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border-radius: var(--radius);
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .nav-cta-audit:hover { background: rgba(240,146,56,0.12); color: #fff; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      margin-left: auto;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #8a9ab8;
      border-radius: 1px;
      transition: background 0.2s;
    }
    .nav-toggle:hover span { background: var(--amber); }

    body.has-subpage-nav { padding-top: 72px; }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .nav-logo img {
      height: clamp(42px, 5vw, 64px);
      width: auto;
      display: block;
    }

    .nav-cta {
      background: var(--amber);
      color: var(--navy);
      border: none;
      padding: 10px 22px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border-radius: var(--radius);
      text-decoration: none;
      transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    }
    .nav-cta:hover { background: var(--amber-hot); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240,146,56,0.4); }

    /* ── HERO ── */
    .hero-wrapper {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .hero-wrapper::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(to bottom, transparent, var(--cream));
      pointer-events: none;
      z-index: 2;
    }

    @keyframes pulse-node {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.65; transform: scale(1.15); }
    }
    @keyframes line-glow {
      0%, 100% { opacity: 0.35; }
      50% { opacity: 0.85; }
    }
    .hero-pulse { animation: pulse-node 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
    .hero-line-glow { animation: line-glow 4s ease-in-out infinite; }
    .hero-line-glow-delay { animation: line-glow 4s ease-in-out 1.5s infinite; }
    /* ── HERO ── */
    .hero {
      padding: 120px 48px 100px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
      min-height: 480px;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-right: 48px;
    }

    .hero-art {
      position: relative;
      height: 480px;
      overflow: hidden;
      border-left: 1px solid var(--border-navy);
    }

    .hero-art svg {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-art-fade-left,
    .hero-art-fade-right { display: none; }

    .hero-art-mobile { display: none; }

    .hero-logo-wrap {
      margin-bottom: 32px;
    }

    .hero-logo-img {
      width: clamp(200px, 28vw, 360px);
      height: auto;
      display: block;
    }

    .hero-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid rgba(240,146,56,0.4);
      background: rgba(240,146,56,0.08);
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 32px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      max-width: 820px;
      margin-bottom: 28px;
      color: #fff;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--amber);
    }

    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: #8a9ab8;
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .btn-primary {
      background: var(--amber);
      color: var(--navy);
      border: none;
      padding: 16px 36px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border-radius: var(--radius);
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover { background: var(--amber-hot); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(240,146,56,0.45); }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.25);
      padding: 14px 28px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border-radius: var(--radius);
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-secondary:hover { border-color: var(--amber); background: rgba(240,146,56,0.08); transform: translateY(-1px); }

    .hero-note {
      font-size: 13px;
      color: #5a6a88;
      font-style: italic;
    }

    /* ── STATS ── */
    .stats-wrap {
      background: linear-gradient(to bottom, var(--navy) 0%, #0a1628 40%, var(--cream) 100%);
      padding: 0 0 40px;
      margin-top: -40px;
      position: relative;
      z-index: 1;
    }
    .stats {
      border: 1px solid var(--border-navy);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.04);
      padding: 40px 48px;
      display: flex;
      gap: 0;
      max-width: 1100px;
      margin: 0 auto 24px;
    }
    .stats-footnotes {
      max-width: 1100px;
      margin: 0 auto 56px;
      padding: 0 48px;
      font-size: 12px;
      color: #2a3548;
      line-height: 1.65;
    }
    .stats-footnotes a { color: var(--amber-hot); font-weight: 500; }

    .stat {
      flex: 1;
      padding: 0 40px 0 0;
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; padding-right: 0; padding-left: 40px; }

    .stat-num {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-num span { color: var(--amber); }

    .stat-label {
      font-size: 13px;
      color: #8a9ab8;
      font-weight: 400;
    }

    /* ── SERVICES ── */
    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px 100px;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber-hot);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      line-height: 1.1;
      color: var(--navy);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--card);
      padding: 36px 32px;
      transition: background 0.22s;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--amber);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.28s ease;
    }
    .service-card:hover { background: var(--amber-dim); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 38px;
      height: 38px;
      border: 1.5px solid var(--navy-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 15px;
      color: var(--navy);
      transition: background 0.22s, border-color 0.22s;
    }
    .service-card:hover .service-icon { background: var(--amber); border-color: var(--amber); }

    .service-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
      color: var(--navy);
    }

    .service-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ── FORM SECTION ── */
    .form-section {
      background: var(--navy);
      color: var(--cream);
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .form-section::before {
      content: '';
      position: absolute;
      top: 0; right: -20%;
      width: 60%; height: 100%;
      background: radial-gradient(ellipse at top right, rgba(240,146,56,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .form-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .form-intro .section-label { color: var(--amber); }

    .form-intro .section-title { color: #fff; }

    .form-intro p {
      margin-top: 20px;
      font-size: 15px;
      color: #8a9ab8;
      font-weight: 300;
      line-height: 1.7;
      max-width: 380px;
    }

    .trust-items { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }

    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 14px;
      color: #8a9ab8;
      font-weight: 300;
    }

    .trust-dot {
      width: 6px;
      height: 6px;
      background: var(--amber);
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }

    /* Form */
    form { display: flex; flex-direction: column; gap: 20px; }

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

    .field { display: flex; flex-direction: column; gap: 7px; }

    label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6a7a98;
    }

    input, select, textarea {
      background: #091525;
      border: 1px solid var(--border-navy);
      color: #e8eaf0;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      padding: 14px 16px;
      border-radius: var(--radius);
      width: 100%;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }

    input::placeholder, textarea::placeholder { color: #2e3d5a; }

    input:focus, select:focus, textarea:focus {
      border-color: var(--amber);
      background: #060f1e;
      box-shadow: 0 0 0 3px rgba(240,146,56,0.12);
    }

    select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a7a98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      background-color: #091525;
    }

    textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

    .submit-btn {
      background: var(--amber);
      color: var(--navy);
      border: none;
      padding: 17px 32px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border-radius: var(--radius);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      width: 100%;
      letter-spacing: 0.02em;
    }
    .submit-btn:hover { background: var(--amber-hot); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(240,146,56,0.4); }
    .submit-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

    .form-note { font-size: 12px; color: #3a4a68; text-align: center; font-weight: 300; }
    .form-step-label { font-size: 12px; color: var(--amber); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
    .form-step-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .form-step-actions .submit-btn { flex: 1; min-width: 160px; }
    .form-back-btn {
      background: transparent;
      color: #8a9ab8;
      border: 1px solid var(--border-navy);
      padding: 17px 24px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border-radius: var(--radius);
      transition: border-color 0.2s, color 0.2s;
    }
    .form-back-btn:hover { border-color: var(--amber); color: #fff; }
    .form-next-btn {
      background: var(--amber);
      color: var(--navy);
      border: none;
      padding: 17px 32px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border-radius: var(--radius);
      width: 100%;
      transition: background 0.2s;
    }
    .form-next-btn:hover { background: var(--amber-hot); }
    .form-mailto { font-size: 13px; color: #6a7a98; margin-top: 16px; text-align: center; }
    .form-mailto a { color: var(--amber); }

    /* Success state */
    .success-msg {
      display: none;
      text-align: center;
      padding: 48px 32px;
      border: 1px solid rgba(0,184,122,0.25);
      border-radius: var(--radius);
      background: rgba(0,184,122,0.06);
    }
    .success-msg.show { display: block; }
    .success-icon {
      width: 52px; height: 52px;
      background: var(--success);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 24px;
    }
    .success-msg h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .success-msg p { font-size: 14px; color: #8a9ab8; font-weight: 300; }

    /* ── SOCIAL PROOF ── */
    .proof-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px 80px;
    }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .proof-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .proof-quote {
      font-size: 14px;
      font-weight: 300;
      color: #333344;
      line-height: 1.7;
      flex: 1;
    }
    .proof-quote::before { content: '\201C'; color: var(--amber); font-size: 24px; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
    .proof-author { font-size: 13px; font-weight: 600; color: var(--navy); }
    .proof-role { font-size: 12px; color: var(--muted); font-weight: 300; }
    .case-study {
      margin-top: 32px;
      background: var(--navy);
      border-radius: var(--radius);
      padding: 36px 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .case-step-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
    .case-step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
    .case-step-text { font-size: 13px; color: #8a9ab8; line-height: 1.65; font-weight: 300; }

    /* ── TOOLS ── */
    .tools-section { background: var(--cream); }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .tool-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .tool-card:hover { border-color: var(--amber); transform: translateY(-2px); }
    .tool-icon { font-size: 28px; margin-bottom: 4px; }
    .tool-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); }
    .tool-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
    .tool-link {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      color: var(--amber-hot);
      text-decoration: none;
      letter-spacing: 0.03em;
    }
    .tool-link:hover { color: var(--amber); }

    /* ── FOOTER ── */
    .site-footer,
    footer.site-footer {
      background: var(--navy);
      border-top: 1px solid var(--border-navy);
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 48px 32px;
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 32px;
    }
    .footer-brand img { height: 32px; width: auto; opacity: 0.7; margin-bottom: 12px; display: block; }
    .footer-brand p { font-size: 13px; color: #4a5a78; font-weight: 300; line-height: 1.6; max-width: 240px; }
    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 14px;
    }
    .footer-col a,
    .footer-col span {
      display: block;
      font-size: 13px;
      color: #6a7a98;
      text-decoration: none;
      margin-bottom: 10px;
      font-weight: 300;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      padding: 20px 48px 28px;
      border-top: 1px solid var(--border-navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
      color: #3a4a68;
    }
    .footer-bottom a { color: #6a7a98; text-decoration: none; }
    .footer-bottom a:hover { color: var(--amber); }

    .footer-logo img { height: 28px; width: auto; opacity: 0.55; }
    .footer-copy { font-size: 13px; color: #3a4a68; font-weight: 300; }

    /* ── STICKY MOBILE CTA ── */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: var(--navy);
      border-top: 1px solid var(--border-navy);
      padding: 10px 16px;
      gap: 10px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    }
    .sticky-mobile-cta a {
      flex: 1;
      text-align: center;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: var(--radius);
    }
    .sticky-audit { background: transparent; color: var(--amber); border: 1.5px solid rgba(240,146,56,0.5); }
    .sticky-contact { background: var(--amber); color: var(--navy); }

    /* ── PRIVACY PAGE ── */
    .legal-page { max-width: 760px; margin: 0 auto; padding: 48px 48px 100px; }
    .legal-page h1 { font-family: var(--font-display); font-size: 36px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; color: var(--navy); }
    .legal-page .legal-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
    .legal-page h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin: 36px 0 12px; color: var(--navy); }
    .legal-page p, .legal-page li { font-size: 15px; font-weight: 300; color: #333344; line-height: 1.75; margin-bottom: 14px; }
    .legal-page ul { margin: 0 0 16px 20px; }

    /* ── AUDIT CTA BANNER ── */
    .audit-banner {
      background: var(--amber);
      padding: 64px 48px;
    }
    .audit-banner-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
    }
    .audit-banner-text { flex: 1; min-width: 0; }
    .audit-banner-title {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.5vw, 40px);
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .audit-banner-title em { font-style: normal; color: #fff; }
    .audit-banner-sub {
      font-size: 15px;
      font-weight: 300;
      color: var(--navy-light);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 20px;
      opacity: 0.85;
    }
    .audit-banner-meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .audit-banner-meta span {
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      opacity: 0.7;
    }
    .audit-banner-cta {
      flex-shrink: 0;
      text-align: center;
    }
    .audit-btn {
      display: inline-block;
      background: var(--navy);
      color: #fff;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      padding: 18px 40px;
      border-radius: var(--radius);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .audit-btn:hover {
      background: #040e1c;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(8,19,37,0.35);
    }
    .audit-btn-note {
      font-size: 12px;
      color: var(--navy);
      opacity: 0.55;
      margin-top: 10px;
      font-weight: 300;
    }
    .service-audit-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--amber-hot);
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .service-audit-link:hover { color: var(--amber); }

    /* ── BLOG SECTION ── */
    .blog-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px 60px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }
    .blog-card:hover {
      border-color: var(--amber);
      transform: translateY(-3px);
    }
    .blog-card-top {
      background: var(--navy);
      padding: 28px 24px 20px;
      position: relative;
    }
    .blog-card-top::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--amber);
    }
    .blog-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid rgba(240,146,56,0.35);
      padding: 3px 10px;
      border-radius: 2px;
      margin-bottom: 14px;
    }
    .blog-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.2;
    }
    .blog-card-body {
      padding: 20px 24px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .blog-excerpt {
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 16px;
    }
    .blog-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: var(--border);
      font-weight: 400;
    }
    .blog-meta-date { color: var(--muted); }
    .blog-read-more {
      font-size: 12px;
      font-weight: 600;
      color: var(--amber-hot);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .blog-cta-row {
      text-align: center;
      margin-top: 40px;
    }
    .blog-cta-link {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy);
      border: 2px solid var(--navy);
      padding: 12px 32px;
      border-radius: var(--radius);
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .blog-cta-link:hover { background: var(--navy); color: #fff; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      body { padding-bottom: 64px; }
      .site-nav, nav.site-nav { padding: 12px 20px; }
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--navy-mid);
        border-bottom: 1px solid var(--border-navy);
        padding: 12px 20px 20px;
        gap: 4px;
      }
      .nav-links.open { display: flex; }
      .nav-links > a:not(.nav-cta):not(.nav-cta-audit) { padding: 12px; }
      .nav-cta, .nav-cta-audit { text-align: center; margin-top: 4px; }
      .sticky-mobile-cta { display: flex; }
      .proof-grid { grid-template-columns: 1fr; }
      .case-study { grid-template-columns: 1fr; padding: 28px 24px; }
      .tools-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; padding: 36px 24px 24px; }
      .footer-bottom { padding: 16px 24px 24px; flex-direction: column; text-align: center; }
      .legal-page { padding: 32px 24px 80px; }
      .hero { padding: 100px 24px 60px; }
      .hero-content { grid-template-columns: 1fr; min-height: auto; gap: 32px; }
      .hero-text { padding-right: 0; align-items: center; text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-art {
        height: 200px;
        border-left: none;
        border-top: 1px solid var(--border-navy);
      }
      .hero-art-desktop { display: none !important; }
      .hero-art-mobile {
        display: block !important;
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
      }
      .hero-art-fade-left,
      .hero-art-fade-right {
        display: block;
        position: absolute;
        top: 0; bottom: 0;
        width: 40px;
        z-index: 2;
        pointer-events: none;
      }
      .hero-art-fade-left  { left: 0;  background: linear-gradient(to right, #081325, transparent); }
      .hero-art-fade-right { right: 0; background: linear-gradient(to left,  #081325, transparent); }
      .hero-logo-img { width: clamp(180px, 65vw, 300px); }
      .stats { flex-direction: column; padding: 40px 24px; gap: 32px; }
      .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 24px; }
      .stat:last-child { border-bottom: none; padding-left: 0; padding-bottom: 0; }
      .section { padding: 0 24px 80px; }
      .services-grid { grid-template-columns: 1fr; }
      .audit-banner { padding: 48px 24px; }
      .audit-banner-inner { flex-direction: column; gap: 32px; }
      .audit-banner-cta { width: 100%; }
      .audit-btn { width: 100%; text-align: center; }
      .blog-section { padding: 60px 24px 40px; }
      .blog-grid { grid-template-columns: 1fr; gap: 16px; }
      .form-section { padding: 80px 24px; }
      .form-inner { grid-template-columns: 1fr; gap: 48px; }
      .field-row { grid-template-columns: 1fr; }
      .stats-footnotes { padding: 0 24px; }
    }

    @media (max-width: 520px) {
      .footer-inner { grid-template-columns: 1fr; }
    }
  