      @font-face {
        font-family: "Montserrat";
        src: url("/assets/fonts/montserrat-300.ttf") format("truetype");
        font-style: normal;
        font-weight: 300;
        font-display: swap;
      }
      @font-face {
        font-family: "Montserrat";
        src: url("/assets/fonts/montserrat-400.ttf") format("truetype");
        font-style: normal;
        font-weight: 400;
        font-display: swap;
      }
      @font-face {
        font-family: "Montserrat";
        src: url("/assets/fonts/montserrat-600.ttf") format("truetype");
        font-style: normal;
        font-weight: 600;
        font-display: swap;
      }
      @font-face {
        font-family: "Montserrat";
        src: url("/assets/fonts/montserrat-700.ttf") format("truetype");
        font-style: normal;
        font-weight: 700;
        font-display: swap;
      }
      @font-face {
        font-family: "Spartan";
        src: url("/assets/fonts/spartan-500.ttf") format("truetype");
        font-style: normal;
        font-weight: 500;
        font-display: swap;
      }
      @font-face {
        font-family: "Spartan";
        src: url("/assets/fonts/spartan-700.ttf") format("truetype");
        font-style: normal;
        font-weight: 700;
        font-display: swap;
      }

      :root {
        --navy: #071722;
        --navy-2: #0b2230;
        --graphite: #17242b;
        --gold: #c99a43;
        --gold-light: #e4c27b;
        --cream: #f7f5f0;
        --soft: #f3f5f5;
        --white: #ffffff;
        --text: #10232d;
        --muted: #69767c;
        --line: #dfe4e5;
        --success: #2c7a59;
        --shadow: 0 24px 70px rgba(8, 25, 35, 0.11);
        --serif: "Spartan", sans-serif;
        --sans: "Montserrat", sans-serif;
        font-family: var(--sans);
        color: var(--text);
        background: var(--white);
        font-synthesis: none;
        text-rendering: optimizeLegibility;
      }

      * { box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body { margin: 0; min-width: 320px; background: var(--white); overflow-x: hidden; }
      body.no-scroll { overflow: hidden; }
      button, input, select, textarea { font: inherit; }
      button, a { -webkit-tap-highlight-color: transparent; }
      button { color: inherit; }
      a { color: inherit; text-decoration: none; }
      img, svg { display: block; }
      :focus-visible { outline: 3px solid rgba(201, 154, 67, 0.5); outline-offset: 3px; }

      .container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
      .section { padding: 112px 0; }
      .section-soft { background: var(--soft); }
      .section-dark { background: var(--navy); color: var(--white); }
      .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #9c7129;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.65px;
        text-transform: uppercase;
      }
      .section-kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; }
      .section-kicker.light { color: var(--gold-light); }
      .section-title {
        max-width: 760px;
        margin: 16px 0 0;
        font-family: var(--serif);
        font-size: clamp(36px, 4.2vw, 58px);
        font-weight: 500;
        line-height: 1.06;
        letter-spacing: -2px;
        white-space: pre-line;
      }
      .section-title.centered { margin-left: auto; margin-right: auto; text-align: center; }
      .section-intro { max-width: 650px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
      .section-head { margin-bottom: 52px; }
      .section-head.center { text-align: center; }
      .section-head.center .section-kicker { justify-content: center; }
      .section-head.center .section-intro { margin-left: auto; margin-right: auto; }

      .btn {
        min-height: 52px;
        border: 1px solid transparent;
        border-radius: 2px;
        padding: 0 23px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
        background: transparent;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.2px;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      }
      .btn:hover { transform: translateY(-2px); }
      .btn-gold { background: var(--gold); color: #101a1f; box-shadow: 0 14px 32px rgba(201, 154, 67, 0.2); }
      .btn-gold:hover { background: #d9ad5a; }
      .btn-outline-light { border-color: rgba(255, 255, 255, 0.32); color: var(--white); background: rgba(7, 23, 34, 0.22); }
      .btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
      .btn-outline-dark { border-color: #bbc5c9; color: var(--navy); }
      .btn-outline-dark:hover { border-color: var(--navy); }
      .btn-dark { background: var(--navy); color: var(--white); }
      .btn-dark:hover { background: var(--navy-2); }
      .btn-small { min-height: 42px; padding: 0 16px; }
      .btn-full { width: 100%; }

      .topbar {
        min-height: 35px;
        display: flex;
        align-items: center;
        background: #041019;
        color: rgba(255, 255, 255, 0.58);
        font-size: 9px;
        letter-spacing: 0.45px;
      }
      .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
      .topbar strong { color: var(--gold-light); font-weight: 700; }
      .topbar-links { display: flex; align-items: center; gap: 20px; }
      .topbar a:hover { color: var(--white); }

      .site-header {
        position: absolute;
        top: 35px;
        left: 0;
        right: 0;
        z-index: 30;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
      }
      .nav-wrap { height: 82px; display: flex; align-items: center; gap: 30px; }
      .logo { min-width: 156px; display: inline-flex; align-items: center; gap: 11px; }
      .logo-mark {
        width: 34px;
        height: 40px;
        color: var(--gold);
        display: grid;
        place-items: center;
        border: 1px solid rgba(201, 154, 67, 0.48);
        border-radius: 50% 50% 48% 48% / 36% 36% 64% 64%;
      }
      .logo strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.7px; line-height: 1; }
      .logo small { display: block; margin-top: 5px; color: rgba(255, 255, 255, 0.48); font-size: 7.5px; font-weight: 700; letter-spacing: 1.45px; text-transform: uppercase; }
      .nav-links { display: flex; align-items: stretch; justify-content: center; flex: 1; height: 100%; }
      .nav-item { position: relative; display: flex; align-items: center; }
      .nav-trigger, .nav-direct {
        height: 100%;
        padding: 0 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.74);
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        cursor: pointer;
      }
      .nav-trigger:hover, .nav-direct:hover, .nav-item:focus-within > .nav-trigger { color: var(--gold-light); }
      .nav-trigger svg { transition: transform 0.2s ease; }
      .nav-item:hover .nav-trigger svg, .nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }
      .dropdown {
        position: absolute;
        left: 50%;
        top: calc(100% - 1px);
        width: 560px;
        padding: 24px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 7px 25px;
        background: var(--white);
        color: var(--text);
        border-top: 3px solid var(--gold);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 10px);
        transition: 0.2s ease;
      }
      .dropdown.narrow { width: 330px; grid-template-columns: 1fr; }
      .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
      .dropdown a { padding: 10px 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid #edf0f1; font-size: 11px; font-weight: 700; }
      .dropdown a:hover { color: #956816; border-color: var(--gold); }
      .dropdown a span { color: var(--gold); }
      .nav-actions { display: flex; align-items: center; gap: 13px; }
      .header-phone { display: grid; padding-right: 8px; }
      .header-phone small { color: rgba(255, 255, 255, 0.45); font-size: 8px; }
      .header-phone strong { margin-top: 3px; font-size: 11px; }
      .menu-btn { display: none; width: 43px; height: 43px; border: 1px solid rgba(255, 255, 255, 0.22); background: transparent; color: var(--white); place-items: center; cursor: pointer; }

      .hero {
        min-height: 800px;
        position: relative;
        display: flex;
        align-items: stretch;
        overflow: hidden;
        background: var(--navy);
        color: var(--white);
      }
      .hero-media { position: absolute; inset: 0; }
      .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
      .hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(3, 15, 24, 0.98) 0%, rgba(3, 15, 24, 0.92) 31%, rgba(3, 15, 24, 0.58) 50%, rgba(3, 15, 24, 0.08) 78%),
          linear-gradient(0deg, rgba(3, 15, 24, 0.7) 0%, transparent 40%);
      }
      .hero-inner { min-height: 800px; padding-top: 145px; padding-bottom: 54px; display: flex; align-items: center; position: relative; z-index: 2; }
      .hero-copy { width: min(640px, 60%); }
      .hero-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--gold-light);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.65px;
        text-transform: uppercase;
      }
      .hero-label::before { content: ""; width: 30px; height: 1px; background: currentColor; }
      .hero h1 {
        margin: 20px 0 22px;
        max-width: 630px;
        font-family: var(--serif);
        font-size: clamp(50px, 5.7vw, 72px);
        font-weight: 500;
        line-height: 1.04;
        letter-spacing: -2.4px;
      }
      .hero-lead { max-width: 570px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 1.75; }
      .hero-cta { margin-top: 32px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
      .hero-note { margin-top: 25px; display: flex; align-items: center; gap: 18px; color: rgba(255, 255, 255, 0.52); font-size: 10px; }
      .hero-note span { display: flex; align-items: center; gap: 7px; }
      .hero-note svg { color: var(--gold-light); }
      .hero-stat {
        position: absolute;
        right: 0;
        bottom: 52px;
        width: 250px;
        padding: 22px 24px;
        border-left: 2px solid var(--gold);
        background: rgba(5, 20, 29, 0.72);
        backdrop-filter: blur(12px);
      }
      .hero-stat strong { display: block; font-family: var(--serif); color: var(--gold-light); font-size: 30px; font-weight: 500; }
      .hero-stat span { display: block; margin-top: 4px; color: rgba(255, 255, 255, 0.62); font-size: 10px; line-height: 1.5; }

      .partners { border-bottom: 1px solid var(--line); background: var(--white); }
      .partners-inner { min-height: 120px; display: flex; align-items: center; gap: 36px; }
      .partners-copy { flex: 0 0 190px; padding-right: 28px; border-right: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.6; }
      .partners-copy strong { color: var(--text); }
      .partner-list { flex: 1; display: grid; grid-template-columns: repeat(10, 1fr); align-items: center; gap: 18px; }
      .partner {
        min-width: 0;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #879297;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: -0.5px;
        text-align: center;
        opacity: 0.74;
        transition: opacity 0.2s ease, transform 0.2s ease;
      }
      .partner img { width: auto; height: auto; max-width: 88px; max-height: 38px; display: block; object-fit: contain; }
      .partner:hover { color: var(--text); opacity: 1; transform: translateY(-1px); }

      .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
      .trust-card { min-height: 235px; padding: 34px; background: var(--white); transition: transform 0.22s ease, box-shadow 0.22s ease; }
      .trust-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); }
      .trust-icon { width: 46px; height: 46px; display: grid; place-items: center; color: #9b6f22; background: #f7edd9; border-radius: 50%; }
      .trust-card h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
      .trust-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

      .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
      .product-card {
        min-height: 330px;
        position: relative;
        overflow: hidden;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: var(--white);
        border: 1px solid var(--line);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      }
      .product-card::after {
        content: "";
        width: 190px;
        height: 190px;
        position: absolute;
        right: -72px;
        top: -70px;
        border: 1px solid #e8ddc9;
        border-radius: 50%;
        transition: transform 0.3s ease;
      }
      .product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: #d2bc92; }
      .product-card:hover::after { transform: scale(1.12); }
      .product-icon { position: relative; z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; color: var(--gold); border: 1px solid #dfc99e; border-radius: 50%; }
      .product-card h3 { margin: 50px 0 8px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
      .product-card p { margin: 0; max-width: 280px; color: var(--muted); font-size: 12px; line-height: 1.7; }
      .product-link { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; color: #8f631c; font-size: 10px; font-weight: 800; letter-spacing: 0.65px; text-transform: uppercase; }

      .driver-ecosystem { margin-top: 24px; padding: 36px 40px; display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 48px; align-items: center; background: var(--navy); color: var(--white); }
      .driver-ecosystem h3 { margin: 9px 0 0; font-family: var(--serif); font-size: 31px; font-weight: 500; }
      .driver-ecosystem p { margin: 11px 0 0; color: rgba(255, 255, 255, 0.56); font-size: 11px; line-height: 1.7; }
      .ecosystem-links { display: flex; flex-wrap: wrap; gap: 9px; }
      .ecosystem-links a { padding: 10px 14px; border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.72); font-size: 10px; font-weight: 700; }
      .ecosystem-links a:hover { border-color: var(--gold); color: var(--gold-light); }

      .process-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 84px; align-items: center; }
      .process-copy .section-title { max-width: 470px; }
      .process-copy p { margin: 23px 0 30px; max-width: 430px; color: rgba(255, 255, 255, 0.56); font-size: 13px; line-height: 1.8; }
      .steps { counter-reset: process; }
      .step { min-height: 91px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
      .step:first-child { border-top: 1px solid rgba(255, 255, 255, 0.12); }
      .step-number { color: var(--gold-light); font-family: var(--serif); font-size: 29px; }
      .step h3 { margin: 0; font-family: var(--serif); font-size: 21px; font-weight: 500; }
      .step p { margin: 5px 0 0; color: rgba(255, 255, 255, 0.45); font-size: 10px; }
      .step svg { color: rgba(255, 255, 255, 0.27); }

      .calculator-showcase { padding: 0; overflow: hidden; background: linear-gradient(90deg, var(--cream) 0 50%, #e8ecec 50%); }
      .calculator-grid { width: min(1200px, calc(100% - 48px)); min-height: 650px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(56px, 6vw, 96px); }
      .calculator-copy { padding: 80px 0; display: flex; flex-direction: column; justify-content: center; }
      .calculator-copy .section-title { max-width: 540px; }
      .calculator-copy .section-intro { max-width: 520px; font-size: 14px; }
      .calculator-copy .btn { align-self: flex-start; margin-top: 30px; }
      .conversation-demo { padding: 70px 0; display: grid; place-items: center; background: transparent; }
      .conversation-card { width: min(480px, 100%); padding: 42px; background: var(--white); box-shadow: var(--shadow); }
      .conversation-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
      .conversation-top small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
      .progress { width: 135px; height: 3px; overflow: hidden; background: #e8ebec; }
      .progress span { display: block; width: 25%; height: 100%; background: var(--gold); }
      .conversation-card h3 { margin: 35px 0 24px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
      .answer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .answer {
        min-height: 98px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 13px;
        border: 1px solid var(--line);
        background: var(--white);
        cursor: pointer;
        font-size: 11px;
        font-weight: 700;
        text-align: left;
      }
      .answer:hover, .answer.selected { border-color: var(--gold); background: #fcf8ef; }
      .answer span { color: #986b20; }
      .conversation-foot { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; }
      .conversation-foot strong { color: var(--success); }

      .reviews-shell { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: 60px; align-items: center; }
      .google-score { padding: 42px; border: 1px solid var(--line); background: var(--white); text-align: center; }
      .google-logo { font-size: 19px; font-weight: 800; letter-spacing: -0.7px; }
      .google-logo span:nth-child(1), .google-logo span:nth-child(4) { color: #4285f4; }
      .google-logo span:nth-child(2), .google-logo span:nth-child(6) { color: #ea4335; }
      .google-logo span:nth-child(3) { color: #fbbc05; }
      .google-logo span:nth-child(5) { color: #34a853; }
      .google-score strong { display: block; margin-top: 18px; font-family: var(--serif); font-size: 45px; font-weight: 500; }
      .stars { margin-top: 5px; color: var(--gold); letter-spacing: 3px; }
      .google-score p { margin: 15px auto 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
      .review-placeholder { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
      .review-card { min-height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); }
      .review-card p { margin: 0; color: #425158; font-family: var(--serif); font-size: 17px; line-height: 1.55; }
      .review-author { display: flex; align-items: center; gap: 11px; }
      .review-author span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #e9eeee; color: var(--muted); font-size: 10px; font-weight: 800; }
      .review-author div { display: grid; }
      .review-author strong { font-size: 10px; }
      .review-author small { margin-top: 3px; color: var(--muted); font-size: 8px; }
      .reviews-note { grid-column: 1 / -1; margin: 0; padding: 12px 16px; background: #fff8e8; color: #77571e; font-size: 9px; line-height: 1.5; }

      .articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
      .article-card { border: 1px solid var(--line); background: var(--white); transition: transform 0.22s ease, box-shadow 0.22s ease; }
      .article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
      .article-visual { height: 210px; position: relative; overflow: hidden; background: var(--navy); }
      .article-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(7, 23, 34, 0.02) 30%, rgba(7, 23, 34, 0.72) 100%);
        pointer-events: none;
      }
      .article-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        pointer-events: none;
      }
      .article-image { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.4s ease; }
      .article-image--car { object-position: 64% 52%; }
      .article-image--shield { object-position: 52% 54%; }
      .article-image--help { object-position: 48% 52%; }
      .article-card:hover .article-image { transform: scale(1.045); }
      .article-visual span {
        position: absolute;
        left: 22px;
        bottom: 20px;
        z-index: 2;
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(228, 194, 123, 0.58);
        background: rgba(7, 23, 34, 0.82);
        color: var(--gold-light);
        backdrop-filter: blur(7px);
      }
      .article-body { padding: 28px; }
      .article-meta { color: #94691f; font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; }
      .article-card h3 { margin: 14px 0 13px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.2; }
      .article-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
      .article-card .product-link { margin-top: 22px; }

      .faq-wrap { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: 80px; align-items: start; }
      .faq-sticky { position: sticky; top: 30px; }
      .faq-sticky p { max-width: 370px; color: var(--muted); font-size: 13px; line-height: 1.8; }
      .faq-list { border-top: 1px solid var(--line); }
      .faq-list details { border-bottom: 1px solid var(--line); }
      .faq-list summary {
        min-height: 74px;
        padding: 20px 52px 20px 0;
        position: relative;
        display: flex;
        align-items: center;
        list-style: none;
        font-family: var(--serif);
        font-size: 18px;
        cursor: pointer;
      }
      .faq-list summary::-webkit-details-marker { display: none; }
      .faq-list summary::after { content: "+"; position: absolute; right: 5px; color: var(--gold); font-family: var(--sans); font-size: 22px; font-weight: 300; }
      .faq-list details[open] summary::after { content: "−"; }
      .faq-list details p { margin: -6px 0 24px; padding-right: 55px; color: var(--muted); font-size: 12px; line-height: 1.75; }

      .closing-cta { padding: 76px 0; position: relative; overflow: hidden; background: var(--gold); color: var(--navy); }
      .closing-cta::before { content: ""; width: 500px; height: 500px; position: absolute; right: -120px; top: -280px; border: 1px solid rgba(7, 23, 34, 0.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(7, 23, 34, 0.035); }
      .closing-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
      .closing-copy h2 { margin: 0; max-width: 680px; font-family: var(--serif); font-size: clamp(40px, 5vw, 63px); font-weight: 500; line-height: 1.02; letter-spacing: -2.5px; }
      .closing-copy p { margin: 18px 0 0; max-width: 610px; color: #574019; font-size: 12px; line-height: 1.7; }
      .closing-actions { flex: 0 0 320px; display: grid; gap: 10px; }
      .closing-actions .btn { justify-content: space-between; }
      .btn-phone {
        border-color: rgba(7, 23, 34, 0.72);
        background: var(--cream);
        color: var(--navy);
        box-shadow: 0 9px 22px rgba(7, 23, 34, 0.14);
      }
      .btn-phone:hover {
        border-color: var(--navy);
        background: var(--white);
        color: var(--navy);
        box-shadow: 0 13px 28px rgba(7, 23, 34, 0.2);
      }
      .btn-whatsapp { background: #173f34; color: var(--white); }

      .product-page-hero {
        min-height: 690px;
        padding: 185px 0 100px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: var(--navy);
        color: var(--white);
      }
      .product-page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(4, 17, 26, 0.98) 0%, rgba(4, 17, 26, 0.86) 52%, rgba(4, 17, 26, 0.54) 100%),
          url("/assets/insurely-hero-premium.png") 74% center / cover no-repeat;
        opacity: 0.76;
      }
      .product-page-hero::after {
        content: "";
        width: 620px;
        height: 620px;
        position: absolute;
        right: -210px;
        bottom: -430px;
        border: 1px solid rgba(228, 194, 123, 0.24);
        border-radius: 50%;
        box-shadow: 0 0 0 85px rgba(228, 194, 123, 0.025);
      }
      .product-page-hero .container { position: relative; z-index: 1; }
      .product-breadcrumb { margin-bottom: 38px; display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.48); font-size: 9px; letter-spacing: 0.45px; }
      .product-breadcrumb a:hover { color: var(--gold-light); }
      .product-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr); gap: 90px; align-items: end; }
      .product-page-kicker { display: inline-flex; align-items: center; gap: 11px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: 1.55px; text-transform: uppercase; }
      .product-page-kicker span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(228, 194, 123, 0.45); color: var(--gold-light); }
      .product-page-hero h1 { max-width: 790px; margin: 24px 0 20px; font-family: var(--serif); font-size: clamp(48px, 6.2vw, 78px); font-weight: 500; line-height: 0.99; letter-spacing: -3px; }
      .product-page-lead { max-width: 690px; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 15px; line-height: 1.8; }
      .product-page-actions { margin-top: 34px; display: flex; gap: 11px; flex-wrap: wrap; }
      .product-hero-summary { padding: 28px; border-top: 2px solid var(--gold); background: rgba(255, 255, 255, 0.075); backdrop-filter: blur(14px); }
      .product-hero-summary > span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
      .product-hero-summary ul { margin: 20px 0 0; padding: 0; display: grid; gap: 16px; list-style: none; }
      .product-hero-summary li { padding-left: 25px; position: relative; color: rgba(255, 255, 255, 0.78); font-size: 11px; line-height: 1.55; }
      .product-hero-summary li svg { position: absolute; left: 0; top: 1px; color: var(--gold-light); }

      .product-overview { padding: 108px 0; }
      .product-overview-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 85px; align-items: start; }
      .product-overview-copy { position: sticky; top: 28px; }
      .product-overview-copy h2, .product-check-copy h2, .product-related h2 { margin: 18px 0 0; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 54px); font-weight: 500; line-height: 1.06; letter-spacing: -2px; }
      .product-overview-copy p, .product-check-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
      .product-coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .product-coverage-card { min-height: 225px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
      .product-coverage-card:hover { transform: translateY(-3px); border-color: #cbb27f; box-shadow: 0 18px 40px rgba(8, 25, 35, 0.08); }
      .product-coverage-number { color: #9a6d21; font-size: 9px; font-weight: 800; letter-spacing: 1px; }
      .product-coverage-card h3 { margin: auto 0 10px; font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.2; }
      .product-coverage-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

      .product-check-section { padding: 100px 0; background: var(--soft); }
      .product-check-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 85px; align-items: center; }
      .product-checklist { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; }
      .product-checklist li { min-height: 88px; padding: 20px 24px; display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: center; border: 1px solid var(--line); background: var(--white); }
      .product-checklist li > span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--navy); color: var(--gold-light); }
      .product-checklist strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 500; }
      .product-checklist p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
      .product-disclaimer { margin-top: 24px !important; padding: 18px 20px; border-left: 2px solid var(--gold); background: #f8f1e2; color: #665334 !important; font-size: 10px !important; line-height: 1.7 !important; }

      .product-process { padding: 105px 0; background: var(--navy); color: var(--white); }
      .product-process-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; }
      .product-process-head h2 { max-width: 660px; margin: 16px 0 0; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 57px); font-weight: 500; line-height: 1.05; letter-spacing: -2px; }
      .product-process-head p { max-width: 410px; margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 12px; line-height: 1.75; }
      .product-process-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.13); }
      .product-process-step { min-height: 215px; padding: 28px 32px 20px 0; position: relative; border-right: 1px solid rgba(255, 255, 255, 0.13); }
      .product-process-step + .product-process-step { padding-left: 32px; }
      .product-process-step:last-child { border-right: 0; }
      .product-process-step > span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: 1px; }
      .product-process-step h3 { margin: 65px 0 12px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
      .product-process-step p { margin: 0; color: rgba(255, 255, 255, 0.5); font-size: 10px; line-height: 1.7; }

      .product-related { padding: 105px 0; }
      .product-related-head { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
      .product-related-head a { color: #8d641e; font-size: 10px; font-weight: 800; }
      .product-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
      .product-related-card { min-height: 245px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
      .product-related-card > span:first-child { width: 43px; height: 43px; display: grid; place-items: center; background: #f7f1e5; color: #94681d; }
      .product-related-card h3 { margin: auto 0 10px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
      .product-related-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
      .product-related-card .product-link { margin-top: 22px; }
      .footer-col a[aria-current="page"], .dropdown a[aria-current="page"] { color: var(--gold-light); }

      .blog-post-hero {
        padding: 172px 0 82px;
        position: relative;
        overflow: hidden;
        background: var(--navy);
        color: var(--white);
      }
      .blog-post-hero::before {
        content: "";
        width: 560px;
        height: 560px;
        position: absolute;
        right: -190px;
        top: -360px;
        border: 1px solid rgba(228, 194, 123, 0.2);
        border-radius: 50%;
        box-shadow: 0 0 0 75px rgba(228, 194, 123, 0.025);
      }
      .blog-post-hero .container { position: relative; z-index: 1; }
      .blog-post-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr); gap: 78px; align-items: center; }
      .blog-post-category { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
      .blog-post-heading h1 { max-width: 780px; margin: 20px 0 22px; font-family: var(--serif); font-size: clamp(48px, 5.9vw, 76px); font-weight: 500; line-height: 1; letter-spacing: -3px; }
      .blog-post-heading > p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.82; }
      .blog-post-meta { margin-top: 29px; display: flex; gap: 22px; flex-wrap: wrap; color: rgba(255, 255, 255, 0.48); font-size: 9px; font-weight: 700; letter-spacing: 0.35px; }
      .blog-post-meta span + span { padding-left: 22px; position: relative; }
      .blog-post-meta span + span::before { content: ""; width: 3px; height: 3px; position: absolute; left: 0; top: 5px; border-radius: 50%; background: var(--gold); }
      .blog-post-cover { height: 420px; margin: 0; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); }
      .blog-post-cover::after { content: ""; position: absolute; inset: 0; border: 13px solid rgba(7, 23, 34, 0.28); pointer-events: none; }
      .blog-post-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }

      .blog-post-section { padding: 94px 0 118px; background: #f7f8f7; }
      .blog-post-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(245px, 310px); gap: 86px; justify-content: center; align-items: start; }
      .blog-post-content { padding: 54px 62px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 24px 70px rgba(7, 23, 34, 0.055); color: #31444c; font-size: 13px; line-height: 1.9; }
      .blog-post-content > p:first-child { margin-top: 0; font-family: var(--serif); color: var(--navy); font-size: 21px; line-height: 1.65; }
      .blog-post-content p { margin: 0 0 23px; }
      .blog-post-content h2 { margin: 48px 0 17px; font-family: var(--serif); color: var(--navy); font-size: 34px; font-weight: 500; line-height: 1.15; letter-spacing: -0.9px; }
      .blog-post-content h3 { margin: 32px 0 12px; font-family: var(--serif); color: var(--navy); font-size: 23px; font-weight: 500; line-height: 1.25; }
      .blog-post-content ul, .blog-post-content ol { margin: 0 0 28px; padding-left: 23px; }
      .blog-post-content li { margin-bottom: 10px; padding-left: 5px; }
      .blog-post-content li::marker { color: #a87827; font-weight: 800; }
      .article-note { margin: 34px 0; padding: 22px 24px; border-left: 3px solid var(--gold); background: #f8f2e6; color: #5e4a2d; font-size: 12px; line-height: 1.78; }
      .article-note strong { color: #75531c; }
      .article-cta { margin: 50px -18px -10px; padding: 34px 36px; background: var(--navy); color: var(--white); }
      .article-cta h3 { margin: 0 0 10px; color: var(--white); font-size: 27px; }
      .article-cta p { margin-bottom: 21px; color: rgba(255, 255, 255, 0.57); font-size: 11px; }
      .article-cta a { min-height: 43px; padding: 0 18px; display: inline-flex; align-items: center; background: var(--gold); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: 0.45px; text-transform: uppercase; }
      .blog-post-aside { position: sticky; top: 30px; }
      .blog-post-aside-card { padding: 31px 29px; border-top: 3px solid var(--gold); background: var(--navy); color: var(--white); }
      .blog-post-aside-card h2 { margin: 17px 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.15; }
      .blog-post-aside-card p { margin: 0 0 23px; color: rgba(255, 255, 255, 0.55); font-size: 10px; line-height: 1.75; }
      .blog-post-aside-card .btn { width: 100%; justify-content: space-between; }
      .blog-post-aside-card > a { margin-top: 20px; display: block; color: var(--white); font-family: var(--serif); font-size: 20px; }
      .blog-post-disclaimer { margin: 18px 4px 0; color: #7c898e; font-size: 9px; line-height: 1.7; }
      .blog-post-empty { min-height: 72vh; padding: 210px 0 100px; display: grid; align-items: center; background: var(--navy); color: var(--white); text-align: center; }
      .blog-post-empty h1 { margin: 20px auto 14px; font-family: var(--serif); font-size: clamp(42px, 6vw, 68px); font-weight: 500; }
      .blog-post-empty p { margin: 0 auto 28px; color: rgba(255, 255, 255, 0.58); font-size: 12px; }

      .footer { padding: 72px 0 25px; background: #06131c; color: var(--white); }
      .footer-main { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr 1.1fr; gap: 46px; }
      .footer .logo { margin-bottom: 20px; }
      .footer-brand > p { max-width: 260px; color: rgba(255, 255, 255, 0.46); font-size: 10px; line-height: 1.8; }
      .footer h3 { margin: 5px 0 18px; color: var(--gold-light); font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; }
      .footer-col { display: flex; flex-direction: column; align-items: flex-start; }
      .footer-col a, .footer-col p { margin: 0; color: rgba(255, 255, 255, 0.53); font-size: 10px; line-height: 2.05; }
      .footer-col a:hover { color: var(--white); }
      .footer-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
      .footer-contact strong { display: block; font-family: var(--serif); color: var(--white); font-size: 21px; font-weight: 500; }
      .footer-bottom { margin-top: 55px; padding-top: 21px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.3); font-size: 8px; }

      .modal-backdrop {
        position: fixed;
        inset: 0;
        z-index: 100;
        padding: 20px;
        display: grid;
        place-items: center;
        background: rgba(2, 11, 17, 0.84);
        backdrop-filter: blur(8px);
      }
      .modal-backdrop[hidden], .calc-screen[hidden], .calc-success[hidden], .advisor-panel[hidden] { display: none !important; }
      .calculator-modal { width: min(720px, 100%); max-height: calc(100vh - 40px); overflow: auto; position: relative; background: var(--white); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36); }
      .modal-head { padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
      .modal-head strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
      .modal-close { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: var(--soft); cursor: pointer; }
      .modal-progress { height: 3px; background: #e8ecec; }
      .modal-progress span { width: 20%; height: 100%; display: block; background: var(--gold); transition: width 0.25s ease; }
      .calc-screen { min-height: 470px; padding: 46px; }
      .calc-step-label { color: #97691d; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
      .calc-screen h2 { margin: 14px 0 10px; font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -1.3px; }
      .calc-screen > p { margin: 0 0 28px; color: var(--muted); font-size: 11px; line-height: 1.6; }
      .calc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
      .calc-option { min-height: 94px; padding: 16px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); background: var(--white); font-size: 11px; font-weight: 800; text-align: left; cursor: pointer; }
      .calc-option span { color: #95691e; }
      .calc-option:hover, .calc-option.selected { border-color: var(--gold); background: #fcf8ef; }
      .calc-nav { margin-top: 29px; display: flex; justify-content: space-between; gap: 12px; }
      .calc-form { display: grid; gap: 14px; }
      .calc-form label { display: grid; gap: 7px; color: #34474f; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; }
      .calc-form input, .calc-form select {
        height: 51px;
        width: 100%;
        border: 1px solid #d7dddf;
        border-radius: 0;
        padding: 0 14px;
        background: var(--white);
        outline: none;
        color: var(--text);
      }
      .calc-form input:focus, .calc-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 154, 67, 0.13); }
      .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .consent { display: flex !important; grid-template-columns: none !important; flex-direction: row; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-size: 9px !important; font-weight: 500 !important; line-height: 1.55; text-transform: none !important; letter-spacing: 0 !important; }
      .consent input { width: 16px; height: 16px; flex: 0 0 auto; }
      .calc-success { min-height: 520px; padding: 50px; text-align: center; place-items: center; align-content: center; }
      .calc-success-icon { width: 74px; height: 74px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; background: #e9f5ef; color: var(--success); }
      .calc-success h2 { margin: 24px 0 10px; font-family: var(--serif); font-size: 40px; font-weight: 500; }
      .calc-success p { max-width: 430px; margin: 0 auto 26px; color: var(--muted); font-size: 12px; line-height: 1.7; }

      .advisor { position: fixed; right: 22px; bottom: 22px; z-index: 70; }
      .advisor-trigger { min-height: 54px; padding: 0 18px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255, 255, 255, 0.13); background: var(--navy); color: var(--white); box-shadow: 0 14px 36px rgba(5, 21, 31, 0.25); cursor: pointer; }
      .advisor-trigger > span:first-child { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); }
      .advisor-trigger div { display: grid; text-align: left; }
      .advisor-trigger strong { font-size: 10px; }
      .advisor-trigger small { margin-top: 2px; color: rgba(255, 255, 255, 0.46); font-size: 8px; }
      .advisor-panel { width: min(370px, calc(100vw - 28px)); position: absolute; right: 0; bottom: 66px; background: var(--white); box-shadow: 0 28px 70px rgba(5, 21, 31, 0.26); border: 1px solid var(--line); }
      .advisor-head { padding: 20px; display: flex; align-items: center; justify-content: space-between; background: var(--navy); color: var(--white); }
      .advisor-head div { display: grid; }
      .advisor-head strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }
      .advisor-head small { margin-top: 3px; color: var(--gold-light); font-size: 8px; }
      .advisor-close { border: 0; background: transparent; color: rgba(255, 255, 255, 0.65); cursor: pointer; }
      .advisor-body { min-height: 230px; max-height: 360px; overflow: auto; padding: 20px; background: #f5f7f7; }
      .message { max-width: 86%; margin-bottom: 10px; padding: 12px 14px; background: var(--white); color: #405159; font-size: 10px; line-height: 1.6; box-shadow: 0 4px 14px rgba(8, 25, 35, 0.05); }
      .message.user { margin-left: auto; background: #efe1c3; color: #493616; }
      .message.error { border-left: 2px solid #b94d4d; color: #7d3030; }
      .message.typing { min-width: 54px; display: flex; align-items: center; gap: 4px; }
      .message.typing span { width: 5px; height: 5px; border-radius: 50%; background: #7a898f; animation: advisorTyping 1.1s infinite ease-in-out; }
      .message.typing span:nth-child(2) { animation-delay: 0.14s; }
      .message.typing span:nth-child(3) { animation-delay: 0.28s; }
      @keyframes advisorTyping { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
      .quick-questions { padding: 0 20px 15px; display: flex; gap: 7px; flex-wrap: wrap; background: #f5f7f7; }
      .quick-question { padding: 7px 9px; border: 1px solid #d7dddf; background: var(--white); color: var(--muted); font-size: 8px; cursor: pointer; }
      .advisor-form { padding: 13px; display: flex; gap: 8px; border-top: 1px solid var(--line); }
      .advisor-form input { min-width: 0; flex: 1; border: 1px solid var(--line); padding: 0 11px; font-size: 10px; outline: none; }
      .advisor-form button { width: 42px; height: 42px; border: 0; display: grid; place-items: center; background: var(--gold); color: var(--navy); cursor: pointer; }
      .advisor-form input:disabled, .advisor-form button:disabled, .quick-question:disabled { opacity: 0.55; cursor: wait; }

      @media (max-width: 1120px) {
        .nav-wrap { gap: 15px; }
        .nav-trigger, .nav-direct { padding: 0 8px; font-size: 10px; }
        .header-phone { display: none; }
        .partner-list { grid-template-columns: repeat(5, 1fr); row-gap: 13px; }
        .process-wrap { gap: 55px; }
        .footer-main { grid-template-columns: 1.4fr repeat(3, 1fr); }
        .footer-main .footer-col:last-child { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 30px; }
        .footer-main .footer-col:last-child h3 { grid-column: 1 / -1; }
        .blog-post-hero-grid { gap: 48px; }
        .blog-post-layout { gap: 44px; }
      }

      @media (max-width: 900px) {
        .container { width: min(720px, calc(100% - 32px)); }
        .topbar { display: none; }
        .site-header { top: 0; }
        .nav-wrap { height: 70px; }
        .nav-actions .btn, .header-phone { display: none; }
        .menu-btn { display: grid; margin-left: auto; }
        .nav-links {
          height: auto;
          max-height: calc(100vh - 84px);
          overflow: auto;
          position: absolute;
          left: 16px;
          right: 16px;
          top: 70px;
          padding: 12px 18px 20px;
          display: none;
          align-items: stretch;
          flex-direction: column;
          background: #0a1f2b;
          border: 1px solid rgba(255, 255, 255, 0.11);
          box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
        }
        .nav-links.open { display: flex; }
        .nav-item { display: block; }
        .nav-trigger, .nav-direct { width: 100%; height: 48px; padding: 0; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 12px; }
        .dropdown, .dropdown.narrow {
          width: 100%;
          position: static;
          padding: 0 0 10px 12px;
          display: none;
          grid-template-columns: repeat(2, 1fr);
          border-top: 0;
          background: transparent;
          color: rgba(255, 255, 255, 0.7);
          box-shadow: none;
          opacity: 1;
          visibility: visible;
          transform: none;
        }
        .nav-item.mobile-open .dropdown { display: grid; }
        .dropdown a { border-color: rgba(255, 255, 255, 0.07); font-size: 9px; }
        .hero, .hero-inner { min-height: 780px; }
        .hero-inner { align-items: flex-end; padding-bottom: 75px; }
        .hero-copy { width: 100%; max-width: 650px; }
        .hero-media img { object-position: 68% center; }
        .hero-media::after { background: linear-gradient(90deg, rgba(3, 15, 24, 0.97), rgba(3, 15, 24, 0.5)), linear-gradient(0deg, rgba(3, 15, 24, 0.85), transparent 62%); }
        .hero-stat { display: none; }
        .partners-inner { padding: 25px 0; flex-direction: column; align-items: stretch; gap: 22px; }
        .partners-copy { flex: auto; padding-right: 0; border-right: 0; text-align: center; }
        .trust-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
        .driver-ecosystem { grid-template-columns: 1fr; gap: 25px; }
        .process-wrap, .reviews-shell, .faq-wrap { grid-template-columns: 1fr; gap: 45px; }
        .process-copy .section-title { max-width: 680px; }
        .faq-sticky { position: static; }
        .calculator-showcase { background: var(--cream); }
        .calculator-grid { width: 100%; grid-template-columns: 1fr; gap: 0; }
        .calculator-copy { padding: 75px max(24px, calc((100vw - 720px) / 2)); }
        .conversation-demo { padding: 65px max(24px, calc((100vw - 720px) / 2)); background: #e8ecec; }
        .articles { gap: 14px; }
        .closing-inner { align-items: flex-start; flex-direction: column; }
        .closing-actions { width: 100%; max-width: 400px; flex: auto; }
        .product-page-hero { min-height: 720px; padding: 150px 0 80px; }
        .product-hero-grid, .product-overview-grid, .product-check-grid { grid-template-columns: 1fr; gap: 50px; }
        .product-hero-summary { max-width: 620px; }
        .product-overview-copy { position: static; }
        .product-process-head { align-items: flex-start; flex-direction: column; }
        .product-related-grid { grid-template-columns: repeat(2, 1fr); }
        .blog-post-hero { padding: 125px 0 70px; }
        .blog-post-hero-grid, .blog-post-layout { grid-template-columns: 1fr; }
        .blog-post-cover { height: 390px; }
        .blog-post-layout { max-width: 760px; }
        .blog-post-aside { position: static; }
      }

      @media (max-width: 640px) {
        .container { width: calc(100% - 24px); }
        .section { padding: 78px 0; }
        .section-title { font-size: 38px; letter-spacing: -1.4px; }
        .logo strong { font-size: 21px; }
        .logo small { display: none; }
        .hero, .hero-inner { min-height: 740px; }
        .hero-inner { padding-top: 105px; padding-bottom: 50px; }
        .hero h1 { font-size: 48px; letter-spacing: -2px; }
        .hero-lead { font-size: 13px; }
        .hero-cta { align-items: stretch; }
        .hero-cta .btn { width: 100%; }
        .hero-note { flex-direction: column; align-items: flex-start; gap: 8px; }
        .partner-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .trust-grid, .products-grid, .articles, .review-placeholder { grid-template-columns: 1fr; }
        .trust-card { min-height: 205px; }
        .product-card { min-height: 290px; }
        .driver-ecosystem { padding: 30px 24px; }
        .step { grid-template-columns: 42px 1fr; }
        .step > svg { display: none; }
        .conversation-demo { padding: 45px 12px; }
        .conversation-card { padding: 28px 20px; }
        .answer-grid, .calc-options { grid-template-columns: 1fr; }
        .answer { min-height: 70px; }
        .faq-list summary { font-size: 17px; }
        .closing-cta { padding: 62px 0; }
        .closing-copy h2 { font-size: 43px; }
        .product-page-hero { min-height: 700px; padding: 125px 0 60px; }
        .product-page-hero h1 { font-size: 46px; letter-spacing: -2px; }
        .product-breadcrumb { margin-bottom: 28px; }
        .product-page-actions { align-items: stretch; flex-direction: column; }
        .product-page-actions .btn { width: 100%; }
        .product-coverage-grid, .product-related-grid { grid-template-columns: 1fr; }
        .product-coverage-card { min-height: 195px; }
        .product-process-grid { grid-template-columns: 1fr; }
        .product-process-step, .product-process-step + .product-process-step { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
        .product-process-step h3 { margin-top: 35px; }
        .product-related-head { align-items: flex-start; flex-direction: column; }
        .blog-post-hero { padding: 108px 0 54px; }
        .blog-post-heading h1 { font-size: 44px; letter-spacing: -1.8px; }
        .blog-post-cover { height: 270px; }
        .blog-post-section { padding: 52px 0 78px; }
        .blog-post-content { padding: 34px 23px; font-size: 12px; }
        .blog-post-content > p:first-child { font-size: 18px; }
        .blog-post-content h2 { margin-top: 39px; font-size: 29px; }
        .blog-post-content h3 { font-size: 21px; }
        .article-cta { margin: 42px 0 0; padding: 28px 24px; }
        .blog-post-meta { gap: 10px 15px; }
        .blog-post-meta span + span { padding-left: 15px; }
        .footer-main { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; }
        .footer-brand { grid-column: 1 / -1; }
        .footer-main .footer-col:last-child { grid-column: 1 / -1; display: flex; }
        .footer-bottom { flex-direction: column; }
        .calc-screen { min-height: 450px; padding: 30px 20px; }
        .calc-screen h2 { font-size: 31px; }
        .form-row { grid-template-columns: 1fr; }
        .advisor { right: 12px; bottom: 12px; }
        .advisor-trigger { width: 54px; padding: 0; justify-content: center; }
        .advisor-trigger div { display: none; }
      }
