@font-face {
    font-family: 'Urbanist';
    src: url('/assets/fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist Italic';
    src: url('/assets/fonts/Urbanist-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Americana BT';
    src: url('/assets/fonts/americanabt_bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
}

:root {
    --blue: #5C8CFF;
    --blue-dark: #4378f5;
    --blue-soft: #eaf2ff;
    --ink: #1e2432;
    --muted: #5e6473;
    --line: #d8e4fa;
    --green: #94de72;
    --orange: #ffbd3b;
    --paper: #f4f8ff;
    --section-space: 60px;
    --section-space-mobile: 40px;
}

* {
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Urbanist';
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(1340px, calc(100% - 96px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(216, 228, 250, .65);
    backdrop-filter: blur(14px);
}

.header-mobile-bottom {
    display: none;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    line-height: 1;
}

.brand-shield {
    width: 34px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #d31f2c;
    border: 3px solid #1e2432;
    border-radius: 14px 14px 18px 18px;
    font-size: 22px;
    transform: skew(-7deg);
}

.brand-copy strong {
    display: block;
    color: #d31f2c;
    font-size: 22px;
    letter-spacing: 0;
}

.brand-copy span {
    display: block;
    color: #111827;
    font-size: 8px;
    font-weight: 700;
    margin-top: 4px;
    white-space: nowrap;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    color: #0A0A0A;
    font-size: 13px;
    font-weight: 700;
}

.header-meta .location,
.header-meta .weather {
    visibility: hidden;
}

.header-meta.is-ready .location,
.header-meta.is-ready .weather {
    visibility: visible;
}

.header-meta p {
    margin: 0;
}

.header-meta small {
    display: inline;
    font-size: inherit;
    color: #F8B84C;
    font-weight: 600;
}

.location {
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
}

.location i {
    color: #e2483d;
    font-size: 24px;
}

.location small,
.weather small {
    color: #0A0A0A80;
}

.weather {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: 17px;
    border-left: 1px solid #d8e4fa;
}

.weather i {
    color: #ffd25c;
    font-size: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(91, 140, 255, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--blue-dark);
    box-shadow: 0 16px 28px rgba(91, 140, 255, .3);
}

.btn-outline {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue);
    box-shadow: none;
}

.btn-outline:hover {
    color: #fff;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        url('/assets/img/backgrounds/Rectangle-left.png') left center / auto 100% no-repeat,
        url('/assets/img/backgrounds/Rectangle-right.png') right center / auto 100% no-repeat,
        linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}

.hero-content {
    width: min(920px, 100%);
    padding: 25px 0 25px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    padding: 0 18px;
    border-radius: 999px;
    background: #5C8CFF26;
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
}

.eyebrow img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

h1,
h2 {
    margin: 0;
    font-family: 'Americana BT', 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
    color: #171a24;
}

h1 {
    margin-top: 34px;
    font-size: clamp(58px, 80px, 108px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(42px, 50px, 64px);
    line-height: 1.05;
}

.blue-text {
    color: var(--blue);
}

.hero-subtitle {
    margin: 26px 0 12px;
    color: #343434;
    font-size: 33px;
    font-family: 'Urbanist Italic';;
    font-weight: 400;
}

.hero-copy {
    /* max-width: 760px; */
    margin: 0 auto 34px;
    color: #343434;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-line {
    margin: 0;
    margin-top: 20px;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 500;
}

.ticker {
    background: var(--blue);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    padding: 24px 0;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 26px;
    margin-right: 26px;
}

.ticker-track span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: #fff;
}

.ticker-track span:last-child::after {
    display: none;
}

.ticker-track i {
    font-size: 16px;
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

section {
    margin: 0;
    padding: var(--section-space) 0;
}

.features {
    background: #fff;
}

.section-title.center {
    text-align: center;
    margin-bottom: 44px;
}

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

.feature-card {
    min-height: 226px;
    padding: 34px 32px;
    border-radius: 6px;
    background: var(--blue-soft);
}

.feature-card > img {
    width: 34px;
    height: 34px;
    display: block;
    margin-bottom: 18px;
}

.feature-card h3,
.support-card h3,
.step-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 600;
    color: #1d2433;
}

.round-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
}

.round-icon img {
    width: 16px;
    height: 16px;
    display: block;
    margin: 0;
}

.round-icon.muted {
    background: rgba(255,255,255,.22);
}

.feature-card p,
.support-card p,
.step-card p,
.section-copy,
.compare-row {
    margin: 0;
    color: #343434;
    font-size: 16px;
    line-height: 1.55;
}

.faq-card {
    grid-row: span 2;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--blue);
    color: #fff;
}

.faq-card h3,
.faq-card p,
.faq-card i {
    color: #fff;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px !important;
    color: #fff6a6;
    font-weight: 700;
    line-height: 1;
    font-size: 18px !important;
}

.faq-label img {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0;
}

.faq-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .35);
    padding-top: 22px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 800;
}

