:root {
      --paper: #f5f5f2;
      --ink: #2B2B2A;
      --muted: #727272;
      --line: #dddfdf;
      --gold: #F4A20D;
      --brown: #4d4640;
      --soft: #f7f7f4;
      --panel: #fff7e4;
      --danger: #9f3d3d;
      --silver: #727272;
      --brand-gray: #727272;
      --brand-orange: #F4A20D;
      --brand-black: #2B2B2A;
      --house-current-fill: rgba(18, 148, 196, .38);
      --surface: #ffffff;
      --surface-strong: #fcfcfb;
      --shadow: 0 20px 52px rgba(43, 43, 42, .08);
    }

    .footer-cookie-settings {
      appearance: none;
      border: 0;
      background: transparent;
      padding: 0;
      color: #2B2B2A;
      font: inherit;
      font-weight: 650;
      text-align: left;
      cursor: pointer;
    }

    .footer-cookie-settings:hover {
      color: #9f6600;
    }

    .cookie-consent[hidden] {
      display: none;
    }

    .cookie-consent {
      position: fixed;
      right: 24px;
      bottom: calc(24px + env(safe-area-inset-bottom, 0px));
      width: min(430px, calc(100vw - 32px));
      z-index: 1000;
      pointer-events: none;
    }

    .cookie-consent-card {
      width: 100%;
      margin: 0;
      display: block;
      border: 1px solid rgba(216, 217, 214, .95);
      border-radius: 22px;
      background: rgba(255, 255, 255, .96);
      padding: 20px;
      box-shadow: 0 26px 70px rgba(43, 43, 42, .18);
      backdrop-filter: blur(14px);
      pointer-events: auto;
    }

    .cookie-consent-label {
      margin-bottom: 6px;
      color: var(--brand-orange);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .cookie-consent h2 {
      margin: 0;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.25;
    }

    .cookie-consent p {
      max-width: none;
      margin: 8px 0 0;
      color: #5f6368;
      font-size: 13.5px;
      line-height: 1.6;
    }

    .cookie-consent p a {
      color: #2B2B2A;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(244, 162, 13, .7);
      text-underline-offset: 3px;
    }

    .cookie-consent-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 16px;
    }

    .cookie-consent-actions .btn {
      padding: 13px 18px;
      font-size: 14px;
      white-space: nowrap;
      width: 100%;
    }

    @media (max-width: 760px) {
      .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: auto;
      }

      .cookie-consent-card {
        border-radius: 22px;
        padding: 18px;
      }

      .cookie-consent h2 {
        font-size: 20px;
      }

      .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .cookie-consent-actions .btn {
        width: 100%;
      }
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      background:
        linear-gradient(180deg, #ffffff 0%, var(--paper) 38%, #efefea 100%);
      color: var(--ink);
      font-family: "Open Sans", Arial, Helvetica, sans-serif;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    button { cursor: pointer; }
    .wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .header {
      position: sticky; top: 0; z-index: 20;
      border-bottom: 1px solid rgba(43, 43, 42, .08);
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(14px);
      transition: transform .22s ease, opacity .22s ease;
    }
    .header.is-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-110%);
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 24px; }
    .brand { display: inline-flex; align-items: center; white-space: nowrap; }
    .brand-logo {
      display: block;
      width: clamp(210px, 22vw, 310px);
      height: auto;
      max-height: 56px;
      object-fit: contain;
    }
    .desktop-nav { display: none; align-items: center; gap: clamp(16px, 1.9vw, 26px); color: #727272; font-size: 14px; }
    .desktop-nav a:hover { color: var(--ink); }
    .mobile-toggle { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid #d9dbdb; border-radius: 16px; background: #fff; }
    .hamburger { display: grid; gap: 5px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); }
    .mobile-menu {
      position: fixed;
      top: 88px;
      right: max(24px, calc((100vw - 1280px) / 2 + 24px));
      z-index: 30;
      width: min(340px, calc(100vw - 32px));
      border: 1px solid #dddfdf;
      border-radius: 22px;
      background: #fff;
      padding: 14px;
      box-shadow: 0 24px 58px rgba(43,43,42,.16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px) scale(.98);
      transform-origin: top right;
      visibility: hidden;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }
    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
      visibility: visible;
    }
    .mobile-menu nav { display: grid; gap: 6px; color: #727272; }
    .mobile-menu a {
      border-radius: 14px;
      padding: 12px 14px;
      font-weight: 650;
    }
    .mobile-menu a:hover { background: #f6f6f3; color: var(--ink); }
    .mobile-menu .btn { width: 100%; margin-top: 6px; }
    .section-quick-nav {
      position: fixed;
      left: 0;
      top: 50%;
      z-index: 40;
      width: 0;
      transform: translateY(-50%);
      pointer-events: none;
    }
    .section-nav-panel {
      width: min(292px, calc(100vw - 56px));
      border: 1px solid rgba(43, 43, 42, .12);
      border-left: 0;
      border-radius: 0 22px 22px 0;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 22px 56px rgba(43, 43, 42, .16);
      padding: 16px;
      transform: translateX(-100%);
      transition: transform .22s ease;
      pointer-events: auto;
      backdrop-filter: blur(14px);
    }
    .section-quick-nav.is-open .section-nav-panel { transform: translateX(0); }
    .section-nav-toggle {
      position: absolute;
      left: 0;
      top: 50%;
      width: 44px;
      height: 72px;
      border: 1px solid rgba(43, 43, 42, .12);
      border-left: 0;
      border-radius: 0 16px 16px 0;
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 14px 30px rgba(43, 43, 42, .16);
      transform: translateY(-50%);
      transition: left .22s ease, background .18s ease;
      pointer-events: auto;
    }
    .section-nav-toggle:hover { background: #ffb12c; }
    .section-quick-nav.is-open .section-nav-toggle { left: min(292px, calc(100vw - 56px)); }
    .section-nav-arrow {
      display: inline-block;
      font-size: 28px;
      line-height: 1;
      transition: transform .22s ease;
    }
    .section-quick-nav.is-open .section-nav-arrow { transform: rotate(180deg); }
    .section-nav-title {
      margin: 2px 0 12px;
      color: #727272;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .section-nav-links {
      display: grid;
      gap: 6px;
    }
    .section-nav-links a {
      border-radius: 14px;
      padding: 11px 12px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
      transition: background .18s ease, color .18s ease;
    }
    .section-nav-links a:hover {
      background: #f6f6f3;
      color: #9f6600;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0; border-radius: 999px; padding: 14px 24px;
      font-weight: 650; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:disabled {
      opacity: .64;
      cursor: wait;
      transform: none;
    }
    .btn-dark { background: var(--ink); color: #fff; box-shadow: 0 14px 28px rgba(43,43,42,.16); }
    .btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 24px rgba(244,162,13,.25); }
    .btn-light { border: 1px solid #d8d9d6; background: #fff; color: var(--ink); }
    .btn-disabled { border: 1px solid #e2e3e0; background: #f2f2ef; color: #a4a5a2; cursor: not-allowed; }
    .hero {
      min-height: calc(100vh - 89px);
      padding: clamp(72px, 10vh, 118px) 0 clamp(88px, 12vh, 132px);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .hero-content { max-width: 960px; }
    .pill { display: inline-flex; border: 1px solid #dddfdf; border-radius: 999px; background: rgba(255,255,255,.82); padding: 8px 16px; color: #727272; font-size: 14px; box-shadow: 0 8px 24px rgba(43,43,42,.05); }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }
    .hero .visually-hidden + h1 { margin-top: 18px; }
    .hero h1 {
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      text-wrap: balance;
    }
    .hero-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 320px));
      justify-content: center;
      gap: 14px;
      margin-top: 34px;
    }
    .hero-action-group {
      display: grid;
      justify-items: stretch;
      align-content: start;
      gap: 10px;
    }
    .hero-main-btn {
      border-radius: 14px;
      min-height: 64px;
      min-width: min(100%, 320px);
      padding: 18px 34px;
      font-size: 18px;
      font-weight: 760;
    }
    .hero-main-btn.btn-gold { box-shadow: 0 18px 36px rgba(244,162,13,.28); }
    .hero-main-btn.btn-light {
      border-color: rgba(43,43,42,.16);
      background: #fff;
      box-shadow: 0 14px 30px rgba(43,43,42,.10);
    }
    h1 { max-width: 900px; margin: 18px auto 0; font-size: clamp(40px, 7vw, 68px); line-height: 1.08; letter-spacing: 0; font-weight: 650; }
    h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; letter-spacing: 0; font-weight: 650; }
    h3 { margin: 0; font-size: 24px; line-height: 1.22; font-weight: 650; }
    p { color: var(--muted); line-height: 1.7; }
    .hero-copy {
      display: grid;
      gap: 8px;
      max-width: 860px;
      margin: 32px auto 0;
      color: #4f5356;
      font-size: clamp(17px, 1.55vw, 20px);
      line-height: 1.62;
      font-weight: 560;
      text-wrap: balance;
    }
    .hero-copy p { margin: 0; color: inherit; line-height: inherit; }
    .hero-copy strong {
      color: #2B2B2A;
      font-weight: 760;
      box-shadow: inset 0 -9px 0 rgba(244, 162, 13, .24);
    }
    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 22px auto 0;
      max-width: 880px;
    }
    .trust-strip span {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      border: 1px solid #dddfdf;
      border-radius: 999px;
      background: rgba(255,255,255,.86);
      padding: 8px 14px;
      color: #727272;
      font-size: 13px;
      font-weight: 650;
    }
    .hero-action-note { margin: 0; color: #727272; font-size: 14px; }
    .calculation-note { margin-top: 8px; color: #727272; font-size: 14px; }
    .panel-title { margin-top: 10px; }
    .flush-title { margin-top: 0; }
    .small-text { font-size: 14px; }
    .lead-text { font-size: 18px; }
    .result-kicker { color: #7d766d; font-size: 14px; }
    .cta-note-line,
    .cta-lead {
      max-width: 740px;
      font-size: 18px;
    }
    .cta-note-line,
    .cta-title { margin-top: 12px; }
    .cta-title { max-width: 800px; }
    .warning-eyebrow { color: #9f3d3d; }
    .warning-title { margin-top: 20px; }
    .modal-title-spaced { margin-top: 12px; }
    .btn-danger { background: #9f3d3d; color: #fff; }
    .method p,
    .calculation-note,
    .calc-card > p,
    .result-card p,
    .big-result p,
    .message,
    .wide-card p,
    .focus-box p,
    .risk-card p,
    .study-card > p,
    .team-intro p,
    .team-card p,
    .cta-panel p,
    .modal-card > p,
    .consultation-intro p,
    .schedule-card p,
    .privacy-note,
    .submission-demo p,
    .footer-address,
    .footer-legal p,
    .footer-bottom,
    .contact {
      text-align: left;
      text-align-last: auto;
      hyphens: manual;
      overflow-wrap: normal;
      word-break: normal;
      text-wrap: pretty;
    }

    .privacy-note {
      max-width: 660px;
      margin: 14px 0 0;
      color: #727272;
      font-size: 13px;
      line-height: 1.65;
    }

    .privacy-note a {
      color: #2B2B2A;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(244, 162, 13, .65);
      text-underline-offset: 3px;
    }

    .legal-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at 18% 8%, rgba(244, 162, 13, .13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #efefea 100%);
    }

    .legal-header {
      border-bottom: 1px solid #e7e8e6;
      background: rgba(255, 255, 255, .84);
      backdrop-filter: blur(12px);
    }

    .legal-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 0;
    }

    .legal-brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .legal-brand-logo {
      display: block;
      width: min(300px, 46vw);
      height: auto;
      max-height: 58px;
      object-fit: contain;
      object-position: left center;
    }

    .legal-main {
      padding: 58px 0 76px;
    }

    .legal-document {
      width: min(100%, 940px);
      margin: 0 auto;
      border: 1px solid #dddfdf;
      border-radius: 30px;
      background: rgba(255, 255, 255, .94);
      padding: clamp(26px, 5vw, 54px);
      box-shadow: 0 28px 80px rgba(43, 43, 42, .1);
    }

    .legal-document .section-eyebrow {
      margin-bottom: 12px;
    }

    .legal-document h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.1;
      font-weight: 700;
      text-align: left;
    }

    .legal-updated {
      margin: 16px 0 0;
      color: #727272;
      font-size: 14px;
    }

    .legal-document h2 {
      margin-top: 34px;
      font-size: 25px;
      line-height: 1.25;
    }

    .legal-document h3 {
      margin: 22px 0 8px;
      font-size: 18px;
      line-height: 1.35;
    }

    .legal-document p,
    .legal-document li {
      color: #555a5d;
      font-size: 16px;
      line-height: 1.75;
    }

    .legal-document p {
      margin: 12px 0 0;
    }

    .legal-document ul {
      margin: 12px 0 0;
      padding-left: 22px;
    }

    .legal-document a {
      color: #2B2B2A;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(244, 162, 13, .7);
      text-underline-offset: 3px;
    }

    .legal-table {
      width: 100%;
      margin-top: 16px;
      border-collapse: collapse;
      overflow: hidden;
      border: 1px solid #dddfdf;
      border-radius: 18px;
      font-size: 14px;
    }

    .legal-table th,
    .legal-table td {
      padding: 14px;
      border-bottom: 1px solid #e7e8e6;
      text-align: left;
      vertical-align: top;
    }

    .legal-table th {
      background: #f7f7f4;
      color: #2B2B2A;
      font-weight: 750;
    }

    .legal-table tr:last-child td {
      border-bottom: 0;
    }

    .legal-note {
      margin-top: 24px;
      border-left: 5px solid var(--brand-orange);
      border-radius: 16px;
      background: #fff7e4;
      padding: 16px 18px;
      color: #4d4640;
    }

    .legal-footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .selector-card, .calc-card, .result-card, .wide-card, .modal-card {
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 18px 50px rgba(47,43,38,.06);
    }
    .calculator-section {
      padding-top: 58px;
      padding-bottom: 34px;
      scroll-margin-top: 96px;
    }
    .selector-card { margin-top: 0; border-radius: 32px; padding: 24px; text-align: left; }
    .section-eyebrow { color: #727272; text-transform: uppercase; letter-spacing: .18em; font-size: 13px; }
    .selector-top { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; align-items: center; text-align: center; }
    .selector-top > div { width: 100%; }
    .selector-top .calculation-note {
      max-width: none;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      text-align-last: auto;
    }
    .selector-title { color: #2B2B2A; font-size: clamp(26px, 3vw, 36px); line-height: 1.15; font-weight: 700; letter-spacing: 0; text-transform: none; }
    .muted-small { color: #727272; font-size: 12px; }
    .method-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
    .method {
      min-height: 220px; border: 1px solid #ece3d5; background: #fcfaf6; border-radius: 24px;
      padding: 20px; text-align: left; display: flex; flex-direction: column; transition: .18s ease;
    }
    .method:hover { background: #fff; box-shadow: 0 12px 30px rgba(47,43,38,.06); }
    .method.active { border-color: #d9c8a6; background: #fff7e9; box-shadow: 0 10px 30px rgba(244,162,13,.12); }
    .method-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .number { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: #f3eadb; color: #8a7a57; font-weight: 700; }
    .active .number { background: var(--ink); color: #fff; }
    .method h3 { margin-top: 18px; font-size: 22px; }
    .method p { min-height: 72px; font-size: 14px; }
    .calc-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; margin-top: 32px; align-items: start; }
    .calc-card { border-radius: 28px; padding: 24px; }
    .field-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; align-items: end; margin-top: 22px; }
    .field-primary { grid-column: span 2; }
    .field-secondary { grid-column: span 3; }
    .aligned-field-grid > div { display: flex; min-width: 0; flex-direction: column; }
    .aligned-field-grid label {
      min-height: 42px;
      justify-content: center;
      text-align: center;
      line-height: 1.25;
    }
    .aligned-field-grid input,
    .aligned-field-grid select {
      text-align: center;
      text-align-last: center;
    }
    .dimensions-field-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
    .dimensions-field-grid .field-primary { grid-column: span 2; }
    .dimensions-field-grid .field-secondary { grid-column: span 4; }
    label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #727272; font-size: 14px; font-weight: 650; }
    .help { position: relative; width: 20px; height: 20px; border-radius: 999px; border: 1px solid #d7c9ab; background: #fff; color: #8a7a57; display: inline-grid; place-items: center; font-size: 11px; font-weight: 800; }
    .help span { display: none; position: absolute; left: 50%; top: 26px; transform: translateX(-50%); width: 260px; z-index: 15; border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 10px 12px; color: #727272; box-shadow: 0 18px 40px rgba(47,43,38,.12); font-weight: 400; line-height: 1.5; text-align: left; }
    .help:hover span, .help:focus span { display: block; }
    input, select {
      width: 100%; min-height: 58px; border-radius: 16px; border: 1px solid #e6dfd1;
      background: #fcfaf6; color: var(--ink); padding: 14px 16px; outline: none;
    }
    input:focus, select:focus { border-color: #d7c9ab; background: #fff; }
    .actions { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
    .actions .note { flex-basis: 100%; color: #727272; font-size: 14px; }
    .visual-wrap { position: relative; display: flex; justify-content: center; }
    .visual-wrap::before { content: ""; position: absolute; left: 8%; top: 8%; width: 190px; height: 190px; background: rgba(242,197,111,.3); border-radius: 999px; filter: blur(40px); }
    .visual-wrap::after { content: ""; position: absolute; right: 8%; bottom: 5%; width: 220px; height: 220px; background: rgba(255,255,255,.7); border-radius: 999px; filter: blur(45px); }
    .result-shell { position: relative; z-index: 1; width: 100%; max-width: 520px; border: 1px solid var(--line); border-radius: 36px; background: rgba(255,255,255,.8); padding: 28px; box-shadow: 0 30px 80px rgba(47,43,38,.08); backdrop-filter: blur(12px); }
    .building-panel { border-radius: 30px; background: var(--soft); padding: 24px; }
    .legend { display: flex; gap: 16px; flex-wrap: wrap; border: 1px solid #eadfca; border-radius: 26px; background: #fff; padding: 16px; color: var(--muted); font-size: 12px; }
    .dot { width: 12px; height: 12px; border-radius: 999px; display: inline-block; margin-right: 8px; vertical-align: -1px; }
    .dot.blue { background: rgba(18, 148, 196, .95); }
    .dot.white { background: #fff; border: 1px solid #cfd4d4; }
    .building-stage {
      position: relative;
      height: 330px;
      max-width: 520px;
      margin: 16px auto 0;
      padding: 14px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(43, 43, 42, .08);
    }
    .building-stage::before { display: none; }
    .house-meter {
      position: relative;
      width: 100%;
      max-width: 500px;
      aspect-ratio: 1600 / 993;
      overflow: hidden;
      border-radius: 18px;
      background: #fff;
    }
    .house-image {
      display: block;
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: contrast(1.05);
    }
    .house-fill-svg {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .house-fill-rect {
      transition: y 900ms ease, height 900ms ease;
    }
    .fill-total { display: none; }
    .fill-current {
      fill: var(--house-current-fill);
    }
    .result-card { margin-top: 18px; border-radius: 24px; padding: 20px; box-shadow: 0 8px 20px rgba(47,43,38,.05); }
    .stat-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 14px; }
    .stat { border-radius: 16px; background: #faf6ee; padding: 16px; min-width: 0; }
    .stat-label { color: #727272; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
    .stat-value { margin-top: 8px; font-size: 20px; line-height: 1.25; font-weight: 650; overflow-wrap: anywhere; }
    .result-card .stat-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .result-card .stat {
      display: grid;
      grid-template-columns: minmax(84px, .58fr) minmax(0, 1.42fr);
      align-items: center;
      gap: 14px;
      min-height: 64px;
      padding: 14px 16px;
    }
    .result-card .stat-value {
      margin-top: 0;
      text-align: right;
      overflow-wrap: normal;
    }
    .result-card .stat-current {
      grid-template-columns: minmax(146px, auto) minmax(0, 1fr);
    }
    .result-card .stat-current .stat-label {
      white-space: nowrap;
      font-size: 10px;
      letter-spacing: .035em;
    }
    .result-card .stat-house {
      grid-template-columns: minmax(68px, auto) minmax(0, 1fr);
      gap: 10px;
    }
    .result-card .stat-house .stat-label {
      white-space: nowrap;
      font-size: 10px;
      letter-spacing: .035em;
    }
    #areaVolumeOut,
    #areaCurrentOut,
    #dimVolumeOut,
    #dimCurrentOut,
    #dimGapShort,
    #decShareOut,
    #decFloorOut,
    #decCurrentOut {
      white-space: nowrap;
    }
    #areaHouseOut,
    #dimHouseOut {
      white-space: nowrap;
      max-width: 100%;
      min-width: 0;
      font-size: 16px;
      line-height: 1.2;
      overflow: hidden;
    }
    .big-result { margin-top: 16px; border: 1px solid #eadfca; border-radius: 16px; background: var(--panel); padding: 18px; }
    .big-number { margin-top: 8px; font-size: clamp(28px, 4vw, 36px); line-height: 1.12; font-weight: 650; overflow-wrap: anywhere; }
    .message { margin-top: 16px; border: 1px solid #f0e2c2; border-radius: 16px; background: #fff6e7; padding: 16px; color: #5d574d; line-height: 1.6; font-size: 14px; }
    .info-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; padding-bottom: 80px; }
    .info-card, .risk-card, .study-card { border: 1px solid var(--line); background: #fff; border-radius: 28px; padding: 28px; min-height: 240px; box-shadow: 0 16px 40px rgba(47,43,38,.05); }
    .info-icon { width: 40px; height: 40px; border-radius: 999px; background: #f6e2b5; margin-bottom: 18px; }
    section.content { padding-bottom: 80px; }
    #studie.content { padding-bottom: 34px; }
    .wide-card { border-radius: 34px; padding: 48px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; }
    .focus-box { border-radius: 28px; background: var(--soft); padding: 28px; }
    .focus-box ul { margin: 18px 0 0; padding: 0; list-style: none; color: #615b54; display: grid; gap: 14px; }
    .focus-box li { display: flex; gap: 12px; align-items: flex-start; }
    .focus-box li::before { content: ""; width: 10px; height: 10px; margin-top: 8px; border-radius: 999px; background: var(--gold); flex: 0 0 auto; }
    .risk-grid, .study-grid { display: grid; gap: 20px; margin-top: 36px; }
    .risk-grid { margin-top: 52px; }
    .risk-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .risk-title { max-width: none; white-space: nowrap; }
    .study-intro {
      width: 100%;
      text-align: center;
    }
    .study-intro h2 {
      max-width: none;
    }
    .study-intro p {
      max-width: none;
      margin: 16px 0 0;
      font-size: 18px;
      text-align: center;
      text-align-last: center;
    }
    .study-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .risk-card { min-height: 270px; transition: transform .18s ease; }
    .risk-card:hover { transform: translateY(-4px); }
    .risk-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: #fbf1de; color: #9a7a2d; font-size: 20px; margin-bottom: 18px; }
    .study-card { min-height: 360px; }
    .study-card h3 { white-space: nowrap; }
    .study-numbers { margin-top: 22px; border-radius: 24px; background: var(--soft); padding: 18px; display: grid; gap: 12px; color: #5d584f; font-size: 14px; }
    .study-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 16px; }
    .study-row span,
    .study-row strong { white-space: nowrap; }
    .study-row.gap { border-top: 1px solid #eadfca; padding-top: 12px; }
    .study-row.gap strong { color: #b26d09; }
    .study-row.cut strong { color: #9f6600; }
    .care-team {
      padding-bottom: 42px;
    }
    .team-intro {
      max-width: 860px;
      margin: 0 auto 28px;
      text-align: center;
    }
    .team-intro h2 {
      margin: 12px 0 0;
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: 0;
    }
    .team-intro p {
      margin: 16px auto 0;
      max-width: 820px;
      color: #5f5f5a;
      font-size: 17px;
      line-height: 1.7;
      text-align: center;
      text-align-last: center;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      align-items: stretch;
      gap: 22px;
    }
    .team-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
      align-items: stretch;
      align-content: stretch;
      gap: 24px;
      height: 100%;
      min-height: 390px;
      border: 1px solid rgba(43, 43, 42, .1);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(250, 250, 247, .96) 100%);
      padding: 26px;
      box-shadow: var(--shadow);
    }
    .team-card::before {
      content: "";
      position: absolute;
      left: 28px;
      top: 0;
      width: 86px;
      height: 4px;
      border-radius: 0 0 999px 999px;
      background: var(--brand-orange);
    }
    .team-photo-shell {
      position: relative;
      display: grid;
      place-items: end center;
      align-self: start;
      width: 100%;
      aspect-ratio: 4 / 5;
      min-height: 210px;
      border-radius: 0;
      background: transparent;
      overflow: visible;
    }
    .team-photo-shell img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      transform-origin: center bottom;
    }
    .team-photo-david,
    .team-photo-kamila {
      transform: scale(.92) translateY(1%);
    }
    .team-copy {
      display: grid;
      grid-template-rows: minmax(42px, auto) 1fr;
      align-content: start;
      min-height: 100%;
      min-width: 0;
    }
    .team-kicker { display: none; }
    .team-card h3 {
      display: flex;
      align-items: flex-start;
      margin: 0;
      min-height: 42px;
      color: var(--brand-black);
      font-size: clamp(24px, 2.3vw, 32px);
      line-height: 1.18;
      letter-spacing: 0;
    }
    .team-name-long {
      white-space: nowrap;
      font-size: clamp(22px, 2vw, 29px);
    }
    .team-card p {
      margin: 14px 0 0;
      color: #5f5f5a;
      font-size: 16px;
      line-height: 1.65;
    }
    .team-story {
      display: grid;
      gap: 10px;
      margin-top: 15px;
      color: #5f5f5a;
      font-size: 14px;
      line-height: 1.45;
    }
    .team-story-title {
      margin-bottom: 3px;
      color: var(--brand-black);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      line-height: 1.25;
      text-transform: uppercase;
    }
    .team-story span {
      position: relative;
      display: block;
      min-height: 0;
      padding-left: 16px;
      text-align: left;
      text-align-last: auto;
    }
    .team-story span::before {
      content: "";
      position: absolute;
      left: 0;
      top: .58em;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--brand-orange);
    }
    .cta { padding-bottom: 90px; }
    .cta-panel { border: 1px solid #ead8b5; border-radius: 36px; background: #fff6e8; padding: 48px; box-shadow: 0 20px 55px rgba(244,162,13,.08); }
    .cta-variant-stack { display: grid; gap: 24px; }
    .cta-panel-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
      align-items: center;
      gap: 42px;
    }
    .cta-copy { max-width: 760px; }
    .cta-side {
      border-left: 1px solid rgba(255, 255, 255, .2);
      padding-left: 34px;
      color: #fff;
    }
    .cta-side h3 {
      margin: 0;
      color: #fff;
      font-size: 22px;
      line-height: 1.25;
    }
    .cta-checks {
      display: grid;
      gap: 13px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      color: #eeeeea;
      font-size: 15px;
      line-height: 1.55;
    }
    .cta-checks li {
      position: relative;
      padding-left: 26px;
    }
    .cta-checks li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .58em;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 0 4px rgba(244, 162, 13, .18);
    }
    .cta-outcome {
      margin-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .18);
      padding-top: 18px;
      color: #f4f4ef;
      font-size: 14px;
      line-height: 1.6;
    }
    .cta-outcome strong { color: var(--gold); }
    .cta-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }
    .cta-metric {
      border-top: 1px solid rgba(255, 255, 255, .18);
      padding-top: 14px;
    }
    .cta-metric strong {
      display: block;
      color: var(--gold);
      font-size: 28px;
      line-height: 1.1;
    }
    .cta-metric span {
      display: block;
      margin-top: 6px;
      color: #eeeeea;
      font-size: 13px;
      line-height: 1.45;
    }
    .modal { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; background: rgba(43,43,42,.45); padding: 32px 16px; backdrop-filter: blur(8px); overflow: auto; }
    .modal.open { display: flex; }
    .modal-card { position: relative; width: min(100%, 720px); border-radius: 32px; padding: 32px; }
    #consultationModal.is-submitted .consultation-intro,
    #consultationModal.is-submitted .form-grid,
    #consultationModal.is-submitted .schedule-card,
    #consultationModal.is-submitted .modal-card > .actions,
    #consultationModal.is-submitted .privacy-note,
    #consultationModal.is-submitted #consultSubmitStatus {
      display: none;
    }
    #consultationModal.is-submitted .modal-card {
      width: min(100%, 560px);
      border-color: rgba(244, 162, 13, .34);
      background:
        linear-gradient(180deg, rgba(255, 250, 241, .98) 0%, #ffffff 68%),
        #ffffff;
      box-shadow: 0 28px 76px rgba(43, 43, 42, .18);
    }
    .consultation-intro { max-width: 620px; margin: 0 auto; text-align: center; }
    .consultation-intro p { margin: 14px auto 0; }
    .close { position: absolute; right: 20px; top: 20px; width: 40px; height: 40px; border-radius: 999px; border: 1px solid #e7dfd1; background: #fff; color: #6c665f; font-size: 24px; line-height: 1; }
    #consultationModal.is-submitted .close {
      right: 22px;
      top: 18px;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #6c665f;
      font-size: 28px;
      font-weight: 500;
      box-shadow: none;
    }
    .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 28px; }
    .span-2 { grid-column: span 2; }
    .inline-field { display: flex; gap: 12px; }
    .client-type {
      grid-column: span 2;
      border: 1px solid #eadfca;
      border-radius: 20px;
      background: #fffaf1;
      padding: 14px;
    }
    .client-type-options {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }
    .client-type-options input {
      position: absolute;
      width: 1px;
      min-height: 0;
      height: 1px;
      margin: 0;
      opacity: 0;
      pointer-events: none;
    }
    .client-type-option {
      min-height: 48px;
      margin: 0;
      justify-content: center;
      border: 1px solid #e1d1b2;
      border-radius: 999px;
      background: #fff;
      color: #727272;
      cursor: pointer;
      transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    }
    .client-type-option:hover { transform: translateY(-1px); }
    .client-type-options input:checked + .client-type-option {
      border-color: #2B2B2A;
      background: #2B2B2A;
      color: #fff;
    }
    .legal-person-fields { display: contents; }
    .legal-person-fields.is-hidden { display: none; }
    .form-honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .schedule-card {
      margin-top: 24px;
      border: 1px solid #eadfca;
      border-radius: 22px;
      background: #fffaf1;
      padding: 18px;
    }
    .schedule-card h4 { margin: 0; font-size: 18px; line-height: 1.3; }
    .schedule-card p { margin: 8px 0 0; font-size: 14px; }
    .schedule-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .schedule-actions .btn { padding: 12px 18px; font-size: 14px; }
    .ares-status {
      display: none;
      margin-top: 10px;
      border-radius: 14px;
      padding: 10px 12px;
      font-size: 13px;
      line-height: 1.5;
    }
    .ares-status.is-visible { display: block; }
    .ares-status.success { border: 1px solid #d8e7c8; background: #f2f8ea; color: #405c2e; }
    .ares-status.error { border: 1px solid #efcaca; background: #fff5f5; color: #7a3b3b; }
    .ares-status.info { border: 1px solid #eadfca; background: #fffaf1; color: #727272; }
    input[readonly] { color: #727272; background: #f7f1e8; }
    .email-preview {
      margin-top: 20px;
      display: grid;
      gap: 12px;
    }
    .email-preview-row {
      border: 1px solid #eadfca;
      border-radius: 16px;
      background: #fcfaf6;
      padding: 12px 14px;
    }
    .email-preview-row strong {
      display: block;
      margin-bottom: 4px;
      color: #727272;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .email-preview-row textarea {
      width: 100%;
      min-height: 130px;
      border: 0;
      background: transparent;
      color: #2B2B2A;
      resize: vertical;
      outline: none;
      line-height: 1.6;
    }
    .copy-status {
      min-height: 20px;
      color: #405c2e;
      font-size: 13px;
    }
    .copy-status.info { color: #727272; }
    .copy-status.success { color: #405c2e; }
    .copy-status.error { color: #8a3b3b; }
    .submission-demo {
      display: none;
      margin: 0;
      border: 1px solid rgba(244, 162, 13, .28);
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(255, 247, 228, .92) 0%, rgba(255, 255, 255, .98) 62%),
        #fff;
      padding: 30px 28px 28px;
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    }
    .submission-demo.is-visible { display: block; }
    .submission-icon {
      position: relative;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 14px 28px rgba(244, 162, 13, .28);
    }
    .submission-icon::after {
      content: "";
      display: block;
      width: 14px;
      height: 26px;
      margin-top: -4px;
      border: solid var(--ink);
      border-width: 0 4px 4px 0;
      transform: rotate(45deg);
    }
    .submission-demo h3 {
      color: var(--ink);
      font-size: 24px;
      line-height: 1.22;
      font-weight: 700;
    }
    .submission-demo p {
      max-width: 430px;
      margin: 10px auto 0;
      color: #5d5f60;
      font-size: 15px;
      line-height: 1.65;
      text-align: center;
      text-align-last: auto;
    }
    #consultationModal.is-submitted .submission-demo p { text-align: center; }
    .submission-signature {
      color: var(--ink);
      font-weight: 750;
    }
    .submission-actions {
      justify-content: center;
      margin-top: 22px;
    }
    .submission-actions .btn {
      min-width: 210px;
      box-shadow: 0 14px 28px rgba(244, 162, 13, .24);
    }
    .warning .modal-card { border-color: #efcaca; }
    .warning-icon { width: 48px; height: 48px; border-radius: 999px; display: inline-grid; place-items: center; background: #fff1f1; color: var(--danger); font-size: 24px; margin-right: 12px; }
    footer { border-top: 1px solid #e7dfd1; background: rgba(255,255,255,.72); padding: 54px 0 32px; }
    .footer-shell { display: grid; gap: 30px; }
    .footer-grid { display: grid; grid-template-columns: minmax(260px, 1.1fr) minmax(210px, .7fr) minmax(260px, .9fr); gap: 42px; align-items: flex-start; }
    .footer-logo {
      display: block;
      width: min(340px, 72vw);
      height: auto;
      margin-bottom: 18px;
    }
    .footer-address { max-width: 360px; margin: 0; font-size: 14px; color: #727272; }
    .footer-column h3 { margin: 0 0 14px; font-size: 15px; text-transform: uppercase; letter-spacing: .14em; color: #727272; }
    .footer-column p { margin: 0 0 10px; font-size: 14px; }
    .footer-column a { color: #2B2B2A; font-weight: 650; text-decoration: none; }
    .footer-column a:hover { color: #9a6a17; }
    .footer-link-list { display: grid; gap: 8px; margin-top: 14px; font-size: 14px; }
    .footer-legal {
      border-top: 1px solid #eadfca;
      border-bottom: 1px solid #eadfca;
      padding: 24px 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 46px;
      color: #727272;
      font-size: 13px;
      line-height: 1.65;
    }
    .footer-legal p { margin: 0 0 10px; }
    .footer-legal .footer-legal-spaced { margin-top: 14px; }
    .footer-legal ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
    .footer-legal li { position: relative; padding-left: 18px; }
    .footer-legal li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 999px; background: var(--brand-orange); }
    .footer-legal strong { color: #2B2B2A; }
    .footer-legal a {
      color: #2B2B2A;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(244, 162, 13, .55);
      text-underline-offset: 3px;
    }
    .footer-legal a:hover {
      color: #9f6600;
      text-decoration-color: currentColor;
    }
    .footer-bottom { display: grid; gap: 6px; color: #7a746b; font-size: 13px; line-height: 1.6; }
    .footer-bottom-note { max-width: none; }
    .socials { display: flex; gap: 12px; justify-content: flex-start; margin-top: 18px; }
    .socials a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(114, 114, 114, .28);
      border-radius: 999px;
      background: #f4f4f1;
      color: var(--brand-orange);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    }
    .socials a:hover {
      transform: translateY(-2px);
      border-color: var(--brand-orange);
      background: #fff8e8;
      color: #727272;
      box-shadow: 0 8px 18px rgba(47,43,38,.12);
    }
    .socials svg {
      width: 20px;
      height: 20px;
      display: block;
      fill: currentColor;
    }
    .contact { max-width: 460px; color: #727272; line-height: 1.55; font-size: 14px; text-align: right; }
    .cube-card { border: 1px solid #ece3d5; border-radius: 30px; background: var(--soft); padding: 24px; }
    .cube { width: min(100%, 360px); margin: 0 auto; display: block; }
    .cube-card.dimension-building-card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 520px;
      border: 1px solid var(--line);
      border-radius: 36px;
      background: rgba(255,255,255,.8);
      padding: 28px;
      box-shadow: 0 30px 80px rgba(47,43,38,.08);
      backdrop-filter: blur(12px);
    }
    .dimension-building-card .cube { display: none; }
    .dimension-building-panel { background: var(--soft); }

    /* Premium visual pass inspired by the INSIA-fin logo: graphite, silver, white, precise orange. */
    :root {
      --paper: #f4f4f1;
      --ink: var(--brand-black);
      --muted: #727272;
      --line: #d8d9d9;
      --gold: var(--brand-orange);
      --brown: #4a4540;
      --soft: #f6f6f3;
      --panel: #fff8e8;
    }
    h1 { max-width: 980px; color: #2B2B2A; }
    h2, h3, .selector-title { color: #2B2B2A; }
    .hero-copy { color: #727272; }
    .trust-strip span {
      border-color: #d8d9d9;
      background: #fff;
      box-shadow: 0 10px 26px rgba(43,43,42,.06);
    }
    .trust-strip span::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-right: 8px;
      border-radius: 999px;
      background: var(--brand-orange);
      flex: 0 0 auto;
    }
    .section-eyebrow { color: #9f6600; font-weight: 800; }
    .selector-card,
    .calc-card,
    .result-card,
    .wide-card,
    .modal-card,
    .info-card,
    .risk-card,
    .study-card {
      border-color: rgba(43, 43, 42, .1);
      background: rgba(255, 255, 255, .96);
      box-shadow: var(--shadow);
    }
    .selector-card {
      border-top: 4px solid var(--gold);
      background:
        linear-gradient(180deg, #ffffff 0%, #fbfbf9 100%);
    }
    .method {
      border-color: #dedfdd;
      background: #f8f8f5;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
    }
    .method:hover {
      border-color: #cfd1d0;
      background: #fff;
      box-shadow: 0 14px 34px rgba(43,43,42,.08);
    }
    .method.active {
      border-color: var(--brand-orange);
      background: #fff7e8;
      color: #2B2B2A;
      box-shadow: 0 16px 38px rgba(244,162,13,.16);
    }
    .method.active h3 { color: #2B2B2A; }
    .method.active p { color: #56514b; }
    .number { background: #ececea; color: #4f4f4d; }
    .active .number { background: var(--gold); color: #2B2B2A; }
    label { color: #727272; }
    .help {
      border-color: #cfd1d0;
      color: #6f7174;
    }
    .help span {
      border-color: #dddfdf;
      color: #727272;
      box-shadow: 0 18px 44px rgba(43,43,42,.14);
    }
    input,
    select {
      border-color: #d9dbda;
      background: #f8f8f5;
    }
    input:focus,
    select:focus {
      border-color: #2B2B2A;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(244, 162, 13, .14);
    }
    .field-grid select {
      appearance: none;
      border-color: #dddfdf;
      border-radius: 14px;
      background-color: #fff;
      background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
      background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
      background-repeat: no-repeat;
      background-size: 6px 6px, 6px 6px;
      box-shadow: 0 10px 26px rgba(43,43,42,.06);
      color: #727272;
      font-weight: 650;
      padding-right: 44px;
    }
    .field-grid select:focus {
      border-color: #d9dbdb;
      background-color: #fff;
      box-shadow: 0 0 0 4px rgba(244, 162, 13, .14), 0 12px 30px rgba(43,43,42,.1);
    }
    .field-grid select:disabled {
      background-color: #f6f6f3;
      color: #9a9c9d;
      box-shadow: none;
    }
    .field-grid select option {
      background: #fff;
      color: #727272;
      font-weight: 650;
    }
    .field-grid select.native-select-hidden {
      position: absolute;
      width: 1px;
      min-height: 0;
      height: 1px;
      padding: 0;
      border: 0;
      opacity: 0;
      pointer-events: none;
    }
    .custom-select {
      position: relative;
      width: 100%;
    }
    .custom-select-trigger {
      position: relative;
      width: 100%;
      min-height: 58px;
      justify-content: center;
      border: 1px solid #dddfdf;
      border-radius: 14px;
      background: #fff;
      padding: 14px 44px 14px 16px;
      color: #727272;
      font-weight: 650;
      text-align: center;
      box-shadow: 0 10px 26px rgba(43,43,42,.06);
    }
    .custom-select-trigger::after {
      content: "";
      position: absolute;
      right: 18px;
      top: 50%;
      width: 9px;
      height: 9px;
      border-right: 2px solid var(--ink);
      border-bottom: 2px solid var(--ink);
      transform: translateY(-65%) rotate(45deg);
      transition: transform .18s ease;
    }
    .custom-select.open .custom-select-trigger {
      border-color: #d9dbdb;
      box-shadow: 0 0 0 4px rgba(244, 162, 13, .14), 0 12px 30px rgba(43,43,42,.1);
    }
    .custom-select.open .custom-select-trigger::after {
      transform: translateY(-35%) rotate(225deg);
    }
    .custom-select-trigger:disabled {
      background: #f6f6f3;
      color: #9a9c9d;
      box-shadow: none;
      cursor: not-allowed;
    }
    .custom-select-menu {
      position: absolute;
      left: 50%;
      right: auto;
      top: calc(100% + 8px);
      z-index: 55;
      display: none;
      max-height: 260px;
      overflow: auto;
      border: 1px solid #dddfdf;
      border-radius: 16px;
      background: #fff;
      width: min(380px, calc(100vw - 32px));
      min-width: 100%;
      padding: 10px;
      transform: translateX(-50%);
      box-shadow: 0 24px 58px rgba(43,43,42,.16);
    }
    .custom-select.open .custom-select-menu {
      display: grid;
      gap: 4px;
    }
    .custom-select-option {
      width: 100%;
      min-height: 48px;
      justify-content: flex-start;
      border: 1px solid #eceeed;
      border-radius: 12px;
      background: #fff;
      padding: 12px 14px;
      color: #727272;
      font-weight: 650;
      line-height: 1.35;
      text-align: left;
      box-shadow: none;
      white-space: normal;
    }
    .custom-select-option:hover,
    .custom-select-option.is-selected {
      border-color: #e1e3e2;
      background: #f6f6f3;
      color: var(--ink);
      transform: none;
    }
    .custom-select-option.is-selected {
      box-shadow: inset 3px 0 0 var(--brand-orange);
    }
    .visual-wrap::before,
    .visual-wrap::after { display: none; }
    .result-shell {
      border-color: rgba(43,43,42,.12);
      background: rgba(255,255,255,.94);
      box-shadow: 0 28px 72px rgba(43,43,42,.12);
    }
    .building-panel,
    .cube-card {
      border-color: rgba(43,43,42,.08);
      background: #f3f3ef;
    }
    .cube-card.dimension-building-card {
      border-color: rgba(43,43,42,.12);
      border-radius: 36px;
      background: rgba(255,255,255,.94);
      padding: 28px;
      box-shadow: 0 28px 72px rgba(43,43,42,.12);
    }
    .cube-card.dimension-building-card .building-panel {
      background: #f3f3ef;
    }
    .building-stage { background: #fff; }
    .building-stage::before,
    .legend,
    .big-result,
    .client-type,
    .schedule-card {
      border-color: #dddfdf;
      background: #fff;
    }
    .stat,
    .study-numbers,
    .email-preview-row {
      background: #f6f6f2;
    }
    .big-result {
      border-left: 4px solid var(--gold);
      background: #fffaf0;
    }
    .message {
      border-color: #f0d9a8;
      background: #fff8e8;
      color: #514c45;
    }
    .info-card,
    .risk-card,
    .study-card {
      position: relative;
      overflow: hidden;
    }
    .info-card::before,
    .risk-card::before,
    .study-card::before {
      content: "";
      position: absolute;
      left: 28px;
      right: auto;
      top: 0;
      width: 72px;
      height: 4px;
      border-radius: 0 0 999px 999px;
      background: var(--brand-orange);
    }
    .info-icon {
      width: 64px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-gray) 0 46%, var(--brand-orange) 46% 68%, var(--brand-black) 68% 100%);
      box-shadow: none;
      margin-bottom: 22px;
    }
    .info-strip { gap: 24px; }
    .info-card {
      min-height: 265px;
      border: 1px solid rgba(46, 45, 44, .11);
      border-left: 5px solid var(--brand-orange);
      border-radius: 22px;
      background: linear-gradient(180deg, #fff 0%, #fbfbf9 100%);
      padding: 30px 28px 28px 30px;
      box-shadow: 0 16px 34px rgba(46, 45, 44, .07);
    }
    .info-card::before { display: none; }
    .info-card .info-icon { display: none; }
    .info-card h3 { margin: 0; font-size: 23px; line-height: 1.24; }
    .info-card p {
      margin: 14px 0 0;
      color: #55585b;
      text-align: left;
      text-align-last: auto;
      hyphens: manual;
      overflow-wrap: normal;
      word-break: normal;
      text-wrap: pretty;
    }
    .focus-box {
      border: 1px solid #dddfdf;
      background: #f6f6f2;
    }
    .risk-icon {
      background: #2B2B2A;
      color: var(--gold);
    }
    .cta-panel {
      border-color: rgba(43,43,42,.16);
      background:
        linear-gradient(135deg, var(--brand-black) 0%, #373737 66%, #4a4a48 100%);
      box-shadow: 0 24px 64px rgba(43,43,42,.18);
    }
    .cta-panel h2 { color: #fff; }
    .cta-panel p { color: #e9e9e5; }
    .cta-panel .section-eyebrow { color: #ffc565; }
    .cta-panel .btn-dark {
      background: var(--gold);
      color: #2B2B2A;
      box-shadow: 0 14px 28px rgba(244,162,13,.24);
    }
    .cta-panel .btn-light {
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.08);
      color: #fff;
    }
    footer {
      border-top-color: #dddfdf;
      background: #fff;
    }
    .footer-legal {
      border-top-color: #dddfdf;
      border-bottom-color: #dddfdf;
    }
    .socials a { border-color: rgba(114, 114, 114, .28); }
    .footer-column a:hover { color: #9f6600; }
    .hidden { display: none !important; }
    @media (min-width: 981px) {
      .calc-layout > .calc-card {
        align-self: start;
        will-change: transform;
      }
    }
    @media (max-width: 1180px) {
      .field-grid, .dimensions-field-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .field-primary, .field-secondary, .dimensions-field-grid .field-primary, .dimensions-field-grid .field-secondary { grid-column: span 1; }
    }
    @media (max-width: 980px) {
      .hero {
        min-height: auto;
        padding-top: 62px;
        padding-bottom: 70px;
        text-align: center;
      }
      .hero-content { max-width: none; }
      .hero h1 { margin-left: auto; margin-right: auto; text-align: center; }
      .hero-copy { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .method-grid, .calc-layout, .info-strip, .wide-card, .risk-grid, .study-grid, .team-grid { grid-template-columns: 1fr; }
      .risk-title { white-space: normal; }
      .cta-panel-inner { grid-template-columns: 1fr; gap: 28px; }
      .cta-side { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .2); padding-left: 0; padding-top: 26px; }
      .wide-card, .cta-panel { padding: 32px; }
      .footer-grid, .footer-legal { grid-template-columns: 1fr; }
      .footer-bottom { gap: 8px; }
      .contact { text-align: left; }
      .socials { justify-content: flex-start; }
    }
    @media (max-width: 680px) {
      .wrap { padding: 0 16px; }
      .header-inner {
        min-height: 64px;
        padding: 8px 0;
        gap: 10px;
      }
      .brand-logo {
        width: min(176px, 50vw);
        max-height: 38px;
      }
      .mobile-toggle {
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        border-radius: 14px;
      }
      .hamburger span { width: 20px; }
      .mobile-menu {
        top: 72px;
        right: 12px;
        width: min(312px, calc(100vw - 24px));
      }
      .section-quick-nav {
        display: block;
        top: 58%;
        z-index: 35;
      }
      .section-nav-panel {
        width: min(276px, calc(100vw - 52px));
        border-radius: 0 18px 18px 0;
        padding: 14px;
      }
      .section-nav-toggle {
        width: 38px;
        height: 62px;
        border-radius: 0 14px 14px 0;
      }
      .section-quick-nav.is-open .section-nav-toggle {
        left: min(276px, calc(100vw - 52px));
      }
      .section-nav-arrow {
        font-size: 24px;
      }
      .section-nav-title {
        margin-bottom: 10px;
        font-size: 11px;
      }
      .section-nav-links a {
        border-radius: 12px;
        padding: 10px 11px;
        font-size: 13px;
      }
      .hero {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 78px;
      }
      .hero-actions {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .hero-main-btn {
        width: 100%;
        min-width: 0;
        min-height: 60px;
        padding: 17px 24px;
      }
      .calculator-section {
        padding-top: 42px;
        padding-bottom: 44px;
        scroll-margin-top: 82px;
      }
      .calc-layout { gap: 22px; margin-top: 24px; }
      .info-strip {
        gap: 18px;
        padding-bottom: 50px;
      }
      section.content { padding-bottom: 56px; }
      #studie.content { padding-bottom: 26px; }
      .selector-card, .calc-card, .result-shell, .modal-card, .cta-panel, .wide-card { border-radius: 24px; padding: 20px; }
      .result-shell { max-width: 100%; }
      .building-panel { padding: 18px; border-radius: 24px; }
      .legend { border-radius: 20px; padding: 13px 14px; gap: 10px 14px; }
      .field-grid, .stat-grid, .form-grid { grid-template-columns: 1fr; }
      .span-2, .client-type { grid-column: span 1; }
      .client-type-options { grid-template-columns: 1fr; }
      .aligned-field-grid label { min-height: 0; justify-content: flex-start; text-align: left; }
      .aligned-field-grid input, .aligned-field-grid select { text-align: left; text-align-last: left; }
      .custom-select-trigger { justify-content: flex-start; text-align: left; }
      .custom-select-menu { left: 0; right: 0; width: 100%; min-width: 0; transform: none; }
      .field-primary, .field-secondary, .dimensions-field-grid .field-primary, .dimensions-field-grid .field-secondary { grid-column: span 1; }
      .inline-field { flex-direction: column; }
      .study-intro,
      .study-intro p,
      .team-intro,
      .team-intro p {
        text-align: left;
        text-align-last: auto;
      }
      .method p,
      .calculation-note,
      .calc-card > p,
      .result-card p,
      .big-result p,
      .message,
      .wide-card p,
      .focus-box p,
      .risk-card p,
      .study-card > p,
      .team-card p,
      .cta-panel p,
      .modal-card > p,
      .consultation-intro p,
      .schedule-card p,
      .submission-demo p,
      .footer-address,
      .footer-legal p,
      .footer-bottom,
      .contact,
      .info-card p {
        text-align: left;
        text-align-last: auto;
        hyphens: manual;
        overflow-wrap: normal;
        word-break: normal;
      }
      .info-card,
      .risk-card,
      .study-card {
        min-height: 0;
        padding: 24px;
        border-radius: 24px;
      }
      .info-card h3 { font-size: 22px; line-height: 1.2; }
      .info-card p { margin-top: 12px; line-height: 1.65; }
      .study-card { min-height: 0; }
      .study-card h3 {
        white-space: normal;
        font-size: 26px;
        line-height: 1.18;
      }
      .study-card > p {
        margin-top: 18px;
        font-size: 19px;
        line-height: 1.55;
      }
      .care-team { padding-bottom: 32px; }
      .team-intro { margin-bottom: 20px; }
      .team-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        border-radius: 24px;
        padding: 24px;
      }
      .team-photo-shell {
        width: min(230px, 72vw);
        min-height: 220px;
        margin: 0 auto;
      }
      .team-copy {
        min-height: 0;
      }
      .team-card h3 {
        font-size: 26px;
        min-height: 0;
      }
      .team-name-long {
        white-space: normal;
        font-size: 26px;
      }
      .team-story {
        grid-template-rows: none;
        font-size: 14px;
        line-height: 1.45;
        gap: 6px;
      }
      .team-story span {
        min-height: 0;
        text-align: left;
        text-align-last: auto;
      }
      .study-numbers { margin-top: 18px; padding: 14px 12px; font-size: 12px; border-radius: 20px; }
      .study-row { gap: 8px; }
      .study-row span { white-space: normal; }
      .cta { padding-bottom: 34px; }
      .cta-panel { border-radius: 24px; }
      footer {
        padding-top: 38px;
        padding-bottom: 28px;
      }
      .footer-logo {
        width: min(260px, 78vw);
        margin-bottom: 16px;
      }
      .footer-shell { gap: 24px; }
      .footer-grid { gap: 30px; }
      .footer-bottom-note { margin-right: -8px; }
      .actions .btn { width: 100%; }
      .building-stage { height: 300px; }
      .legal-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
      }
      .legal-brand {
        width: 100%;
      }
      .legal-brand-logo {
        width: min(260px, 72vw);
        max-height: 48px;
      }
      .legal-main {
        padding: 34px 0 52px;
      }
      .legal-document {
        border-radius: 24px;
        padding: 22px;
      }
      .legal-document h2 {
        font-size: 22px;
      }
      .legal-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
      }
      .legal-footer-nav .btn {
        width: 100%;
      }
    }
