﻿:root {
    --bg: #f8fafc;
    --bg-soft: #eef4ff;
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: rgba(255, 255, 255, 0.96);
    --border: rgba(148, 163, 184, 0.20);
    --border-strong: rgba(37, 99, 235, 0.24);
    --text: #0f172a;
    --text-soft: #64748b;
    --text-dim: #94a3b8;
    --primary: #2563eb;
    --primary-2: #06b6d4;
    --green: #10b981;
    --purple: #8b5cf6;
    --amber: #f59e0b;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1200px;
    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --input-border-hover: #94a3b8;
    --input-focus: rgba(16, 185, 129, 0.18);
    --card-bg: rgba(255,255,255,0.88);
    --card-bg-soft: rgba(248,250,252,0.82);
    --success-bg: rgba(16,185,129,.10);
    --success-text: #047857;
    --danger-bg: rgba(254,242,242,.92);
    --danger-border: rgba(239,68,68,.18);
    --danger-text: #b91c1c;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 24%), linear-gradient(180deg, #f8fafc 0%, #eef4ff 58%, #f8fafc 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    max-width: 100%;
    display: block;
}

button, input, textarea, select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.muted {
    color: var(--text-soft);
}

/* =========================================================
   INPUTS
   ========================================================= */
.input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    color: var(--text);
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 16px;
    min-height: 54px;
    padding: 0 16px;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: .25s ease;
}

textarea {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

select {
    padding-right: 44px;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.input::placeholder,
input::placeholder,
textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.input:hover,
input:hover,
textarea:hover,
select:hover {
    border-color: var(--input-border-hover);
}

.input:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--input-focus);
    background: #fff;
}

input:disabled,
textarea:disabled,
select:disabled {
    background: #f8fafc !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed;
    box-shadow: none;
}

input[readonly],
textarea[readonly],
select[readonly] {
    background: #f8fafc !important;
    color: #475569 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #0f172a !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    border: 1.5px solid #cbd5e1 !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(248, 250, 252, 0.82);
    border-bottom: 1px solid rgba(148,163,184,.12);
}

.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand__logo {
    width: 340px;
    height: auto;
    max-width: 100%;
}

.nav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.88);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(15,23,42,.06);
}

    .nav__toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--text);
        display: block;
    }

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav__link {
    color: var(--text-soft);
    padding: 10px 14px;
    border-radius: 12px;
    transition: .2s ease;
    font-weight: 600;
}

    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--text);
        background: rgba(255,255,255,.85);
    }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn,
.hw-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
}

    .btn--primary:hover {
        transform: translateY(-1px);
        filter: brightness(1.02);
    }

.btn--ghost {
    background: rgba(255,255,255,.88);
    color: var(--text);
    border-color: var(--border);
}

    .btn--ghost:hover {
        background: rgba(255,255,255,1);
        border-color: rgba(148,163,184,.28);
    }

.btn--sm {
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 14px;
}

.hw-btn {
    min-height: 54px;
    padding: 0 20px;
    border-radius: 16px;
    border: none;
}

.hw-btn-block {
    width: 100%;
}

.hw-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 22px rgba(16,185,129,.22);
}

    .hw-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(16,185,129,.28);
    }

.hw-btn-outline {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #dbe2ea;
}

    .hw-btn-outline:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    border-top: 1px solid rgba(148,163,184,.12);
    background: rgba(255,255,255,.55);
    margin-top: 32px;
}

.footer {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.footer__brand {
    display: grid;
    gap: 4px;
}

.footer__title {
    letter-spacing: .12em;
}

.footer__text {
    margin: 0;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .footer__links a {
        color: var(--text-soft);
    }

        .footer__links a:hover {
            color: var(--text);
        }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
    padding: 72px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.28));
}

.section-head,
.hiw-head,
.wu-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

h1, h2, h3, h4 {
    letter-spacing: -.02em;
    color: var(--text);
}

.section-head h2,
.section h2,
.panel h2,
.cta h2,
.car-cta h2,
.hiw-final-cta h2,
.wu-final-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.88);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.pill--soft {
    background: rgba(248,250,252,.92);
    color: var(--text-soft);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248,250,252,0.28), rgba(238,244,255,0.82)), radial-gradient(circle at center, rgba(37,99,235,.08), transparent 30%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 96px 0;
}

.hero__title {
    margin: 0;
    font-size: clamp(44px, 9vw, 112px);
    line-height: .95;
    letter-spacing: .03em;
    font-weight: 900;
    color: #0f172a;
    text-shadow: 0 12px 40px rgba(255,255,255,.35);
}