.lang-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, .1);
}

.faq-arrows {
    display: flex;
    gap: 8px;
}

.faq-arrows .round-icon {
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.faq-arrows .round-icon i {
    color: var(--blue);
    font-size: 16px;
}

.faq-arrows .round-icon.muted i {
    color: #fff;
}

.faq-arrows .round-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

#faq-content {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.round-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
}

.round-icon.muted {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

.stats {
    background: #eff5ff;
}

.stats-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 46px);
    align-items: start;
    margin-top: 28px;
}

.stat {
    min-width: 0;
}

.stat-number {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 44px;
    font-weight: 700;
}

.stat:nth-child(1) .stat-number {
    color: var(--orange);
}

.stat:nth-child(2) .stat-number,
.stat:nth-child(4) .stat-number {
    color: var(--green);
}

.stat h3 {
    margin: 0 0 12px;
    color: #0A0A0A;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.stat .stat-description {
    margin: 0;
    color: #343434;
    font-size: 18px;
    font-weight: 400;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 56px;
}

.support-card {
    min-height: 150px;
    padding: 26px 30px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
}

.support-card i,
.support-card h3,
.support-card p {
    color: #fff;
}

.support-card i {
    font-size: 28px;
    margin-bottom: 22px;
}

.support-card img {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 22px;
}

.mini-note {
    margin-top: 26px;
    margin-bottom: 0;
    text-align: center;
    color: #343434;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Urbanist Italic';
}

.journey {
    background: #fff;
}

.choice {
    padding-top: 0;
}

.journey-grid,
.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-copy {
    max-width: 540px;
    margin: 28px 0 38px;
}

.pill-list {
    display: grid;
    gap: 13px;
    max-width: 480px;
}

.info-pill {
    min-height: 46px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(91, 140, 255, .15);
    color: #3d4452;
    font-size: 14px;
    font-weight: 700;
}

.info-pill img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.steps {
    display: grid;
    gap: 8px;
}

.step-card {
    position: relative;
    min-height: 96px;
    padding: 18px 70px 18px 30px;
    border-radius: 8px;
    background: var(--blue-soft);
    border-left: 3px solid #ff7468;
}

.step-card:nth-child(even) {
    border-left-color: #7fdb80;
}

.step-card span {
    position: absolute;
    top: 24px;
    right: 22px;
    color: #c4d8ff;
    font-size: 19px;
    font-weight: 900;
}

