/* GENERATED — do not edit by hand. Regenerate from the source CSS.
   Scoped copy of global-foundation.css + header.css, for /sell-car only.

   /sell-car is a Tailwind app. Loading the site's global stylesheet over it
   let bare-element rules style the APP's own markup: `footer {}` painted the
   flow's little trust strip into a giant empty green band, and the
   * / html / body resets collapsed the desktop column. Every selector below
   is prefixed with #site-chrome, so the real header/footer keep their exact
   styling and nothing reaches the funnel. :root variables stay global
   deliberately — the app's own CSS reads the brand tokens. */

:root {
    --bg-dark: #FFFFFF;
    --bg-card: #F9FAFB;
    --neon-lime: #00A94F;
    --neon-lime-hover: #008f43;
    --neon-lime-text: #00793A;   
    --blurple: #5D5FEF;
    --text-white: #111827;   
    
    --on-green: #FFFFFF;
    --text-gray: #4B5563;
    --glass-border: rgba(0, 0, 0, 0.1);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Hind', sans-serif;
}
#site-chrome a { text-decoration: none; color: inherit; transition: 0.3s; }
#site-chrome ul { list-style: none; }
#site-chrome h3 { font-weight: bold; }
#site-chrome img { max-width: 100%; display: block; }
#site-chrome .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#site-chrome .btn-primary {
    background-color: var(--neon-lime);
    color: var(--on-green);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-block;
    font-family: var(--font-head) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
#site-chrome .btn-primary:hover {
    background-color: var(--neon-lime-hover);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
    color: var(--on-green);
}
#site-chrome .btn-outline {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-white);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-head) !important;
    cursor: pointer;
}
#site-chrome .btn-outline:hover { border-color: var(--neon-lime); color: var(--neon-lime-text); }
#site-chrome .btn-cta {
    width: 100%;
    background: var(--neon-lime);
    color: var(--on-green);
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-head) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#site-chrome .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 169, 79, 0.4);
    background: var(--neon-lime-hover);
    color: var(--on-green);
}
#site-chrome .btn-cta svg { transition: transform 0.3s ease; }
#site-chrome .btn-cta:hover svg { transform: translateX(4px); }
#site-chrome .btn-cta svg path { stroke: white !important; stroke-width: 2; fill: none; }
#site-chrome .btn-black {
    background: black;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-head) !important;
    cursor: pointer;
    transition: 0.3s;
}
#site-chrome .btn-black:hover { background: #333; }
#site-chrome .text-gradient {
    background: linear-gradient(90deg, var(--neon-lime), var(--blurple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#site-chrome .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media(max-width: 768px)  {
#site-chrome .section-padding { padding-top: 40px; padding-bottom: 40px; }
}
#site-chrome .section-header { margin-bottom: 40px; }
#site-chrome .section-header h2 { font-family: var(--font-head) !important; font-size: 48px; font-weight: 700; margin-bottom: 10px; }
#site-chrome .section-header p { color: var(--text-gray); }
@media(max-width: 768px)  {
#site-chrome .section-header h2 { font-size: 34px; }
}
#site-chrome .faq-section { max-width: 800px; margin: 0 auto; }
#site-chrome details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
#site-chrome summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-head) !important;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#site-chrome summary::-webkit-details-marker { display: none; }
#site-chrome summary::after { content: '+'; font-size: 24px; color: var(--neon-lime-text); }
#site-chrome details[open] summary::after { content: '-'; }
#site-chrome .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
    font-size: 14.4px;
    line-height: 1.7;
    overflow: hidden;
}
#site-chrome details[open] .faq-content { grid-template-rows: 1fr; }
#site-chrome .faq-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 20px;
    padding-bottom: 0px;
    opacity: 0;
    transform: translateY(-10px);
    transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, transform 0.4s ease;
}
#site-chrome details[open] .faq-inner { padding-bottom: 20px; opacity: 1; transform: translateY(0); }
#site-chrome .faq-category-title {
    font-family: var(--font-head) !important;
    font-size: 20px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--neon-lime-text);
}
#site-chrome .faq-section.faq-2col .faq-category-title:first-child, #site-chrome .faq-section.faq-2col > .faq-category-title:first-of-type { margin-top: 0; }
#site-chrome .faq-jumpnav {
    max-width: 1140px;
    margin: 0 auto 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