.hero__subtitle {
    margin: 16px auto 0;
    font-size: clamp(18px, 3vw, 26px);
    color: #334155;
    max-width: 720px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* =========================================================
   LAYOUT GRIDS
   ========================================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.split {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 20px;
}

/* =========================================================
   CARDS / PANELS
   ========================================================= */
.card,
.panel,
.car-filter,
.car-panel,
.cta,
.car-cta,
.home-row,
.hiw-preview,
.hiw-timeline__body,
.hiw-table-wrap,
.hiw-final-cta,
.wu-snapshot,
.wu-card,
.wu-feature,
.wu-step,
.wu-final-cta,
.car-rail {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.card,
.panel,
.car-filter,
.car-panel,
.cta,
.car-cta,
.hiw-preview,
.hiw-final-cta,
.wu-snapshot,
.wu-card,
.wu-feature,
.wu-step,
.wu-final-cta {
    padding: 20px;
}

    .card--glow:hover,
    .panel:hover,
    .wu-card:hover,
    .wu-feature:hover,
    .car-rail:hover {
        border-color: var(--border-strong);
    }

.card__top,
.hiw-preview__top,
.car-panel__top,
.wu-snapshot__top,
.hiw-timeline__top,
.wu-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.step,
.car-badge,
.hiw-timeline__n,
.wu-step__n {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    font-weight: 900;
    background: rgba(37, 99, 235, .10);
    border: 1px solid rgba(37, 99, 235, .18);
    color: var(--primary);
}

.card__actions,
.cta__actions,
.car-cta__actions,
.car-panel__cta,
.hiw-preview__cta,
.hiw-inline-actions,
.hiw-final-cta__actions,
.wu-inline-actions,
.wu-final-cta__actions,
.wu-snapshot__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.mini-stats,
.car-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.mini-stat,
.car-kpi,
.wu-metric {
    min-width: 130px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(148,163,184,.14);
    display: grid;
    gap: 4px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.dot--cyan {
    background: var(--primary-2);
}

.dot--green {
    background: var(--green);
}

.dot--purple {
    background: var(--purple);
}

.dot--amber {
    background: var(--amber);
}

.panel__row {
    display: grid;
    grid-template-columns: 14px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(248,250,252,.92);
    border: 1px solid rgba(148,163,184,.14);
}

/* =========================================================
   HOME LIST
   ========================================================= */
.home-list {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.home-row {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 16px;
}

.home-row__left {
    min-width: 0;
}

.home-row__title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

    .home-row__title b {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.home-row__meta {
    margin-top: 6px;
    font-size: 13px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-soft);
}

.dotsep {
    opacity: .7;
}

.home-row__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill-ok {
    background: rgba(16,185,129,.10) !important;
    border-color: rgba(16,185,129,.22) !important;
    color: #047857;
}

/* =========================================================
   CARRIER TOOLBAR
   ========================================================= */
.car-toolbar {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,.14);
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
}

.car-toolbar__grid {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.car-col {
    flex: 0 0 240px;
    min-width: 240px;
}

.car-actions {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.car-toolbar label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
    color: #64748b;
}

.car-toolbar__grid::-webkit-scrollbar {
    height: 6px;
}

.car-toolbar__grid::-webkit-scrollbar-thumb {
    background: rgba(148,163,184,.30);
    border-radius: 999px;
}

/* =========================================================
   HERO VARIANTS
   ========================================================= */
.hiw-hero,
.wu-hero,
.car-hero {
    padding: 72px 0 44px;
}

.hiw-hero__inner,
.wu-hero__inner,
.car-hero__inner {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 20px;
    align-items: stretch;
}

.hiw-hero__title,
.wu-hero__title,
.car-hero__title {
    margin: 14px 0 12px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
}

.hiw-hero__subtitle,
.wu-hero__subtitle,
.car-hero__subtitle {
    max-width: 720px;
    font-size: 17px;
    color: var(--text-soft);
}

.hiw-hero__actions,
.wu-hero__actions,
.car-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hiw-bullets,
.wu-bullets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hiw-bullet,
.wu-bullet {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(148,163,184,.14);
}

.hiw-preview__row,
.car-panel__row {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(248,250,252,.90);
    border: 1px solid rgba(148,163,184,.14);
    margin-top: 12px;
}

.hiw-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.hiw-dot--cyan {
    background: var(--primary-2);
}

.hiw-dot--green {
    background: var(--green);
}

.hiw-dot--purple {
    background: var(--purple);
}

.hiw-time {
    color: var(--text-soft);
    font-size: 13px;
}

.hiw-head__pills,
.wu-head__pills,
.hiw-tabs,
.wu-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hiw-timeline,
.wu-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.hiw-timeline__item,
.wu-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
}

.hiw-timeline__body,
.wu-step__body {
    padding: 18px;
}

.hiw-table-wrap {
    overflow: auto;
    padding: 10px;
}

.hiw-table {
    width: 100%;
    border-collapse: collapse;
}

    .hiw-table th,
    .hiw-table td {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(148,163,184,.14);
        text-align: left;
    }

.hiw-note {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
}

.hiw-note__icon {
    font-size: 22px;
}

.hiw-tab.is-active,
.wu-tab.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border-color: transparent;
}

.hiw-faq,
.wu-panels {
    display: grid;
    gap: 14px;
}

.hiw-panel,
.wu-panel {
    display: none;
}

    .hiw-panel.is-active,
    .wu-panel.is-active {
        display: block;
    }

.hiw-details,
.legal-details {
    border: 1px solid rgba(148,163,184,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    padding: 14px 16px;
}

    .hiw-details + .hiw-details,
    .legal-details + .legal-details {
        margin-top: 10px;
    }

    .hiw-details summary,
    .legal-details summary {
        cursor: pointer;
        font-weight: 800;
    }

    .hiw-details div,
    .legal-details div {
        margin-top: 12px;
    }

/* =========================================================
   WHO USE
   ========================================================= */
.wu-snapshot__grid,
.wu-grid2,
.wu-trust {
    display: grid;
    gap: 14px;
}

.wu-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wu-grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wu-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wu-card__icon,
.car-rail__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: rgba(37, 99, 235, .10);
    border: 1px solid rgba(37, 99, 235, .18);
    margin-bottom: 14px;
    color: var(--primary);
}

/* =========================================================
   CARRIER GRID
   ========================================================= */
.car-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px;
}

.car-filter {
    align-self: start;
    position: sticky;
    top: 100px;
}

.car-filter__box + .car-filter__box {
    margin-top: 14px;
}

.car-filter__box {
    padding: 16px;
    border-radius: 14px;
    background: rgba(248,250,252,.88);
    border: 1px solid rgba(148,163,184,.14);
}

.car-filter__label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.car-filter__fakeInput {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: var(--text-dim);
    border-radius: 12px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(148,163,184,.14);
}

.car-filter__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-filter__actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.car-rails {
    display: grid;
    gap: 14px;
}

.car-rail {
    padding: 18px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
}

.wu-final-cta,
.hiw-final-cta,
.cta,
.car-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.legal-page-wrapper .split {
    align-items: start;
}

/* =========================================================
   LEGAL PAPER
   ========================================================= */
.legal-paper-page {
    --legal-bg: #e9dcc2;
    --legal-bg-2: #dfcfb1;
    --legal-paper: #f8f1e4;
    --legal-paper-2: #f3ead8;
    --legal-border: #b89b67;
    --legal-border-soft: rgba(132, 96, 41, 0.22);
    --legal-ink: #2f2418;
    --legal-ink-soft: #5f503d;
    --legal-gold: #9e7a34;
    --legal-red: #7f1d1d;
    --legal-shadow: 0 18px 40px rgba(74, 52, 24, 0.16);
    --legal-radius: 14px;
    position: relative;
    background: radial-gradient(circle at top left, rgba(158, 122, 52, 0.08), transparent 24%), radial-gradient(circle at top right, rgba(127, 29, 29, 0.05), transparent 18%), linear-gradient(180deg, var(--legal-bg) 0%, var(--legal-bg-2) 100%);
    padding: 24px 0 56px;
}

    .legal-paper-page::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .07;
        background-image: linear-gradient(rgba(90, 66, 30, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(90, 66, 30, 0.08) 1px, transparent 1px);
        background-size: 100% 32px, 32px 100%;
        mix-blend-mode: multiply;
    }

    .legal-paper-page .section {
        padding: 44px 0;
    }

    .legal-paper-page .section--soft {
        background: transparent;
        border: 0;
    }

    .legal-paper-page .split {
        align-items: start;
    }

    .legal-paper-page .panel,
    .legal-paper-page .cta,
    .legal-paper-page .mini-stat,
    .legal-paper-page .legal-details {
        position: relative;
        background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28)), linear-gradient(180deg, var(--legal-paper) 0%, var(--legal-paper-2) 100%);
        color: var(--legal-ink);
        border: 1px solid var(--legal-border-soft);
        border-radius: var(--legal-radius);
        box-shadow: var(--legal-shadow);
    }

    .legal-paper-page .panel,
    .legal-paper-page .cta {
        padding: 24px;
        overflow: hidden;
    }

        .legal-paper-page .panel::before,
        .legal-paper-page .cta::before,
        .legal-paper-page .legal-details::before {
            content: "";
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(184, 155, 103, 0.22);
            border-radius: inherit;
            pointer-events: none;
        }

        .legal-paper-page .panel::after,
        .legal-paper-page .cta::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--legal-red) 0%, var(--legal-gold) 48%, #ead7ab 100%);
        }

    .legal-paper-page h2,
    .legal-paper-page h3,
    .legal-paper-page .legal-title {
        font-family: Georgia, "Times New Roman", serif;
        color: var(--legal-ink);
        letter-spacing: -.015em;
    }

    .legal-paper-page .legal-title {
        margin: 12px 0 0;
        font-size: clamp(30px, 4vw, 42px);
        line-height: 1.12;
    }

    .legal-paper-page .legal-subtitle {
        display: block;
        margin-top: 8px;
        color: var(--legal-ink-soft);
        font-size: 16px;
        font-weight: 700;
    }

    .legal-paper-page .legal-lead {
        margin-top: 12px;
        max-width: 90ch;
    }

    .legal-paper-page .legal-actions,
    .legal-paper-page .legal-pills,
    .legal-paper-page .legal-toc {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .legal-paper-page .legal-actions {
        margin-top: 14px;
    }

    .legal-paper-page .legal-pills {
        margin-top: 16px;
    }

    .legal-paper-page .legal-note-box {
        margin-top: 12px;
        border-top: 1px solid rgba(132,96,41,.18);
        padding-top: 12px;
    }

    .legal-paper-page .legal-note-text {
        font-size: 13px;
    }

        .legal-paper-page .legal-note-text b {
            color: var(--legal-ink);
        }

    .legal-paper-page .legal-block-title {
        margin: 0;
    }

    .legal-paper-page .legal-block-text {
        margin-top: 8px;
    }

    .legal-paper-page .legal-stack {
        margin-top: 12px;
        display: grid;
        gap: 10px;
    }

    .legal-paper-page .legal-mt {
        margin-top: 14px;
    }

    .legal-paper-page .muted {
        color: var(--legal-ink-soft) !important;
    }

    .legal-paper-page .pill {
        background: linear-gradient(180deg, #fbf3de, #efdfbb);
        color: #5d4725;
        border: 1px solid rgba(158, 122, 52, 0.34);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
    }

    .legal-paper-page .pill--soft {
        background: rgba(255,248,232,.85);
        color: var(--legal-ink-soft);
        border-color: rgba(158,122,52,.22);
    }

    .legal-paper-page .btn {
        border-radius: 10px;
    }

    .legal-paper-page .btn--primary {
        background: linear-gradient(180deg, #b58a3d 0%, #8e692d 100%);
        color: #fff9ef;
        border: 1px solid #765620;
        box-shadow: 0 8px 18px rgba(118,86,32,.16);
    }

    .legal-paper-page .btn--ghost {
        background: rgba(255,249,238,.74);
        color: var(--legal-ink);
        border: 1px solid rgba(158,122,52,.32);
    }

        .legal-paper-page .btn--ghost:hover {
            background: rgba(255,248,235,.96);
        }

    .legal-paper-page .panel__row {
        background: rgba(255,250,241,.58);
        border: 1px solid rgba(158,122,52,.18);
        border-radius: 12px;
    }

    .legal-paper-page .dot--cyan {
        background: #8f6a2b;
    }

    .legal-paper-page .dot--green {
        background: #6f7b3b;
    }

    .legal-paper-page .dot--purple {
        background: #72557d;
    }

    .legal-paper-page .dot--amber {
        background: #b7862c;
    }

    .legal-paper-page .mini-stat {
        min-width: 150px;
        padding: 16px;
    }

        .legal-paper-page .mini-stat b {
            font-family: Georgia, "Times New Roman", serif;
            color: var(--legal-ink);
        }

    .legal-paper-page .legal-details {
        padding: 0;
        overflow: hidden;
    }

        .legal-paper-page .legal-details summary {
            list-style: none;
            cursor: pointer;
            padding: 16px 18px;
            font-weight: 800;
            color: var(--legal-ink);
            position: relative;
            border-bottom: 1px solid rgba(158,122,52,.10);
        }

            .legal-paper-page .legal-details summary::-webkit-details-marker {
                display: none;
            }

            .legal-paper-page .legal-details summary::after {
                content: "§";
                position: absolute;
                right: 18px;
                top: 50%;
                transform: translateY(-50%);
                color: var(--legal-gold);
                font-weight: 900;
            }

        .legal-paper-page .legal-details[open] summary::after {
            content: "—";
        }

        .legal-paper-page .legal-details > div {
            padding: 16px 18px 18px;
        }

/* =========================================================
   LOGIN PAGE
   ========================================================= */
.hw-login {
    padding: 72px 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 30%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

    .hw-login .hw-container {
        width: min(100%, 1100px);
        margin: 0 auto;
        padding: 0 16px;
    }

.hw-login__panel {
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(18px, 3.5vw, 24px);
    border-radius: 24px;
    border: 1px solid rgba(148,163,184,.18);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.hw-login__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hw-login__title {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #0f172a;
}

.hw-login__sub {
    margin: 8px 0 0;
    font-size: 15px;
    color: #64748b;
}

.hw-login__alert {
    margin: 14px 0 0;
}

.hw-login__form {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.hw-login__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.hw-login__forgot,
.hw-login__register {
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
}

    .hw-login__forgot:hover,
    .hw-login__register:hover {
        text-decoration: underline;
    }

.hw-login__divider {
    margin: 2px 0 0;
}

.hw-login__submit {
    width: 100%;
    color: #fff;
    font-weight: 900;
}

.hw-login__foot {
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* =========================================================
   ACCOUNT / REGISTER CHOICE
   ========================================================= */
.hw-register-section {
    padding: 72px 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 30%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.hw-register-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.hw-register-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.hw-register-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 14px;
}

.hw-register-header h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    color: #0f172a;
    font-weight: 800;
}

.hw-register-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.hw-register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hw-register-card {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 24px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hw-register-section .hw-register-card {
    padding: 28px;
}

.hw-register-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.hw-register-card--owner::before {
    background: linear-gradient(90deg, #10b981, #14b8a6);
}

.hw-register-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.22);
}

.hw-register-card__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.hw-register-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hw-register-card--owner .hw-register-icon,
.hw-register-page .hw-register-icon {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    box-shadow: inset 0 0 0 1px rgba(5, 150, 105, 0.08);
}

.hw-register-icon i {
    width: 28px;
    height: 28px;
}

.hw-register-page .hw-register-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
}

    .hw-register-page .hw-register-icon i {
        width: 30px;
        height: 30px;
    }

.hw-register-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.hw-register-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

.hw-register-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

    .hw-register-features li {
        position: relative;
        padding-left: 28px;
        color: #334155;
        font-size: 15px;
        line-height: 1.6;
    }

        .hw-register-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: #2563eb;
        }

.hw-register-card--owner .hw-register-features li::before {
    background: #10b981;
}

.hw-register-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

/* =========================================================
   LOAD OWNER / REGISTER FORM PAGE
   ========================================================= */
.hw-register-page {
    padding: 72px 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 30%), linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.hw-register-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.hw-register-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

    .hw-register-hero h1 {
        margin: 0 0 12px;
        font-size: clamp(30px, 4vw, 42px);
        line-height: 1.12;
        font-weight: 800;
        color: #0f172a;
    }

    .hw-register-hero p {
        margin: 0;
        font-size: 16px;
        line-height: 1.75;
        color: #64748b;
    }

.hw-register-page .hw-register-card {
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

    .hw-register-page .hw-register-card::before {
        background: linear-gradient(90deg, #10b981, #14b8a6);
    }

.hw-register-card__inner {
    padding: 34px;
}

.hw-register-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(148,163,184,.16);
}

.hw-register-topbar__left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hw-register-topbar h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
}

.hw-register-topbar p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
    max-width: 620px;
}

.hw-register-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16,185,129,.10);
    color: #047857;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.hw-alert.hw-alert--danger {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--danger-border);
    background: var(--danger-bg);
    color: var(--danger-text);
}

.hw-form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.hw-col-12 {
    grid-column: span 12;
}

.hw-col-6 {
    grid-column: span 6;
}

.hw-col-4 {
    grid-column: span 4;
}

.hw-col-8 {
    grid-column: span 8;
}

.hw-section-box {
    margin-top: 18px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.82);
    border: 1px solid rgba(148,163,184,.15);
}