.seller-photo {
    min-height: 620px;
    border-radius: 14px;
    background-image: url("/assets/img/avatars/owner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.comparison {
    width: 100%;
    margin-top: 46px;
    overflow: hidden;
}

.compare-head,
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.compare-head {
    overflow: hidden;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.compare-head p,
.compare-row p {
    margin: 0;
    padding: 17px 28px;
}

.compare-row {
    border-bottom: 1px solid #d8dce5;
    color: #4b5362;
}

.footer {
    background: var(--blue);
    color: #fff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 12px;
    background: #fff;
    color: #1d2433;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 30px 0 26px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
}

.footer-links a {
    position: relative;
    padding-right: 14px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .9);
}

.footer-links a:last-child {
    padding-right: 0;
}

.footer-links a:last-child::after {
    display: none;
}

.socials {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.powered {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.powered p:last-child {
    flex: 1 1 100%;
    text-align: right;
}

.powered img {
    max-width: 250px;
    padding: 1px 1px;
    border-radius: 10px;
    background: #fff;
}

.powered p {
    margin: 0px;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
}

.copyright {
    margin: 0;
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    text-align: center;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-family: 'Urbanist Italic';
}

.modal-open {
    overflow: hidden;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: start;
    justify-items: center;
    overflow-y: auto;
    padding: 24px;
}

.login-modal.is-open {
    display: grid;
}

.login-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .56);
    backdrop-filter: blur(4px);
}

.login-shell {
    position: relative;
    margin: auto 0;
    width: min(540px, calc(100vw - 28px));
    min-height: 470px;
    padding: 42px 34px 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 100%, transparent 0 42px, rgba(255,255,255,.36) 43px 44px, transparent 45px),
        radial-gradient(circle at 0 100%, transparent 0 86px, rgba(255,255,255,.36) 87px 88px, transparent 89px),
        radial-gradient(circle at 34% 104%, transparent 0 56px, rgba(255,255,255,.36) 57px 58px, transparent 59px),
        radial-gradient(circle at 34% 104%, transparent 0 116px, rgba(255,255,255,.36) 117px 118px, transparent 119px),
        var(--blue);
    box-shadow: 0 28px 80px rgba(17, 24, 39, .28);
}

.login-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
}

.login-card {
    position: relative;
    width: 100%;
    padding: 58px 24px 23px;
    border-radius: 20px;
    background: #fff;
    color: #171717;
}

.login-logo {
    position: absolute;
    top: -24px;
    left: 50%;
    width: 172px;
    height: 52px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    padding: 7px 16px;
    border-radius: 9px;
    background: #EAF2FF;
}

.login-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.login-card h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(20px, 34px, 50px);
    font-family: 'Americana BT';
    font-weight: 400;
}

.login-card h2 span {
    color: var(--blue);
}

.login-intro {
    margin: 10px auto 18px;
    text-align: center;
    color: #343434;
    font-size: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group > label {
    display: block;
    margin: 0 0 6px;
    color: #171717;
    font-size: 12px;
    font-weight: 400;
}

.user-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.user-type-option {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    color: #333;
    cursor: pointer;
    font-size: 13px;
}

.user-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.user-type-option i {
    width: 19px;
    height: 19px;
    display: none;
    place-items: center;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
}

.user-type-option.is-selected {
    border-color: var(--blue);
    color: #111827;
}

.user-type-option.is-selected i {
    display: grid;
}

.form-control {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    outline: 0;
    background: #fff;
    color: #1c1c1c;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(92, 140, 255, .16);
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font-size: 15px;
}

.login-links-row {
    display: flex;
    margin-top: -3px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 400;
}

.login-links-row-right {
    justify-content: flex-end;
}

.login-footer-links a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-links-row a {
    color: var(--blue);
}

.policy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 20px;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.policy-check input {
    appearance: none;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 1px solid var(--blue);
    border-radius: 3px;
    background: #fff;
}

.policy-check input:checked {
    background: var(--blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0L2.22 9.78a.75.75 0 0 1 1.06-1.06L5.5 11.44l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.login-submit {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.login-submit i {
    font-size: 22px;
}

.login-submit:hover {
    transform: translateY(-1px);
    background: var(--blue-dark);
    box-shadow: 0 16px 28px rgba(91, 140, 255, .28);
}

.login-footer-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 400;
}

.login-footer-links p {
    margin: 0;
}

.login-footer-links > a {
    color: #171717;
    white-space: nowrap;
}

.back-link {
    color: var(--blue) !important;
}

.login-powered {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-height: 31px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 25px auto 0;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #171717;
    font-size: 11px;
}

.login-powered img {
    max-width: 88px;
    max-height: 19px;
    object-fit: contain;
}

.login-shell-compact {
    width: min(520px, calc(100vw - 28px));
    min-height: 390px;
}

.auth-card-compact {
    min-height: 245px;
    padding-top: 58px;
}

.auth-card-compact .login-submit {
    margin-top: 6px;
}

.login-footer-links-right {
    justify-content: flex-end;
}

.policy-check a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.otp-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 24px;
}

.otp-input {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 48px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    color: #171717;
    font: inherit;
    font-size: 18px;
    text-align: center;
    outline: 0;
}

.otp-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(92, 140, 255, .16);
}

.login-shell-signup {
    width: min(560px, calc(100vw - 28px));
    padding-top: 46px;
}

.signup-card {
    padding-top: 58px;
}

.signup-card .login-intro {
    margin-bottom: 15px;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.signup-card .form-group {
    margin-bottom: 10px;
}

.signup-card .policy-check {
    margin-top: 3px;
    margin-bottom: 16px;
}

.login-shell-policy {
    width: min(720px, calc(100vw - 28px));
    min-height: 540px;
}

.policy-card {
    height: min(680px, calc(100vh - 130px));
    padding: 58px 28px 24px;
}

.policy-scroll {
    height: 100%;
    overflow-y: auto;
    padding-right: 12px;
}

.policy-scroll h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.04;
}

.policy-scroll h2 span {
    color: var(--blue);
}

.policy-meta {
    margin: 0px 0 5px;
    text-align: center;
    color: #0A0A0A;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.policy-section {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-top: 28px;
    color: #0A0A0A;
}

.policy-section strong {
    font-size: 25px;
    font-weight: 500;
}

.policy-section h3 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 600;
    color: #0A0A0A;
}

