  :root {
    --navy: #2C2B54;
    --amber: #F2A949;
    --amber-dark: #c98a35;
    --navy-dark: #1f1e3d;
    --cream: #FFF8EE;
    --ink: #1A1A2E;
    --grey: #6B6B7B;
    --line: #E8E5DD;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(44,43,84,0.08);
    --shadow-lg: 0 8px 40px rgba(44,43,84,0.14);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Roboto', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ---------- NAV (unified with homepage header) ---------- */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .site-header { background:#fff; border-bottom:1px solid var(--line); padding:6px 0; }
  .header-row { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:24px; }
  .nav-right { display:flex; align-items:center; gap:20px; justify-content:flex-end; }
  .nav-trust { flex:0 1 auto; text-align:center; font-size:.82rem; font-style:italic; color:var(--grey); padding:0 12px; white-space:nowrap; }
  .nav-trust .stars { color:var(--amber); margin-right:6px; font-style:normal; letter-spacing:1px; }
  .nav-trust .quote-text { display:inline; }
  @media (max-width:1119px){ .nav-trust .quote-text{ display:none; } }
  @media (max-width:767px){ .nav-trust{ display:none; } }
  .logo img { height:72px; width:auto; display:block; }
  .main-nav { display:flex; gap:20px; align-items:center; }
  .main-nav a { color:var(--navy); font-weight:600; font-size:1rem; padding:6px 2px; border-bottom:2px solid transparent; transition:border-color .15s; white-space:nowrap; }
  .main-nav a:hover { border-bottom-color:var(--amber); text-decoration:none; }
  .main-nav a.active { border-bottom-color:var(--amber); color:var(--amber); }
  .main-nav a.nav-cta { background:var(--navy); color:#fff; padding:10px 18px; border-radius:8px; border-bottom:none; margin-left:8px; box-shadow:2px 3px 0 rgba(0,0,0,.22); transition:background .15s ease,transform .08s ease,box-shadow .08s ease; }
  .main-nav a.nav-cta:hover { background:var(--navy-dark); border-bottom:none; }
  .main-nav a.nav-cta:active { transform:translate(2px,3px); box-shadow:0 0 0 rgba(0,0,0,0); }
  .nav-toggle { display:none; background:none; border:1px solid var(--line); padding:8px 12px; border-radius:8px; cursor:pointer; color:var(--navy); font-weight:600; }
  @media (max-width:900px){
    .header-row { grid-template-columns:auto auto; }
    .nav-trust { display:none; }
    .logo img { height:60px; }
    .nav-toggle { display:block; }
    .nav-right { position:relative; }
    .main-nav { display:none; position:absolute; right:0; top:calc(100% + 8px); min-width:240px; background:#fff; flex-direction:column; align-items:flex-start; gap:0; padding:8px 0; border:1px solid var(--line); border-radius:8px; box-shadow:var(--shadow); z-index:50; }
    .main-nav.open { display:flex; }
    .main-nav a { width:100%; padding:12px 16px; border-bottom:1px solid var(--line); }
    .main-nav a:last-child { border-bottom:none; }
    .main-nav a.nav-cta { margin:6px 12px; width:auto; }
  }
  .btn-primary {
    background: var(--amber);
    color: var(--navy);
    padding: 11px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 2px 3px 0 rgba(0,0,0,.22);
    transition: background 0.15s, transform 0.08s, box-shadow 0.08s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--amber-dark); }
  .btn-primary:active { transform: translate(2px,3px); box-shadow: 0 0 0 rgba(0,0,0,0); }
  .nav-login { font-size: 13px !important; color: var(--grey) !important; }

  /* ---------- HERO ---------- */
  .hero {
    background: var(--navy);
    color: var(--white);
    padding: 52px 40px 48px;
    text-align: center;
  }
  .hero h1 {
    color: var(--white);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 14px;
  }
  .hero h1 .floor { color: var(--amber); white-space: nowrap; }
  .hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-trust {
    margin: 16px auto 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
  }
  .hero-trust .stars { color: var(--amber); margin-right: 6px; letter-spacing: 1px; }

  /* ---------- CONTROLS ---------- */
  .controls {
    background: var(--cream);
    padding: 14px 40px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .control-group {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .control-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
  }
  .toggle button {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey);
    transition: all 0.2s;
    position: relative;
  }
  .toggle button.active {
    background: var(--navy);
    color: var(--white);
  }
  .save-badge {
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
  }

  /* ---------- SLIDER ---------- */
  .slider-section {
    background: var(--cream);
    padding: 18px 40px 28px;
    text-align: center;
  }
  .slider-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .slider-label strong {
    color: var(--navy);
    font-weight: 900;
    font-size: 22px;
  }
  .slider-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
  input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--line);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--amber);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,43,84,0.3);
    border: 3px solid var(--white);
  }
  input[type="range"]::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--amber);
    cursor: pointer;
    border: 3px solid var(--white);
  }
  .slider-ticks {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 10px;
    font-size: 11px;
    color: var(--grey);
    text-align: center;
  }
  .slider-ticks span {
    border-left: 1px solid var(--line);
    padding: 4px 2px 0;
  }
  .slider-ticks span:first-child { border-left: none; }
  .slider-helper {
    margin-top: 18px;
    font-size: 13px;
    color: var(--grey);
  }

  /* ---------- FRAME BAND (council reframe, sits above the tier cards) ---------- */
  .frame-band {
    background: var(--navy);
    color: var(--white);
    padding: 56px 40px;
    text-align: center;
  }
  .frame-band .inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .frame-band h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .frame-band h2 .accent { color: var(--amber); }
  .frame-band p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
  }
  .frame-band p:last-child { margin-bottom: 0; }
  .frame-band p.byaf { color: var(--white); font-weight: 500; }
  .frame-points {
    list-style: none;
    display: inline-block;
    margin: 22px auto 0;
    text-align: left;
  }
  .frame-points li {
    position: relative;
    padding: 9px 0 9px 30px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
  }
  .frame-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--amber);
    font-weight: 700;
  }
  .frame-band .byaf-line {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }
  .frame-band .frame-cred {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .frame-band mark.todo {
    background: var(--amber);
    color: var(--navy);
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 700;
    font-style: normal;
  }
  @media (max-width: 900px) {
    .frame-band { padding: 40px 20px; }
    .frame-band h2 { font-size: 23px; }
  }

  /* ---------- TIERS ---------- */
  .tiers {
    padding: 28px 40px 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  .tier-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .tier-card.featured {
    border: 2px solid var(--amber);
    box-shadow: var(--shadow-lg);
  }
  .tier-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .tier-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    margin-bottom: 8px;
  }
  .tier-promise {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.35;
    min-height: 40px;
  }
  .tier-price {
    margin-bottom: 4px;
  }
  .tier-price .amount {
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .tier-price .unit {
    font-size: 13px;
    color: var(--grey);
    margin-left: 3px;
  }
  .tier-terms {
    font-size: 11px;
    color: var(--grey);
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }
  .tier-features {
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .tier-features li {
    padding: 5px 0 5px 22px;
    font-size: 13px;
    position: relative;
    line-height: 1.45;
  }
  .tier-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--amber);
    font-weight: 700;
  }
  .tier-social {
    font-size: 12px;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 16px;
    padding: 10px;
    background: var(--cream);
    border-radius: 6px;
  }
  .tier-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .custom-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 2fr 3fr auto;
    gap: 28px;
    align-items: center;
  }
  .custom-card.glow {
    box-shadow: 0 0 0 3px var(--amber), var(--shadow-lg);
  }
  .custom-card .tier-name { color: var(--amber); }
  .custom-card .tier-promise { color: var(--white); margin-bottom: 0; min-height: 0; }
  .custom-card .tier-features { margin: 0; }
  .custom-card .tier-features li { color: rgba(255,255,255,0.85); padding: 4px 0 4px 22px; }
  .custom-card .tier-features li::before { color: var(--amber); top: 4px; }
  .custom-card .btn-primary { white-space: nowrap; }
  /* Stack the Custom-card CTAs (primary + Hobson+1) as one grid item so the card height stays put. */
  .custom-card .custom-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
  /* Hobson+1 on the navy Custom card: small white underlined text link, NOT a button. Clearly subordinate to the amber primary. */
  .custom-card .btn-ghost { background: transparent; border: 0; padding: 0; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.8); text-decoration: underline; box-shadow: none; }
  .custom-card .btn-ghost:hover { background: transparent; color: #ffffff; }

  /* ---------- COMPARISON TABLE ---------- */
  .compare-section {
    background: var(--cream);
    padding: 80px 40px;
  }
  .section-head {
    max-width: 1280px;
    margin: 0 auto 40px;
    text-align: center;
  }
  .section-head h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .section-head p {
    color: var(--grey);
    font-size: 16px;
  }
  .compare-table-wrap {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) { width: 120px; }
  .compare-table tbody tr:hover { background: rgba(44,43,84,0.03); }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
  }
  .compare-table th, .compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .compare-table th {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 22px 20px;
  }
  .compare-table th.featured-col, .compare-table td.featured-col {
    background: rgba(242,169,73,0.08);
  }
  .compare-table td:first-child, .compare-table th:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--ink);
  }
  .compare-table th:first-child { color: var(--grey); }
  .compare-table tr:last-child td { border-bottom: none; }
  .check { color: var(--amber); font-weight: 700; font-size: 18px; }
  .dash { color: #C4C4CC; font-weight: 700; }

  /* "Every tier includes" strip (24 May proposed restructure) */
  .includes {
    max-width: 880px;
    margin: 0 auto 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
    text-align: center;
  }
  .includes .h {
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 14px;
  }
  .includes ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .includes li {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--ink);
  }
  .includes li::before {
    content: "\2713";
    color: var(--amber);
    font-weight: 700;
    margin-right: 7px;
  }
  .compare-table thead th { position: relative; }
  .col-pop {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .custom-note {
    max-width: 1280px;
    margin: 22px auto 0;
    font-size: 14px;
    color: var(--grey);
    text-align: center;
  }
  .custom-note strong { color: var(--navy); }

  /* Single testimonial (social proof) between the band and the comparison table */
  .price-proof {
    background: var(--white);
    padding: 48px 40px;
    text-align: center;
  }
  .price-proof .stars { color: var(--amber); font-size: 18px; letter-spacing: 3px; }
  .price-proof blockquote {
    max-width: 640px;
    margin: 14px auto 10px;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
  }
  .price-proof .attribution {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    text-align: left;
  }
  .price-proof .who-logo {
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .price-proof .who { font-size: 14px; color: var(--grey); line-height: 1.4; }
  .price-proof .who strong { color: var(--navy); }

  /* ---------- FAQ ---------- */
  .faq-section {
    padding: 80px 40px;
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-q .icon {
    color: var(--amber);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 0 24px;
  }
  .faq-a a { color: var(--amber); font-weight: 500; }

  /* ---------- TRUST STRIP ---------- */
  .trust-strip {
    background: var(--white);
    padding: 40px 40px 50px;
    text-align: center;
    border-top: 1px solid var(--line);
  }
  .trust-strip h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey);
    font-weight: 700;
    margin-bottom: 30px;
  }
  .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .trust-logo {
    font-size: 17px;
    font-weight: 700;
    color: var(--grey);
    opacity: 0.75;
    letter-spacing: -0.01em;
  }
  .trust-logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
  }
  .trust-logo img:hover { filter: none; opacity: 1; }
  .trust-logo img.logo-lg { height: 56px; }

  /* ---------- HOBSON ---------- */
  .hobson {
    background: var(--cream);
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid var(--line);
  }
  .hobson h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .hobson p {
    color: var(--grey);
    margin-bottom: 28px;
    font-size: 16px;
  }
  .hobson-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
  }
  .hobson-form input {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
  }
  .btn-ghost {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 11px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 2px 3px 0 rgba(44,43,84,.22);
    transition: background 0.15s, transform 0.08s, box-shadow 0.08s;
  }
  .btn-ghost:hover { background: var(--navy); color: var(--white); }
  .btn-ghost:active { transform: translate(2px,3px); box-shadow: 0 0 0 rgba(44,43,84,0); }

  /* ---------- FOOTER ---------- */
  footer{background:var(--navy);color:#cbcad8;padding:56px 0 32px;font-size:.95rem}
  footer h4{color:#fff;margin-bottom:16px;font-size:1rem;text-transform:uppercase;letter-spacing:.08em}
  .footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px}
  footer ul{list-style:none;padding:0;margin:0}
  footer li{padding:6px 0}
  footer a{color:#cbcad8;margin:0}
  footer a:hover{color:#fff}
  .footer-logo{height:90px;width:auto;display:block;margin-bottom:18px;opacity:.95}
  .newsletter{margin-top:8px;max-width:300px}
  .newsletter input{display:block;width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #4a4878;background:#1f1e3d;color:#fff;border-radius:6px;font:inherit;margin-bottom:8px}
  .newsletter input::placeholder{color:#8887a8}
  .newsletter button{display:block;width:100%;padding:10px 16px;background:var(--amber);color:var(--navy);border:none;border-radius:6px;font-weight:700;cursor:pointer;box-shadow:2px 3px 0 rgba(0,0,0,.38);transition:background .15s ease,transform .08s ease,box-shadow .08s ease}
  .newsletter button:hover{background:var(--amber-dark)}
  .newsletter button:active{transform:translate(2px,3px);box-shadow:0 0 0 rgba(0,0,0,0)}
  .cf-turnstile{margin:0 0 8px}
  .newsletter-success{max-width:300px;padding:14px 16px;background:var(--amber);border-radius:6px;color:var(--navy);font-weight:700;font-size:1rem;line-height:1.45}
  .newsletter-success .tick{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:var(--navy);color:var(--amber);font-size:.8rem;margin-right:8px;vertical-align:-4px}
  .newsletter-error{max-width:300px;margin-top:8px;padding:12px 14px;background:rgba(255,255,255,.08);border:1px solid #6b6982;border-radius:6px;color:#e6e5f0;font-size:.9rem;line-height:1.45}
  .hp{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}
  .footer-bottom{border-top:1px solid #4a4878;margin-top:32px;padding-top:20px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.85rem}
  .lang{color:#cbcad8}
  .lang a{margin:0 4px}

  /* Sticky CTA styling lives in site.css (shared partial sticky.njk), not here:
     this page's own version anchored bottom:0 while site.css anchors top:0,
     and with both loaded the two positions combined to stretch the bar full-height. */

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .hero { padding: 60px 20px 80px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .controls { gap: 24px; padding: 20px; }
    .tiers { padding: 40px 20px; }
    .tier-grid { grid-template-columns: 1fr; gap: 32px; }
    .tier-card.featured { transform: none; }
    .tier-card.featured:hover { transform: translateY(-4px); }
    .custom-card { grid-template-columns: 1fr; text-align: left; }
    .compare-section, .faq-section, .hobson { padding: 50px 20px; }
    .compare-table-wrap { overflow-x: auto; }
    .compare-table { min-width: 600px; }
    .section-head h2 { font-size: 26px; }
    .hobson-form { flex-direction: column; }
  }