.hw-section-box__head {
    margin-bottom: 18px;
}

    .hw-section-box__head h3 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 800;
        color: #0f172a;
    }

    .hw-section-box__head p {
        margin: 0;
        font-size: 14px;
        color: #64748b;
        line-height: 1.7;
    }

.hw-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.hw-label {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.hw-input,
select.hw-input,
textarea.hw-input {
    width: 100%;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #0f172a !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
    box-sizing: border-box;
}

.hw-section-box .hw-input,
.hw-section-box select.hw-input,
.hw-section-box textarea.hw-input {
    background: #fff !important;
    border: 1.5px solid #cbd5e1 !important;
}

textarea.hw-input {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

select.hw-input {
    padding-right: 44px;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.hw-input::placeholder,
textarea.hw-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.hw-input:hover,
select.hw-input:hover,
textarea.hw-input:hover {
    border-color: #94a3b8 !important;
    background-color: #ffffff !important;
}

.hw-input:focus,
select.hw-input:focus,
textarea.hw-input:focus {
    border-color: #10b981 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.hw-input:disabled,
select.hw-input:disabled,
textarea.hw-input:disabled {
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed;
    box-shadow: none;
}

.hw-input[readonly],
select.hw-input[readonly],
textarea.hw-input[readonly] {
    background: #f8fafc !important;
    color: #475569 !important;
}

.hw-input:-webkit-autofill,
.hw-input:-webkit-autofill:hover,
.hw-input:-webkit-autofill:focus,
textarea.hw-input:-webkit-autofill,
textarea.hw-input:-webkit-autofill:hover,
textarea.hw-input:-webkit-autofill:focus,
select.hw-input:-webkit-autofill,
select.hw-input:-webkit-autofill:hover,
select.hw-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #0f172a !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    border: 1.5px solid #cbd5e1 !important;
    transition: background-color 9999s ease-in-out 0s;
}

.hw-val {
    min-height: 18px;
    font-size: 13px;
    color: #dc2626;
}

.hw-input-wrap {
    position: relative;
}

    .hw-input-wrap .hw-input {
        padding-right: 52px;
    }

.hw-input-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #64748b;
    transition: background .2s ease, color .2s ease;
}

    .hw-input-toggle:hover {
        background: #f1f5f9;
        color: #0f172a;
    }

.hw-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.hw-check__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hw-check__box {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all .2s ease;
}

.hw-check__text {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}

    .hw-check__text a {
        color: #0f766e;
        font-weight: 700;
        text-decoration: none;
    }

        .hw-check__text a:hover {
            text-decoration: underline;
        }

.hw-check__input:checked + .hw-check__box {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #059669;
}

    .hw-check__input:checked + .hw-check__box::after {
        content: "✓";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 13px;
        font-weight: 800;
    }

.hw-map-shell {
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(148,163,184,.16);
}

#map.hw-map {
    height: 360px !important;
    min-height: 360px !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-top: 0 !important;
}

    #map.hw-map .leaflet-container {
        height: 100% !important;
        width: 100% !important;
    }

    #map.hw-map img,
    #map.hw-map canvas,
    #map.hw-map .leaflet-tile {
        max-width: none !important;
    }