.policy-section p {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #343434;
}

.alert {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff1f0;
    color: #bd2d25;
    font-size: 13px;
}

.alert ul {
    margin: 0;
    padding-left: 18px;
}

.success {
    background: #d4edda;
    color: #155724;
}

@media (max-width: 980px) {
    .container {
        width: min(100% - 36px, 720px);
    }

    .header-inner {
        min-height: 64px;
    }

    .header-meta {
        display: none;
    }

    .header-mobile-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 5px 18px;
        border-top: 1px solid rgba(216, 228, 250, 0.65);
        background: rgba(255, 255, 255, 0.98);
        font-size: 11px;
        flex-wrap: wrap;
    }

    .header-mobile-bottom .container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        width: auto;
        padding: 0;
        margin: 0;
    }

    .header-mobile-bottom .location,
    .header-mobile-bottom .weather,
    .header-mobile-bottom .horizontal-divider {
        display: none;
    }

    .header-mobile-bottom.is-ready .location,
    .header-mobile-bottom.is-ready .weather {
        display: flex;
        gap: 5px;
        white-space: nowrap;
    }

    .header-mobile-bottom.is-ready .horizontal-divider {
        display: block;
        height: 10px;
        width: 1px;
        background: #d8e4fa;
    }

    .header-mobile-bottom p {
        margin: 0;
        white-space: nowrap;
    }

    .header-mobile-bottom .weather {
        border-left: none;
        padding-left: 0;
        gap: 5px;
    }

    .header-mobile-bottom .weather i {
        font-size: 16px;
    }

    .header-mobile-bottom .location img {
        width: 12px;
        height: 12px;
    }

    .header-mobile-bottom .location .location-label {
        display: none;
    }

    .header-mobile-bottom .location br {
        display: none;
    }

    .header-mobile-bottom .weather span > br {
        display: none;
    }

    .header-mobile-bottom .location small,
    .header-mobile-bottom .weather small {
        color: #0A0A0A80;
    }

    .header-mobile-bottom p {
        color: #0A0A0A;
    }

    .header-mobile-bottom p small {
        color: #F8B84C;
    }

    .hero {
        min-height: 570px;
        background:
            url('/assets/img/backgrounds/Rectangle-left.png') left center / auto 100% no-repeat,
            url('/assets/img/backgrounds/Rectangle-right.png') right center / auto 100% no-repeat,
            linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
    }

    .hero-content {
        padding: var(--section-space-mobile) 0;
    }

    .stat-number, .stat-description, .stat-head {
        text-align: center;
    }

    h1 {
        font-size: 33px;
        text-align: center;
    }

    h2 {
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    section {
        padding: var(--section-space-mobile) 0;
    }

    .feature-grid,
    .support-grid,
    .stats-grid,
    .journey-grid,
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stats-grid {
        align-items: start;
        gap: 34px;
    }

    .support-grid {
        margin-top: 34px;
    }

    .journey-grid,
    .choice-grid {
        gap: 42px;
    }

    .section-copy {
        max-width: none;
        margin: 28px auto 38px;
        text-align: center;
    }

    .pill-list {
        max-width: none;
        margin: 0 auto;
    }

    .seller-photo {
        width: 100%;
        min-height: 400px;
        background-size: cover;
        background-position: center center;
    }

    .login-modal {
        align-items: start;
        overflow-y: auto;
        padding: 14px;
    }

    .login-shell {
        width: min(540px, calc(100vw - 28px));
        min-height: auto;
        max-height: none;
        overflow: visible;
        padding: 42px 26px 26px;
        border-radius: 22px;
    }

    .login-card {
        padding: 56px 22px 22px;
        border-radius: 18px;
    }

    .login-logo {
        width: 165px;
        height: 50px;
    }

    .login-card h2 {
        font-size: 34px;
    }

    .login-shell-signup,
    .login-shell-policy,
    .login-shell-compact {
        width: min(540px, calc(100vw - 28px));
    }

    .policy-card {
        height: auto;
        max-height: none;
    }

    .policy-scroll {
        max-height: calc(100vh - 155px);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 430px);
    }

    .brand-copy strong {
        font-size: 16px;
    }

    .brand-copy span {
        font-size: 6px;
    }

    .brand-shield {
        width: 28px;
        height: 31px;
        font-size: 17px;
        border-width: 2px;
    }

    .site-header .btn {
        min-height: 34px;
        padding: 0 13px;
        font-size: 11px;
    }

    .hero {
        min-height: 500px;
        background:
            url('/assets/img/backgrounds/Rectangle-left-mobile.png') left center / 200px 100% no-repeat,
            url('/assets/img/backgrounds/Rectangle-right-mobile.png') right center / 200px 100% no-repeat,
            linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
    }

    .hero-copy {
        font-size: 13px;
    }

    h2 {
        font-size: 30px;
    }

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

    .btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }

    .ticker-track {
        gap: 0;
        padding: 18px 0;
    }

    .feature-card,
    .faq-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .faq-card {
        min-height: 360px;
    }

    .stat-number {
        font-size: 31px;
    }

    .seller-photo {
        width: 100%;
        background-size: cover;
        background-position: center center;
    }

    .compare-head p,
    .compare-row p {
        padding: 13px 12px;
        font-size: 11px;
    }


    .brand-lockup img {
        height: 34px !important;
    }

    .login-card h2 {
        font-size: 20px;
    }

    .login-intro {
        font-size: 11px;
    }

    .login-links-row,
    .policy-check {
        font-size: 13px;
    }

    .login-submit {
        font-size: 14px;
    }

    .login-footer-links {
        font-size: 12px;
    }

    .login-powered {
        font-size: 11px;
    }

    .otp-grid {
        gap: 7px;
        margin: 14px 0 18px;
    }

    .otp-input {
        min-height: 38px;
        border-radius: 8px;
        font-size: 15px;
    }

    .auth-card-compact {
        min-height: 220px;
    }

    .signup-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .policy-card {
        padding: 50px 16px 18px;
    }

    .policy-scroll {
        padding-right: 7px;
    }

    .policy-scroll h2 {
        font-size: 25px;
    }

    .policy-section {
        grid-template-columns: 28px 1fr;
        gap: 8px;
        margin-top: 20px;
    }

    .policy-section h3 {
        font-size: 14px;
    }

    .policy-section p,
    .policy-meta {
        font-size: 10px;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-brand img {
        height: 48px !important;
    }

    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px 20px;
        margin: 22px 0 24px;
        text-align: left;
    }

    .footer-links a {
        padding: 0;
        font-size: 16px;
        line-height: 1.45;
    }

    .footer-links a::after {
        display: none;
    }

    .socials {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 22px;
    }

    .socials i {
        font-size: 22px;
    }

    .powered {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 0;
    }

    .powered p {
        margin: 0;
        text-align: center;
        font-size: 17px;
    }

    .powered img {
        max-width: 210px;
        padding: 12px 6px;
    }

    .powered p:last-child {
        text-align: center;
    }

    .copyright {
        margin-top: 36px;
        padding-top: 20px;
        text-align: center;
    }

    .signup-text {
        display: none;
    }
}
