    :root {
      --ink: #111923;
      --muted: #596473;
      --soft: #f7f2eb;
      --paper: #fffdf9;
      --line: rgba(17, 25, 35, 0.12);
      /* LED Solutions colour system. Do not substitute brighter orange or near black buttons. */
      --bronze: #A66524;
      --bronze-hover: #8C561F;
      --bronze-active: #714216;
      --bronze-border: #7D4B1C;
      --bronze-shadow: rgba(166, 101, 36, 0.22);
      --gold: #A66524;
      --gold-deep: #8C561F;
      --gold-light: #C79255;
      --gold-soft: #F1DFC6;
      --focus: #C79255;
      --charcoal: #161c24;
      --cream: #fbf7f0;
      --shadow: 0 24px 70px rgba(25, 28, 33, 0.11);
      --shadow-soft: 0 16px 42px rgba(25, 28, 33, 0.08);
      --max: 1340px;
      --radius: 18px;
      /* Typography system: Inter is the primary font for UI, headings, forms and body copy. Keep the system stack as fallback for speed and reliability. */
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      font-optical-sizing: auto;
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    section[id], aside[id] { scroll-margin-top: 104px; }

    .serif { font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; letter-spacing: -0.058em; font-weight: 720; }
    .container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      border-bottom: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,253,249,0.74);
      backdrop-filter: blur(18px);
    }

    .nav {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
      min-width: 178px;
    }

    .brand-main {
      font-size: 31px;
      font-weight: 760;
      letter-spacing: -0.055em;
      line-height: 1;
    }

    .brand-main span { color: var(--gold); font-weight: 430; }
    .brand-sub {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.31em;
      color: var(--muted);
      text-transform: uppercase;
      padding-left: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 13px;
      font-weight: 740;
      color: #222a34;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.22s ease;
    }

    .nav-links a:hover::after { width: 100%; }

    .nav-actions { display: flex; align-items: center; gap: 18px; }
    .phone { font-size: 15px; font-weight: 760; color: #2b3037; white-space: nowrap; }
    .phone::before { content: "☎"; color: var(--gold); margin-right: 9px; }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 26px;
      border-radius: 8px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 15px;
      font-weight: 780;
      letter-spacing: 0.002em;
      text-transform: none;
      text-align: center;
      line-height: 1.15;
      white-space: nowrap;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      transform: translateY(0) scale(1);
      transition:
        transform 160ms cubic-bezier(.2,.8,.2,1),
        box-shadow 160ms cubic-bezier(.2,.8,.2,1),
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
      will-change: transform;
    }

    .btn-primary {
      color: #fff;
      background: var(--bronze);
      border-color: var(--bronze-border);
      box-shadow: 0 11px 24px var(--bronze-shadow);
    }

    .btn-secondary {
      color: var(--ink);
      background: rgba(255,255,255,0.78);
      border-color: rgba(17, 25, 35, 0.18);
      box-shadow: 0 8px 18px rgba(17, 25, 35, 0.055);
    }

    .btn-dark {
      background: #fff;
      color: var(--ink);
      border-color: rgba(255,255,255,0.4);
    }

    .btn:hover { transform: translateY(-1px) scale(1.005); }
    .btn:active, .btn.is-pressed { transform: translateY(0) scale(0.988); box-shadow: 0 5px 12px rgba(17,25,35,0.10); }
    .btn-primary:hover { background: var(--bronze-hover); border-color: #6F4018; box-shadow: 0 15px 30px rgba(140, 86, 31, 0.26); }
    .btn-primary:active, .btn-primary.is-pressed { background: var(--bronze-active); }
    .btn-secondary:hover { background: #fff; border-color: rgba(166, 101, 36, 0.42); box-shadow: 0 11px 24px rgba(17,25,35,0.08); }
    .btn-secondary:active, .btn-secondary.is-pressed { background: #FBF7F0; }
    .btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

    .btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
      outline: 3px solid rgba(199, 146, 85, 0.58);
      outline-offset: 3px;
    }

    .mobile-menu { display: none; border: 1px solid var(--line); background: rgba(255,255,255,0.86); border-radius: 8px; padding: 9px 12px; font-weight: 800; }

    /* Typography audit button refinements */
    .btn-primary, .btn-secondary, .mobile-sticky-cta, .mobile-menu {
      font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
      text-rendering: geometricPrecision;
    }

    .hero {
      min-height: 760px;
      position: relative;
      display: flex;
      align-items: stretch;
      padding-top: 86px;
      overflow: hidden;
      background: #f4eee5;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,253,249,0.98) 0%, rgba(255,253,249,0.90) 31%, rgba(255,253,249,0.22) 58%, rgba(255,253,249,0.00) 78%),
        url("../assets/canberra_header.webp");
      background-size: cover;
      background-position: center right;
      transform: scale(1.01);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 130px;
      background: linear-gradient(180deg, rgba(255,253,249,0), rgba(255,253,249,0.94));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 540px) 1fr;
      align-items: center;
      padding: 82px 0 96px;
    }

    .eyebrow {
      color: var(--gold-deep);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      font-size: clamp(34px, 4.1vw, 54px);
      line-height: 1.015;
      margin-bottom: 26px;
      color: #111923;
      max-width: 680px;
    }

    .hero-copy {
      max-width: 500px;
      color: #26313f;
      font-size: 18px;
      line-height: 1.72;
      margin-bottom: 32px;
    }

    .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

    .hero-note {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 34px;
      color: var(--muted);
      font-size: 14px;
      max-width: 520px;
    }

    .hero-note strong { color: var(--ink); }
    .mini-line { width: 52px; height: 2px; background: var(--gold); flex: 0 0 auto; }

    .trust-strip {
      position: relative;
      z-index: 3;
      margin-top: -54px;
      background: rgba(250,246,239,0.94);
      border-top: 1px solid rgba(17,25,35,0.08);
      border-bottom: 1px solid rgba(17,25,35,0.08);
    }

    .trust-grid {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
      min-height: 92px;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 24px;
      border-right: 1px solid rgba(17,25,35,0.10);
    }

    .trust-item:last-child { border-right: 0; }
    .icon {
      width: 42px;
      height: 42px;
      border: 1.5px solid #17212c;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      color: #17212c;
      font-size: 21px;
      flex: 0 0 auto;
    }

    .trust-item b {
      display: block;
      font-size: 13px;
      line-height: 1.35;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .section { padding: 86px 0; }
    .section-tight { padding: 64px 0; }
    .section-cream { background: var(--cream); }
    .section-dark { background: var(--charcoal); color: #fff; }

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

    .section-head h2 {
      font-size: clamp(22px, 3vw, 38px);
      line-height: 1.04;
      margin-bottom: 0;
      max-width: 720px;
    }

    .section-head p {
      max-width: 440px;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      background: #fff;
      border: 1px solid rgba(17,25,35,0.08);
      border-radius: 10px;
      padding: 36px 32px 32px;
      min-height: 250px;
      box-shadow: 0 14px 38px rgba(25, 28, 33, 0.065);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .service-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(25, 28, 33, 0.10);
      border-color: rgba(140,86,31,0.30);
    }

    .service-icon {
      color: var(--gold);
      font-size: 42px;
      line-height: 1;
      margin-bottom: 24px;
    }

    .service-card h3 {
      font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 24px;
      line-height: 1.22;
      font-weight: 650;
      letter-spacing: -0.035em;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .service-card p { color: var(--muted); margin-bottom: 26px; }
    .text-link { font-size: 14px; font-weight: 760; color: var(--ink); border-bottom: 1px solid rgba(140,86,31,0.24); padding-bottom: 3px; }
    .text-link span { color: var(--gold); padding-left: 8px; transition: padding 0.18s ease; }
    .text-link:hover span { padding-left: 12px; }

    .pathways {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border: 1px solid rgba(17,25,35,0.10);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .pathway {
      padding: 28px 22px;
      min-height: 178px;
      border-right: 1px solid rgba(17,25,35,0.10);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }

    .pathway:last-child { border-right: 0; }
    .pathway .line-icon { font-size: 38px; color: #17212c; }
    .pathway b { font-size: 16px; line-height: 1.25; }
    .pathway small { color: var(--muted); font-size: 13px; line-height: 1.45; }
    .pathway { transition: background 0.18s ease, transform 0.18s ease; }
    .pathway:hover { background: #fbf7f0; transform: translateY(-1px); }
    .pathway:active { transform: translateY(0); }

    .split {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 54px;
      align-items: center;
    }

    .feature-copy h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.05;
      margin-bottom: 22px;
    }

    .feature-copy p { color: var(--muted); font-size: 17px; line-height: 1.7; }

    .divider-gold { width: 58px; height: 2px; background: var(--gold); margin: 26px 0; }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 38px;
    }

    .step {
      position: relative;
      padding: 22px 14px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }

    .step strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 8px; }
    .step-num { color: var(--gold); font-weight: 850; margin-bottom: 8px; }

    .quote-panel {
      background: linear-gradient(135deg, #1b222b, #111720);
      color: #fff;
      border-radius: 13px;
      box-shadow: 0 28px 60px rgba(9, 14, 20, 0.24);
      padding: 46px 44px 40px;
    }

    .quote-panel h2 {
      font-size: clamp(22px, 2vw, 28px);
      line-height: 1.08;
      text-align: center;
      margin-bottom: 10px;
    }

    .quote-panel p { color: rgba(255,255,255,0.72); text-align: center; margin-bottom: 28px; }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-grid .full { grid-column: 1 / -1; }

    .field, .select, textarea {
      width: 100%;
      min-height: 52px;
      border-radius: 7px;
      border: 1px solid rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.075);
      color: #fff;
      padding: 14px 15px;
      outline: none;
    }

    .section:not(.section-dark) .field,
    .section:not(.section-dark) .select,
    .section:not(.section-dark) textarea {
      color: var(--ink);
      background: #fff;
      border-color: rgba(17,25,35,0.12);
    }

    textarea { min-height: 112px; resize: vertical; }
    ::placeholder { color: rgba(255,255,255,0.56); }
    .section:not(.section-dark) ::placeholder { color: #8a919b; }

    .form-row { margin-top: 16px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .safe-note { color: rgba(255,255,255,0.62); font-size: 12px; }
    .safe-note::before { content: "✓"; font-size: 12px; margin-right: 8px; color: #fff; }
    .field:focus, .select:focus, textarea:focus { border-color: rgba(200,139,66,0.82); background: rgba(255,255,255,0.11); }
    .form-success { display: none; margin-top: 18px; padding: 13px 15px; border-radius: 8px; background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.88); font-size: 14px; }
    .form-success.show { display: block; }

    .education-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(157, 103, 40, 0.22);
      background: rgba(251,247,240,0.82);
      border-radius: 10px;
      color: #384252;
      font-size: 14px;
    }

    .education-note b { color: var(--ink); }

    .micro-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 26px;
      max-width: 620px;
    }

    .micro-proof span {
      display: block;
      padding: 13px 14px;
      border: 1px solid rgba(17,25,35,0.10);
      background: rgba(255,255,255,0.74);
      border-radius: 10px;
      font-size: 13px;
      color: #3a4452;
    }

    label.field-label {
      display: block;
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      font-weight: 750;
      margin: 0 0 7px;
      letter-spacing: 0.035em;
    }

    .input-group.full { grid-column: 1 / -1; }
    .input-group textarea { display: block; }

    .room-card {
      min-height: 530px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
      background-image: linear-gradient(180deg, rgba(13,17,22,0.03), rgba(13,17,22,0.52)), url("../assets/room_detail.jpg");
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .room-caption {
      position: absolute;
      left: 38px;
      right: 38px;
      bottom: 34px;
      color: #fff;
    }

    .room-caption h3 { font-size: 25px; max-width: 600px; margin-bottom: 10px; }
    .room-caption p { color: rgba(255,255,255,0.82); max-width: 520px; }

    .proof-band {
      background: linear-gradient(135deg, #fbf5ed, #fffdf9);
      border: 1px solid rgba(17,25,35,0.08);
      border-radius: 10px;
      padding: 36px 44px;
      display: grid;
      grid-template-columns: 1.05fr 1.4fr;
      gap: 40px;
      align-items: center;
    }

    .quote-mark { font-size: 56px; line-height: 0.8; color: var(--gold); font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    .testimonial p { font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 19px; line-height: 1.52; color: #1f2732; margin-bottom: 18px; letter-spacing: -0.018em; }
    .testimonial b { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-left: 1px solid var(--line); padding-left: 40px; }
    .stat { text-align: center; }
    .stat .icon { margin: 0 auto 13px; border-radius: 12px;     font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;}
    .stat b { display: block; font-size: 22px; font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; margin-bottom: 4px; letter-spacing: -0.03em; }
    .stat span { color: var(--muted); font-size: 12px; line-height: 1.35; display: block; }

    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .why-card {
      background: #fff;
      border: 1px solid rgba(17,25,35,0.08);
      padding: 34px 28px;
      border-radius: 12px;
    }
    .why-card h3 { font-size: 18px; margin-bottom: 10px; }
    .why-card p { color: var(--muted); margin-bottom: 0; font-size: 14px; }

    .learning-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .lesson {
      border: 1px solid rgba(17,25,35,0.10);
      background: rgba(255,255,255,0.76);
      border-radius: 12px;
      padding: 30px;
    }
    .lesson small { color: var(--gold-deep); font-size: 12px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
    .lesson h3 { font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 20px; line-height: 1.14; margin: 13px 0 12px; font-weight: 700; letter-spacing: -0.04em; }
    .lesson p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

    .final-cta {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      padding: 62px 54px;
      color: #fff;
      background: linear-gradient(135deg, rgba(17,23,32,0.95), rgba(24,34,45,0.90)), url("../assets/canberra_wide.webp");
      background-size: cover;
      background-position: center;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }
    .final-cta h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.04; margin-bottom: 14px; }
    .final-cta p { color: rgba(255,255,255,0.76); max-width: 650px; margin-bottom: 0; }

    .footer { background: #0f151d; color: #fff; padding: 56px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 38px; }
    .footer h4 { margin-top: 0; margin-bottom: 14px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
    .footer p, .footer a { color: rgba(255,255,255,0.68); font-size: 14px; display: block; margin-bottom: 9px; }
    .footer-bottom { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.48); font-size: 12px; }

    .sticky-quote {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 70;
    }
    .sticky-quote .btn { width: 100%; box-shadow: 0 16px 34px rgba(111,64,24,0.28); }

    .mobile-drawer {
      display: none;
      position: fixed;
      top: 86px;
      left: 0;
      right: 0;
      z-index: 45;
      background: rgba(255,253,249,0.97);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 20px 45px rgba(17,25,35,0.10);
      padding: 18px 24px 24px;
    }
    .mobile-drawer a { display: block; padding: 14px 0; font-weight: 760; border-bottom: 1px solid rgba(17,25,35,0.08); }
    .menu-open .mobile-drawer { display: block; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
    }

    @media (max-width: 1100px) {
      .nav-links { display: none; }
      .mobile-menu { display: inline-block; }
      .pathways { grid-template-columns: repeat(3, 1fr); }
      .pathway:nth-child(3) { border-right: 0; }
      .pathway:nth-child(n+4) { border-top: 1px solid var(--line); }
      .service-grid, .learning-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .proof-band { grid-template-columns: 1fr; }
      .stats { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
    }

    @media (max-width: 860px) {
      .container { width: min(var(--max), calc(100% - 30px)); }
      .nav { height: 74px; }
      .mobile-drawer { top: 74px; }
      .phone { display: none; }
      .nav-actions .btn { display: none; }
      .hero { padding-top: 74px; min-height: 720px; }
      .hero::before {
        background-image:
          linear-gradient(180deg, rgb(255 253 249 / 59%) 0%, rgb(255 253 249 / 49%) 46%, rgba(255, 253, 249, 0.36) 100%), url(../image/mb.webp);
        background-position: 100% center;
      }
      .eyebrow {
    margin-bottom: 12px;
}
      .hero-inner { width: min(var(--max), calc(100% - 30px)); grid-template-columns: 1fr; padding: 34px 0 90px; align-items: start; }
      h1 {         font-size: clamp(33px, 7vw, 62px);     margin-bottom: 15px;}
          .hero-copy {
        font-size: 14px;
        line-height: 1.52;
        margin-bottom: 18px;
    }
    .btn {
    min-height: 43px;
    padding: 0 26px;
}
.hero-note {
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
}
.mini-line {
    width: 22px;
}
.micro-proof span {
    padding: 7px 14px;
    font-size: 13px;
}
.micro-proof {
    gap: 6px;
    margin-top: 15px;
}
      .trust-grid { width: 100%; grid-template-columns: 1fr 1fr; }
      .trust-item { border-bottom: 1px solid var(--line); }
      .trust-item:nth-child(2) { border-right: 0; }
      .section { padding: 70px 0; }
      .section-head, .split, .final-cta { grid-template-columns: 1fr; display: grid; }
      .section-head { align-items: start; }
      .pathways { grid-template-columns: 1fr 1fr; }
      .pathway:nth-child(odd) { border-right: 1px solid var(--line); }
      .pathway:nth-child(even) { border-right: 0; }
      .pathway:nth-child(n+3) { border-top: 1px solid var(--line); }
      .service-grid, .learning-grid, .why-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .micro-proof { grid-template-columns: 1fr; }
      .quote-panel { padding: 36px 24px; }
      .form-grid { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom { flex-direction: column; }
      .sticky-quote { display: block; }
    }

    @media (max-width: 540px) {
      .brand-main { font-size: 25px; }
      .brand-sub { font-size: 8px; letter-spacing: 0.27em; }
      .mobile-menu { font-size: 12px; }
      .hero-actions .btn { width: 100%; }
      .trust-grid, .pathways, .steps, .stats, .footer-grid { grid-template-columns: 1fr; }
      .trust-item, .pathway { border-right: 0 !important; }
      .proof-band, .final-cta { padding: 34px 22px; }
      .service-card { padding: 32px 24px; }

      .room-card { min-height: 420px; }
      .room-caption { left: 24px; right: 24px; }
    }