#site-chrome .faq-jumpnav a {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-white);
    transition: 0.2s;
}
#site-chrome .faq-jumpnav a:hover { border-color: var(--neon-lime); color: var(--neon-lime-text); }
@media(min-width: 900px)  {
#site-chrome .faq-section.faq-2col {
        column-count: 2;
        column-gap: 28px;
        max-width: 1140px;
    }
#site-chrome .faq-section.faq-2col .faq-category-title { break-after: avoid; break-inside: avoid; }
#site-chrome .faq-section.faq-2col details { break-inside: avoid; }
}
#site-chrome footer {
    background: var(--neon-lime);
    color: var(--on-green);
    margin-top: 60px;
    padding: 80px 0 30px 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
#site-chrome .footer-cta { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 50px; margin-bottom: 50px; text-align: left; }
#site-chrome .footer-cta h2 { font-family: var(--font-head) !important; font-size: 48px; font-weight: 800; margin-bottom: 30px; line-height: 1; }
#site-chrome .footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
#site-chrome .footer-col h3 { font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 14.4px; }
#site-chrome .footer-col ul li { margin-bottom: 10px; }
#site-chrome .footer-col ul li a { font-weight: 500; }
#site-chrome .footer-col ul li a:hover { text-decoration: underline; }
#site-chrome .sub-footer { display: flex; flex-direction: column; gap: 20px; font-size: 14.4px; }
#site-chrome .social-bar { display: flex; justify-content: center; gap: 14px; padding: 40px 0; }
#site-chrome .social-bar a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.3s;
}
#site-chrome .social-bar a:hover { background: var(--neon-lime); border-color: var(--neon-lime); color: var(--on-green); transform: translateY(-2px); }
#site-chrome .social-bar svg { width: 19px; height: 19px; fill: currentColor; }
@media(min-width: 768px)  {
#site-chrome .footer-links-grid { grid-template-columns: repeat(4, 1fr); }
#site-chrome .sub-footer { flex-direction: row; justify-content: space-between; }
#site-chrome .footer-cta { display: flex; justify-content: space-between; align-items: center; }
#site-chrome .footer-cta h2 { margin-bottom: 0; font-size: 64px; }
}
#site-chrome #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: auto;
    align-content: flex-start;
}
#site-chrome .nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
#site-chrome .nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    z-index: 1002;
    background: inherit;
}
#site-chrome .logo {
    z-index: 1002;
    
    height: 100px;
    display: flex;
    align-items: center;
    font-family: var(--font-head) !important;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-white);
}
#site-chrome .logo img { height: 100%; width: auto; }
@media(max-width: 768px)  {
#site-chrome .logo { height: 56px; }
}
#site-chrome .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
#site-chrome .nav-links a, #site-chrome .dropdown-trigger {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
}
#site-chrome .nav-links a:hover, #site-chrome .dropdown-trigger:hover { color: var(--text-white); text-decoration: none; }
#site-chrome .dropdown { position: relative; }
#site-chrome .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 0;
}
#site-chrome .nav-links > .dropdown:nth-last-child(-n+3) .dropdown-menu {
    left: auto;
    right: 0;
}
@media(min-width: 769px)  {
#site-chrome .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
#site-chrome .dropdown-menu {
        display: block;
        pointer-events: none;
    }
}
#site-chrome .dropdown-menu a {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    white-space: nowrap;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#site-chrome .dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: rgba(0, 169, 79, 0.15);
    z-index: -1;
    transition: width 0.3s ease;
}
#site-chrome .dropdown-menu a:hover {
    color: var(--neon-lime-text);
    transform: translateX(4px);
}
#site-chrome .dropdown-menu a:hover::before { width: 100%; }
#site-chrome .dropdown-menu.scrollable {
    max-height: 410px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