.hw-help {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.hw-passhint {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,.16);
    background: rgba(248,250,252,.9);
}

.hw-passhint__item {
    color: #64748b;
    font-size: 13px;
}

    .hw-passhint__item.is-ok {
        color: #059669;
        font-weight: 600;
    }

.hw-sensitive {
    letter-spacing: .08em;
}

.hw-register-login {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 15px;
}

    .hw-register-login a {
        color: #0f766e;
        font-weight: 700;
        text-decoration: none;
    }

        .hw-register-login a:hover {
            text-decoration: underline;
        }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .grid-3,
    .wu-trust,
    .wu-grid2,
    .wu-snapshot__grid,
    .split,
    .hiw-hero__inner,
    .wu-hero__inner,
    .car-hero__inner,
    .car-grid {
        grid-template-columns: 1fr;
    }

    .car-filter {
        position: static;
    }
}

@media (max-width: 992px) {
    .brand__logo {
        width: 240px;
    }

    .nav {
        flex-wrap: wrap;
        min-height: 78px;
        padding: 12px 0;
    }

    .nav__toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav__menu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 10px;
    }

        .nav__menu.is-open {
            display: flex;
        }

    .nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav__link {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(148,163,184,.10);
        background: rgba(255,255,255,.75);
    }

    .nav__cta {
        width: 100%;
        flex-wrap: wrap;
    }

        .nav__cta .btn {
            flex: 1 1 auto;
        }

    .section {
        padding: 56px 0;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hw-col-6,
    .hw-col-4,
    .hw-col-8 {
        grid-column: span 12;
    }

    .hw-register-card__inner {
        padding: 24px;
    }

    .hw-register-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hw-register-grid {
        grid-template-columns: 1fr;
    }

    .hw-register-section {
        padding: 56px 0;
    }

        .hw-register-section .hw-register-card {
            padding: 24px;
        }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .hero {
        min-height: 66vh;
    }

    .hero__content {
        padding: 72px 0;
    }

    .hero__title {
        font-size: clamp(38px, 13vw, 72px);
    }

    .section-head,
    .hiw-head,
    .wu-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-row__right {
        width: 100%;
        justify-content: flex-start;
    }

    .cta,
    .car-cta,
    .hiw-final-cta,
    .wu-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .card,
    .panel,
    .car-filter,
    .car-panel,
    .cta,
    .car-cta,
    .hiw-preview,
    .wu-snapshot,
    .wu-card,
    .wu-feature,
    .wu-step,
    .hiw-final-cta,
    .wu-final-cta {
        padding: 18px;
    }

    .car-rail {
        grid-template-columns: 48px 1fr;
        padding: 16px;
    }

    .car-rail__icon,
    .wu-card__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .legal-paper-page {
        padding: 12px 0 36px;
    }

        .legal-paper-page .panel,
        .legal-paper-page .cta {
            padding: 18px;
        }

        .legal-paper-page .legal-actions,
        .legal-paper-page .legal-pills,
        .legal-paper-page .legal-toc,
        .legal-paper-page .cta__actions {
            flex-direction: column;
        }

            .legal-paper-page .legal-actions .btn,
            .legal-paper-page .legal-toc .btn,
            .legal-paper-page .cta__actions .btn {
                width: 100%;
            }
}

