:root {
      --navy: #0F172A;
      --blue: #00338D;
      --blue-dark: #00266A;
      --soft-blue: #E8EEF7;
      --gold: #D4AF37;
      --bg: #F8FAFC;
      --surface: #FFFFFF;
      --text: #0F172A;
      --muted: #64748B;
      --border: #E2E8F0;
      --wa: #25D366;
      --radius-card: 16px;
      --radius-btn: 12px;
      --max: 1120px;
      --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
      --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, .logo, .nav a {
      font-family: "Plus Jakarta Sans", Inter, sans-serif;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    .wrap {
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
    }

    /* ——— Header ——— */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }

    .logo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; }
    .logo {
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 0.45rem;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: linear-gradient(135deg, var(--blue), var(--gold));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .logo span { color: var(--blue); }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.35rem;
    }

    .nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.15s;
    }

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

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.7rem 1.25rem;
      border-radius: var(--radius-btn);
      font-family: Inter, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
      white-space: nowrap;
    }

    .btn:active { transform: translateY(1px); }

    .btn-primary {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 51, 141, 0.28);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      box-shadow: 0 6px 18px rgba(0, 51, 141, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--navy);
      border-color: var(--gold);
    }

    .btn-secondary:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-wa {
      background: var(--wa);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
    }

    .btn-wa:hover { filter: brightness(0.95); }

    .btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }

    .btn-ghost-wa {
      background: transparent;
      color: var(--wa);
      border-color: var(--wa);
      padding: 0.5rem 0.85rem;
    }

    .btn-ghost-wa:hover { background: rgba(37, 211, 102, 0.08); }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--surface);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--navy);
      border-radius: 1px;
    }

    /* ——— Hero ——— */
    .hero {
      padding: 4.5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 55%;
      height: 80%;
      background: radial-gradient(ellipse, rgba(0, 51, 141, 0.09), transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 3rem;
      align-items: center;
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue);
      background: var(--soft-blue);
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      margin-bottom: 1.15rem;
      letter-spacing: 0.01em;
    }

    .eyebrow::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(2rem, 4.2vw, 3.05rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--navy);
      margin-bottom: 1.1rem;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 34rem;
      margin-bottom: 1.75rem;
      line-height: 1.65;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .micro {
      font-size: 0.85rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .micro svg { flex-shrink: 0; color: var(--blue); }

    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 1.75rem;
      position: relative;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.7;
    }

    .hero-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .checklist li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.55rem 0;
      font-size: 0.92rem;
      color: var(--text);
      border-bottom: 1px solid var(--border);
    }

    .checklist li:last-child { border-bottom: none; }

    .check {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: var(--soft-blue);
      color: var(--blue);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ——— Trust ——— */
    .trust {
      padding: 0 0 3rem;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      justify-content: center;
      padding: 1.25rem 1.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: var(--bg);
      border: 1px solid var(--border);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--navy);
    }

    .chip i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
      display: inline-block;
    }

    /* ——— Sections shared ——— */
    section { padding: 4.5rem 0; }

    .section-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--blue);
      margin-bottom: 0.65rem;
    }

    .section-title {
      font-size: clamp(1.55rem, 3vw, 2.15rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .section-lead {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 36rem;
      margin-bottom: 2.5rem;
    }

    .section-head {
      margin-bottom: 2.5rem;
    }

    .section-head .section-lead { margin-bottom: 0; }

    /* ——— Who we help ——— */
    .who { background: var(--surface); border-block: 1px solid var(--border); }

    .specialty-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .specialty-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.5rem 1.15rem;
      text-align: center;
      transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    }

    .specialty-card:hover {
      border-color: var(--blue);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .specialty-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 0.9rem;
      border-radius: 14px;
      background: var(--soft-blue);
      color: var(--blue);
      display: grid;
      place-items: center;
    }

    .specialty-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.35rem;
    }

    .specialty-card p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.45;
    }

    /* ——— Problem ——— */
    .problem {
      background: var(--navy);
      color: #fff;
      padding: 4.5rem 0;
    }

    .problem .section-label { color: #D4AF37; }

    .problem .section-title { color: #fff; max-width: 28rem; }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
      margin-top: 2rem;
    }

    .problem-list li {
      display: flex;
      gap: 0.85rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .problem-list li:last-child { border-bottom: none; }

    .problem-x {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(197, 160, 89, 0.2);
      color: #D4AF37;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .problem-aside {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-card);
      padding: 1.75rem;
    }

    .problem-aside h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.65rem;
      color: #D4AF37;
    }

    .problem-aside p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    /* ——— Pillars ——— */
    .pillars-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.25rem;
    }

    .pillar-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.85rem;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .pillar-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--soft-blue));
    }

    .pillar-num {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 0.04em;
      margin-bottom: 0.85rem;
    }

    .pillar-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.65rem;
    }

    .pillar-card > p {
      font-size: 0.92rem;
      color: var(--muted);
      margin-bottom: 1.15rem;
    }

    .pillar-card ul li {
      font-size: 0.875rem;
      color: var(--text);
      padding: 0.35rem 0 0.35rem 1.1rem;
      position: relative;
    }

    .pillar-card ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.7rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
    }

    /* ——— Case studies ——— */
    .cases { background: var(--surface); border-block: 1px solid var(--border); }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .case-card {
      border: 1px dashed #94A3B8;
      border-radius: var(--radius-card);
      padding: 1.75rem;
      background: var(--bg);
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }

    .case-badge {
      display: inline-flex;
      align-self: flex-start;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 0.3rem 0.65rem;
      border-radius: 6px;
      margin-bottom: 1rem;
    }

    .case-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .case-card p {
      font-size: 0.9rem;
      color: var(--muted);
      flex: 1;
    }

    .case-note {
      margin-top: 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue);
    }

    /* ——— How we work ——— */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      counter-reset: step;
    }

    .step {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.5rem 1.25rem;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-n {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--navy);
      color: #fff;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
    }

    .step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }

    .step p {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ——— Reviews placeholder ——— */
    .reviews {
      background: linear-gradient(180deg, var(--soft-blue) 0%, var(--bg) 100%);
    }

    .reviews-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 2.5rem 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      max-width: 640px;
      margin: 0 auto;
    }

    .reviews-box .g-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      border-radius: 12px;
      background: var(--bg);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      font-weight: 800;
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--navy);
      font-size: 1.2rem;
    }

    .reviews-box h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .reviews-box p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1.25rem;
    }

    /* ——— FAQ ——— */
    .faq-list {
      max-width: 720px;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    details.faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 0;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    details.faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.15rem 1.35rem;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 650;
      font-size: 1rem;
      color: var(--navy);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    details.faq-item summary::-webkit-details-marker { display: none; }

    details.faq-item summary::after {
      content: "+";
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--blue);
      line-height: 1;
      flex-shrink: 0;
    }

    details.faq-item[open] summary::after { content: "−"; }

    details.faq-item .faq-a {
      padding: 0 1.35rem 1.25rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
      border-top: 1px solid transparent;
    }

    details.faq-item[open] .faq-a {
      border-top-color: var(--border);
      padding-top: 1rem;
    }

    /* ——— Final CTA ——— */
    .final-cta {
      padding: 4.5rem 0 3rem;
    }

    .cta-banner {
      background: linear-gradient(135deg, var(--navy) 0%, #123456 55%, #00266A 100%);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(0, 51, 141, 0.2);
      top: -80px;
      right: -60px;
    }

    .cta-banner h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.65rem;
      position: relative;
    }

    .cta-banner p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1.5rem;
      position: relative;
      max-width: 28rem;
      margin-inline: auto;
    }

    .cta-banner .hero-ctas {
      justify-content: center;
      position: relative;
      margin-bottom: 0;
    }

    .contact-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 2.5rem;
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-sm);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 500;
    }

    .contact-item svg { color: var(--blue); flex-shrink: 0; }

    .contact-item a:hover { color: var(--blue); }

    /* ——— Footer ——— */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.75);
      padding: 3rem 0 1.75rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .footer .logo { color: #fff; margin-bottom: 0.85rem; }
    .footer .logo span { color: #D4AF37; }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: 260px;
    }

    .footer h4 {
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }

    .footer ul li { margin-bottom: 0.5rem; }

    .footer ul a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.15s;
    }

    .footer ul a:hover { color: #D4AF37; }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    /* ——— Mobile ——— */
    @media (max-width: 960px) {
      .nav { display: none; }
      .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.85rem;
        box-shadow: var(--shadow);
      }
      .menu-toggle { display: flex; }
      .header { position: sticky; }
      .header-inner { position: relative; flex-wrap: wrap; }
      .header-actions .btn-primary { display: none; }
      .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
      .specialty-grid { grid-template-columns: repeat(2, 1fr); }
      .specialty-grid .specialty-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; width: 100%; }
      .problem-grid { grid-template-columns: 1fr; }
      .pillars-grid { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 560px) {
      .wrap { width: min(100% - 1.5rem, var(--max)); }
      section { padding: 3.25rem 0; }
      .hero { padding: 3rem 0 2.5rem; }
      .specialty-grid { grid-template-columns: 1fr; }
      .specialty-grid .specialty-card:last-child { max-width: none; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-banner { padding: 2.25rem 1.35rem; }
      .contact-strip { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
      .header-actions .btn-ghost-wa span { display: none; }
    }

    /* ——— Stronger mobile polish ——— */
    html { scroll-behavior: smooth; }
    body { overflow-x: hidden; }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .mobile-bar {
      display: none;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 80;
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 24px rgba(15,23,42,0.08);
      padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
      gap: 0.5rem;
    }
    .mobile-bar a {
      flex: 1;
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.7rem 0.4rem;
      border-radius: 12px;
      text-decoration: none;
    }
    .mobile-bar .mb-call { background: #00338D; color: #fff; }
    .mobile-bar .mb-wa { background: #25D366; color: #fff; }
    .mobile-bar .mb-audit { background: linear-gradient(135deg, #FFF3B0, #FFD700, #D4AF37, #B8860B); color: #1a1200; box-shadow: 0 2px 8px rgba(212,175,55,0.4), inset 0 1px 0 rgba(255,255,255,0.4); }

    @media (max-width: 960px) {
      .logo img { height: 44px !important; max-width: 160px !important; }
      .hero h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); line-height: 1.2; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .pillars-grid { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 560px) {
      .mobile-bar { display: flex; }
      body { padding-bottom: 4.75rem; }
      .logo img { height: 40px !important; max-width: 140px !important; }
      .hero { padding-top: 2rem; }
      .hero-panel, .card, .specialty-card { max-width: 100%; }
      .btn { min-height: 44px; }
      h2.section-title { font-size: 1.45rem; }
      .faq details { font-size: 0.95rem; }
    }


    /* Shining gold accents */
    :root {
      --gold: #D4AF37;
      --gold-bright: #FFD700;
      --gold-deep: #B8860B;
      --gold-shine: linear-gradient(135deg, #FFF3B0 0%, #FFD700 35%, #D4AF37 70%, #B8860B 100%);
    }
    .gold, .btn.gold, .mobile-bar .mb-audit, .pillar-num, .section-label {
      /* section-label may stay blue - only override gold uses */
    }
    .btn.gold, .mobile-bar .mb-audit, a.mb-audit {
      background: var(--gold-shine) !important;
      color: #1a1200 !important;
      border: none;
      box-shadow: 0 2px 8px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.45);
      text-shadow: 0 1px 0 rgba(255,255,255,0.25);
    }
    .specialty-card, .pillar-card {
      border-top-color: #D4AF37;
    }
    .pillar-card .pillar-num, .hero-card::after, .chip i {
      color: #D4AF37;
    }
    /* gold dots / accents */
    .hero-card::after {
      background: var(--gold-shine) !important;
    }