#site-chrome .dropdown-menu.scrollable::-webkit-scrollbar { width: 4px; }
#site-chrome .dropdown-menu.scrollable::-webkit-scrollbar-track { background: transparent; }
#site-chrome .dropdown-menu.scrollable::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 4px; }
#site-chrome .dropdown-menu.scrollable::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.25); }
#site-chrome .lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17.6px;
}
#site-chrome .lang-btn:hover { background: rgba(0,0,0,0.05); border-color: var(--neon-lime); color: var(--neon-lime-text); }
#site-chrome .lang-popup {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
#site-chrome .lang-wrapper:hover .lang-popup { opacity: 1; visibility: visible; transform: translateY(0); }
#site-chrome .lang-popup a { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px; color: var(--text-gray); font-size: 14.4px; }
#site-chrome .lang-popup a:hover { background: rgba(0,0,0,0.05); color: var(--text-white); text-decoration: none; }
#site-chrome .lang-popup a.active { color: var(--neon-lime-text); font-weight: 700; }
#site-chrome .chat-btn-desktop {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17.6px;
    text-decoration: none;
}
#site-chrome .chat-btn-desktop:hover { background: rgba(0,0,0,0.05); border-color: var(--neon-lime); color: var(--neon-lime-text); }
#site-chrome .nav-cta { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1002; }
#site-chrome .phone-number {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    height: 40px;
    box-sizing: border-box;
}
#site-chrome .phone-number:hover { background: rgba(0,0,0,0.05); border-color: var(--neon-lime); color: var(--neon-lime-text); text-decoration: none; }
#site-chrome #nav-icon {
    display: none;
    width: 25px;
    height: 20px;
    position: relative;
    
    z-index: 1003;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
#site-chrome #nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-white);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#site-chrome #nav-icon span:nth-child(1) { top: 0px; transform-origin: left center; }
#site-chrome #nav-icon span:nth-child(2) { top: 8px; transform-origin: left center; }
#site-chrome #nav-icon span:nth-child(3) { top: 16px; transform-origin: left center; }
#site-chrome #nav-icon.open span:nth-child(1) { transform: rotate(45deg); top: 0px; left: 4px; }
#site-chrome #nav-icon.open span:nth-child(2) { width: 0%; opacity: 0; }
#site-chrome #nav-icon.open span:nth-child(3) { transform: rotate(-45deg); top: 17px; left: 4px; }
#site-chrome .nav-cta .btn-primary, #site-chrome .mobile-menu-ctas .btn-primary {
    padding: 0 24px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s, box-shadow 0.2s;
    max-width: 300px;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
}
#site-chrome .mobile-menu-ctas .btn-primary { height: auto; padding: 12px 24px; }
#site-chrome .mobile-menu-ctas .btn-outline {
    padding: 12px 24px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}
#site-chrome .mobile-action-bar {
    display: none;
    gap: 8px;
    padding: 8px 16px 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#site-chrome .btn-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-head) !important;
    font-size: 13.5px;
    text-transform: uppercase;
    flex: 1;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#site-chrome .btn-mobile-action.call { background: rgba(0,0,0,0.05); color: var(--text-white); border: 1px solid rgba(0,0,0,0.1); }
#site-chrome .btn-mobile-action.offer { background: var(--neon-lime); color: var(--on-green); border: none; }
#site-chrome .btn-mobile-action.chat { background: #fff; color: var(--neon-lime-text); border: 1px solid var(--glass-border); flex: 0 0 50px; padding: 0; font-size: 18px; }
#site-chrome .mobile-menu-ctas { display: none; }
#site-chrome .mobile-submenu-header { display: none; }
#site-chrome .content-area { margin-top: 158px; }
@media(min-width: 769px)  {
#site-chrome .nav-pill {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "logo cta" "links links";
        row-gap: 0;
        padding: 0;
    }
#site-chrome .logo { grid-area: logo; align-self: center; padding: 6px 20px; }
#site-chrome .nav-cta { grid-area: cta; justify-self: end; align-self: center; width: 100%; justify-content: flex-end; padding: 6px 20px; }
#site-chrome .nav-links {
        grid-area: links;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 4px 15px rgba(0, 0, 0, 0.03);
        padding: 4px 20px;
        position: relative;
        z-index: 1;
    }
#site-chrome .nav-links::before {
        content: "";
        position: absolute;
        top: -1px; bottom: 0; left: -100vw; right: -100vw;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
        z-index: -1;
    }
#site-chrome .nav-links > a, #site-chrome .nav-links > .dropdown > .dropdown-trigger {
        display: flex;
        align-items: center;
        padding: 10px 18px;
        color: #333333 !important;
        border-radius: 8px;
        margin: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        border: 1px solid transparent;
    }
#site-chrome .nav-links > .dropdown > .dropdown-trigger svg { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
#site-chrome .nav-links > a:hover, #site-chrome .nav-links > .dropdown:hover > .dropdown-trigger, #site-chrome .nav-links > .dropdown.active > .dropdown-trigger {
        background: rgba(0,0,0,0.04);
        border-color: rgba(0,0,0,0.05);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
        color: var(--neon-lime) !important;
        transform: translateY(-1px);
    }