@media (max-width: 576px) {
    .hw-register-card__top {
        flex-direction: column;
        gap: 14px;
    }

    .hw-register-header {
        margin-bottom: 28px;
    }

        .hw-register-header p {
            font-size: 15px;
        }

    .hw-register-page {
        padding: 56px 0;
    }

    .hw-register-topbar__left {
        flex-direction: column;
    }

    .hw-register-topbar h2 {
        font-size: 24px;
    }

    #map.hw-map {
        height: 300px !important;
        min-height: 300px !important;
    }
}

@media (max-width: 520px) {
    .brand__logo {
        width: 190px;
    }

    .btn {
        width: 100%;
    }

    .hero__actions,
    .card__actions,
    .cta__actions,
    .car-cta__actions,
    .car-panel__cta,
    .hiw-preview__cta,
    .hiw-inline-actions,
    .hiw-final-cta__actions,
    .wu-inline-actions,
    .wu-final-cta__actions,
    .wu-snapshot__cta {
        width: 100%;
    }

        .hero__actions .btn,
        .card__actions .btn,
        .cta__actions .btn,
        .car-cta__actions .btn,
        .car-panel__cta .btn,
        .hiw-preview__cta .btn,
        .hiw-inline-actions .btn,
        .hiw-final-cta__actions .btn,
        .wu-inline-actions .btn,
        .wu-final-cta__actions .btn,
        .wu-snapshot__cta .btn {
            width: 100%;
        }

    .mini-stats,
    .car-kpis {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hw-login {
        padding: 44px 0;
    }

    .hw-login__row {
        flex-direction: column;
        align-items: stretch;
    }

    .hw-login__forgot {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(255,255,255,.72);
        border: 1px solid rgba(148,163,184,.14);
        text-align: center;
    }

    .hw-login__check {
        padding: 10px 12px;
        border-radius: 12px;
        background: rgba(248,250,252,.82);
        border: 1px solid rgba(148,163,184,.12);
    }
}
.load-listing-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.load-listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
}