#site-chrome .nav-links > .dropdown:hover > .dropdown-trigger svg, #site-chrome .nav-links > .dropdown.active > .dropdown-trigger svg {
        transform: rotate(180deg);
        fill: var(--neon-lime);
    }
#site-chrome .dropdown-menu {
        left: 0; right: auto; transform: translateY(15px);
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 12px;
    }
#site-chrome .nav-links > .dropdown:nth-last-child(-n+3) .dropdown-menu { left: auto; right: 0; }
#site-chrome .dropdown-menu a { color: #4b5563; font-weight: 600; }
#site-chrome .dropdown-menu a:hover { background: rgba(0,0,0,0.04); color: #111827; }
#site-chrome .dropdown:hover .dropdown-menu { transform: translateY(0); }
#site-chrome .lang-popup { right: 0; left: auto; }
#site-chrome .content-area { margin-top: 158px; }
}
@media (min-width: 769px) and (max-width: 992px)  {
#site-chrome .content-area { margin-top: 158px; }
#site-chrome .nav-links a, #site-chrome .dropdown-trigger { font-size: 12px; }
#site-chrome .nav-links > a, #site-chrome .nav-links > .dropdown > .dropdown-trigger { padding: 10px 12px; }
}
@media(max-width: 768px)  {
#site-chrome .nav-pill { padding: 8px 16px; }
#site-chrome .lang-btn { width: 36px; height: 36px; font-size: 16px; }
#site-chrome #nav-icon { display: block; }
#site-chrome .nav-cta .btn-primary, #site-chrome .nav-cta .phone-number, #site-chrome .chat-btn-desktop { display: none; }
#site-chrome .mobile-action-bar { display: flex; }
#site-chrome .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 12px;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 20px;
    }
#site-chrome .nav-links.active { transform: translateX(0); }
#site-chrome .nav-links > :first-child { margin-top: auto; }
#site-chrome .nav-links a, #site-chrome .dropdown-trigger { font-size: 18px; width: 100%; text-align: center; display: block; padding: 5px 0; }
#site-chrome .dropdown { width: 100%; }
#site-chrome .dropdown-menu {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-dark);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out, opacity 0.3s, visibility 0.3s;
        z-index: 1005;
        overflow: hidden;
    }
#site-chrome .dropdown.active .dropdown-menu { transform: translateX(0); opacity: 1; visibility: visible; }
#site-chrome .mobile-submenu-header {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.95);
        padding-top: 70px;
        flex-shrink: 0;
    }
#site-chrome .mobile-submenu-header .back-btn {
        background: none; border: none; color: var(--text-gray);
        font-size: 16px; cursor: pointer; display: flex; align-items: center;
        gap: 5px; font-weight: 600;
    }
#site-chrome .mobile-submenu-header .menu-title {
        flex-grow: 1; text-align: center; font-weight: 700;
        font-family: var(--font-head) !important; font-size: 19.2px; margin-right: 30px;
    }
#site-chrome .dropdown-menu a { font-size: 16px; padding: 15px 20px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.05); white-space: normal; line-height: 1.4; }
#site-chrome .submenu-content {
        flex-grow: 1;
        overflow-y: auto;
        padding-bottom: 50px;
        -webkit-overflow-scrolling: touch;
        align-content: start;
        grid-auto-rows: max-content;
    }
#site-chrome .dropdown-menu.scrollable { height: 100vh; height: 100dvh; max-height: none; overflow-y: hidden; }
#site-chrome .dropdown-trigger { display: flex; align-items: center; justify-content: center; gap: 8px; }
#site-chrome .mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; padding: 15px 20px; width: 100%; border-top: 1px solid rgba(0,0,0,0.1); margin-top: auto; }
#site-chrome .mobile-menu-ctas .btn-primary { width: 100%; text-align: center; justify-content: center; display: block; border-radius: 12px; margin: 0; }
#site-chrome .mobile-menu-ctas .btn-outline { width: 100%; text-align: center; justify-content: center; display: block; border-radius: 12px; margin: 0; }
#site-chrome .content-area { margin-top: 136px; }
}

/* Restored from the dropped body/html rules: nav.js toggles .no-scroll on
   <body>/<html> to lock the page behind the open mobile menu. */
body.no-scroll, html.no-scroll { overflow: hidden; }