.load-listing-toolbar__left h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.load-listing-toolbar__left span {
    font-size: 13px;
    color: #6b7280;
}

.load-sort-select {
    min-width: 220px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d7dce5;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    outline: none;
}

.home-list--market {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.market-load-card {
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
    transition: .2s ease;
}

    .market-load-card:hover {
        border-color: #d5dbe5;
        box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
        transform: translateY(-1px);
    }

.market-load-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: center;
}

.market-load-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.market-load-card__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.market-load-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.market-load-card__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.market-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    border: 1px solid transparent;
}

.market-badge--acik {
    background: #ecfdf3;
    color: #067647;
    border-color: #b7ebc6;
}

.market-badge--tasimada {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.market-badge--odemede {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}

.market-badge--tamamlandi {
    background: #f3f4f6;
    color: #374151;
    border-color: #e5e7eb;
}

.market-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #edf1f5;
    border-radius: 14px;
    margin-bottom: 14px;
}

.market-route__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.market-route__label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.market-route__item strong {
    font-size: 15px;
    color: #111827;
    line-height: 1.35;
}

.market-route__arrow {
    color: #9ca3af;
    font-size: 20px;
    font-weight: 700;
}

.market-load-card__meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.market-meta-box {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 12px;
}

    .market-meta-box span {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #6b7280;
    }

    .market-meta-box strong {
        display: block;
        font-size: 15px;
        color: #111827;
        font-weight: 700;
    }

.market-load-card__side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    padding-left: 8px;
}

.market-side-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.market-side-state--ok {
    background: #ecfdf3;
    border-color: #b7ebc6;
    color: #067647;
}

.market-action-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    font-weight: 700;
}

.market-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 10px 4px;
}

.market-pagination__btn,
.market-pagination__dots {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.market-pagination__btn {
    background: #fff;
    color: #374151;
    border: 1px solid #dbe1e8;
    transition: .2s ease;
}

    .market-pagination__btn:hover {
        background: #f8fafc;
        border-color: #cfd6df;
    }

    .market-pagination__btn.is-active {
        background: #f97316;
        border-color: #f97316;
        color: #fff;
    }

    .market-pagination__btn.is-disabled {
        pointer-events: none;
        opacity: .5;
    }

.market-pagination__dots {
    color: #9ca3af;
}

@media (max-width: 991px) {
    .market-load-card__body {
        grid-template-columns: 1fr;
    }

    .market-load-card__side {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .load-listing-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .load-sort-select {
        width: 100%;
        min-width: 0;
    }

    .market-load-card {
        padding: 14px;
    }

    .market-load-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-route {
        grid-template-columns: 1fr;
    }

    .market-route__arrow {
        display: none;
    }

    .market-load-card__meta-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

}
.hw-load-dialog--ops {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 760px;
    width: calc(100% - 32px);
}

    .hw-load-dialog--ops::backdrop {
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(4px);
    }

.hw-load-dialog__inner--ops {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
}

.hw-load-dialog__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

    .hw-load-dialog__head h3 {
        margin: 6px 0 4px;
    }

.hw-load-dialog__close {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

    .hw-load-dialog__close:hover {
        background: #f8fafc;
    }

.hw-live-ops__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hw-live-ops__item {
    padding: 14px 16px;
    border: 1px solid #e9edf3;
    border-radius: 14px;
    background: #f8fafc;
}

    .hw-live-ops__item b {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        color: #6b7280;
    }

    .hw-live-ops__item span {
        display: block;
        color: #111827;
        font-weight: 600;
    }

.hw-live-ops__route {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 600;
}
@media (max-width: 640px) {
    .hw-load-dialog__inner--ops {
        padding: 16px;
        border-radius: 16px;
    }

    .hw-live-ops__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .market-load-card__meta-grid {
        grid-template-columns: 1fr;
    }
}
.market-load-card__meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.market-load-card__meta-grid--singleline .market-meta-box {
    min-width: 0;
}

.market-meta-box {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 12px;
    min-width: 0;
}

    .market-meta-box span {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        color: #6b7280;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .market-meta-box strong {
        display: block;
        font-size: 15px;
        color: #111827;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.hw-load-dialog--ops {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 760px;
    width: calc(100% - 32px);
}

    .hw-load-dialog--ops::backdrop {
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(4px);
    }

.hw-load-dialog__inner--ops {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
}

.hw-load-dialog__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

    .hw-load-dialog__head h3 {
        margin: 6px 0 4px;
    }

.hw-load-dialog__close {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

    .hw-load-dialog__close:hover {
        background: #f8fafc;
    }

.hw-live-ops__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hw-live-ops__item {
    padding: 14px 16px;
    border: 1px solid #e9edf3;
    border-radius: 14px;
    background: #f8fafc;
    min-width: 0;
}

    .hw-live-ops__item b {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        color: #6b7280;
        white-space: nowrap;
    }

    .hw-live-ops__item span {
        display: block;
        color: #111827;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.hw-live-ops__route {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .market-load-card__meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .market-load-card__meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hw-load-dialog__inner--ops {
        padding: 16px;
        border-radius: 16px;
    }

    .hw-live-ops__grid {
        grid-template-columns: 1fr;
    }
}
.map-load-tooltip {
    min-width: 220px;
    font-size: 13px;
    line-height: 1.45;
}

    .map-load-tooltip strong {
        display: inline-block;
        margin-bottom: 4px;
    }
#btnGetLocation.is-active {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
}

    #btnGetLocation.is-active:hover {
        background: #15803d;
        border-color: #15803d;
    }

.hw-location-note {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

    .hw-location-note.is-active {
        background: #ecfdf3;
        color: #15803d;
        border: 1px solid #bbf7d0;
    }

.hw-contact-section {
    padding-top: 36px;
}

.hw-contact-wrap {
    width: 100%;
}

.hw-contact-form-panel,
.hw-contact-form-panel--full {
    width: 100%;
    height: 100%;
}

.hw-contact-form {
    display: grid;
    gap: 22px;
    width: 100%;
}

.hw-contact-form__head h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    color: var(--text);
}

.hw-contact-form__head p {
    margin: 0;
    max-width: 900px;
}

.hw-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.hw-field--full {
    grid-column: 1 / -1;
}

.hw-contact-textarea {
    min-height: 180px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.7;
}

.hw-contact-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 6px;
    border-top: 1px solid rgba(148,163,184,.14);
}

.hw-contact-actions__text {
    flex: 1 1 320px;
    min-width: 0;
}

.hw-contact-help {
    display: block;
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hw-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .hw-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hw-contact-actions .btn {
            width: 100%;
        }
}
 