:root {
    --bg: #f8fafd;
    --bg-soft: #eef3fd;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-solid: #ffffff;
    --surface-alt: #f6f9fe;
    --text: #202124;
    --muted: #5f6368;
    --line: #dfe3eb;
    --accent: #202124;
    --accent-soft: #e8f0fe;
    --blue: #1a73e8;
    --blue-soft: #e8f0fe;
    --red: #ea4335;
    --yellow: #fbbc04;
    --green: #34a853;
    --shadow: 0 20px 50px rgba(60, 64, 67, 0.12);
    --shadow-soft: 0 6px 24px rgba(60, 64, 67, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: min(1320px, calc(100% - 48px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(251, 188, 4, 0.08), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f8fafd 52%, #f3f7fc 100%);
    color: var(--text);
}

img {
    display: block;
    width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

textarea {
    resize: vertical;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.container-narrow {
    width: min(1200px, calc(100% - 96px));
}

.container-narrow.container {
    width: min(1200px, calc(100% - 96px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(223, 227, 235, 0.95);
}

.nav-row {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 200px;
    max-width: 100%;
    height: auto;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    font-weight: 700;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--blue);
    background: var(--blue-soft);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
}

.section,
.page-hero,
.hero-section {
    position: relative;
}

.hero-section {
    padding: 64px 0 36px;
}

.page-hero {
    padding: 56px 0 20px;
}

.hero-grid,
.listing-layout,
.detail-layout,
.member-grid,
.two-column-callout,
.registration-page {
    display: grid;
    gap: 28px;
}

.clean-hero-grid,
.google-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.detail-heading h1 {
    font-size: clamp(2.7rem, 7vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 10px 0 18px;
    font-weight: 800;
}

.hero-copy p,
.page-hero p,
.content-card p,
.detail-heading p,
.city-card-copy span,
.card-meta,
.card-body p,
.helper-text,
.log-row span,
.registration-card p,
.empty-card p {
    color: var(--muted);
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.73rem;
    font-weight: 700;
}

.hero-highlight {
    color: var(--blue);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 10px;
    flex-wrap: wrap;
    row-gap: 4px;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb span[aria-hidden="true"] {
    opacity: 0.6;
}

.breadcrumb.is-invert {
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb.is-invert a {
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb.is-invert a:hover {
    color: #fff;
}

.status-banner {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.35;
}

.status-banner strong {
    font-weight: 800;
}

.status-banner-warn {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.26);
    color: rgba(255, 255, 255, 0.9);
}

.listing-top-search {
    margin-top: 22px;
}

.listing-top-search .button {
    min-height: 58px;
}

.search-choice-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.search-choice-card {
    border-radius: 22px;
    border: 1px solid rgba(26, 115, 232, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    padding: 18px;
}

.search-choice-card.is-accent {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.14), rgba(255, 255, 255, 0.92));
    border-color: rgba(26, 115, 232, 0.22);
}

.search-choice-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: var(--text);
}

.search-choice-title i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(26, 115, 232, 0.1);
    color: var(--blue);
}

.search-choice-sub {
    margin: 8px 0 14px;
    color: var(--muted);
    max-width: 48ch;
}

.search-choice-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.search-choice-card .field-hidden {
    display: none;
}

.search-choice-card .button.full {
    width: 100%;
    margin-top: 12px;
}

.search-choice-or {
    align-self: center;
    justify-self: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 115, 232, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.mode-switch {
    margin-top: 18px;
}

.mode-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(26, 115, 232, 0.18);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    max-width: 100%;
}

.mode-tab {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    color: var(--muted);
    background: transparent;
}

.mode-tab.is-active {
    color: var(--blue);
    background: rgba(26, 115, 232, 0.12);
}

.mode-panels {
    margin-top: 12px;
}

.mode-panel {
    display: none;
}

.mode-panel.is-active {
    display: block;
}

@media (max-width: 560px) {
    .mode-tabs {
        display: flex;
        width: 100%;
    }

    .mode-tab {
        flex: 1;
        min-width: 0;
        padding: 10px 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.home-choice-grid {
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .search-choice-grid {
        grid-template-columns: 1fr;
    }

    .search-choice-or {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }

    .search-choice-fields {
        grid-template-columns: 1fr;
    }
}

.search-panel,
.content-card,
.filter-card,
.metric-card,
.member-card,
.empty-card,
.registration-card {
    background: var(--surface);
    border: 1px solid rgba(223, 227, 235, 0.95);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.search-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-xl);
    margin: 28px 0 24px;
}

.clean-panel {
    background: rgba(255, 255, 255, 0.96);
}

.field,
.filter-form label,
.member-form label,
.mapping-form label,
.registration-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.select-with-icon {
    position: relative;
}

.select-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    opacity: 0.9;
    pointer-events: none;
}

.select-with-icon select {
    padding-left: 44px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #aecbfa;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #98a2b3;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 999px;
    padding: 0 18px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button.is-loading {
    opacity: 0.9;
    pointer-events: none;
}

.button.is-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-top-color: rgba(255, 255, 255, 1);
    animation: buttonSpin 720ms linear infinite;
}

.button-secondary.is-loading::after {
    border-color: rgba(26, 115, 232, 0.25);
    border-top-color: rgba(26, 115, 232, 0.85);
}

.button-danger.is-loading::after {
    border-color: rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.9);
}

@keyframes buttonSpin {
    to { transform: rotate(360deg); }
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 22px rgba(26, 115, 232, 0.24);
}

.button-wa {
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.button-wa:hover {
    opacity: 0.96;
}

.card-clickable {
    cursor: pointer;
}

.map-embed {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(223, 227, 235, 0.95);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.map-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 0;
    display: block;
}

.map-actions {
    margin-top: 12px;
    flex-wrap: wrap;
}

.search-page {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 34px 0 120px;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(251, 188, 4, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(248, 250, 253, 0.35), rgba(243, 247, 252, 0.9));
}

.search-float {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: start center;
}

.search-modal {
    width: min(980px, 100%);
    border-radius: 28px;
    border: 1px solid rgba(223, 227, 235, 0.9);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    padding: 22px;
    animation: searchFloatIn 240ms ease both;
}

.search-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.search-title {
    margin: 10px 0 10px;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.search-sub {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.search-mode {
    margin-top: 12px;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.search-submit {
    grid-column: span 2;
}

@keyframes searchFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .search-page {
        padding: 24px 0 120px;
    }
    .search-modal {
        padding: 18px;
        border-radius: 24px;
    }
    .search-form-grid {
        grid-template-columns: 1fr;
    }
    .search-submit {
        grid-column: auto;
    }
}

.button-secondary {
    color: var(--blue);
    background: #fff;
    border: 1px solid #d2e3fc;
}

.button-danger {
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
}

.button-danger:hover {
    opacity: 0.96;
}

.button-danger:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.full {
    width: 100%;
}

.hero-visual,
.apple-visual {
    position: relative;
}

.google-visual {
    display: grid;
    gap: 18px;
    align-content: start;
}

.home-showcase {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-showcase-panel {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #e1e7f0;
    background: rgba(255, 255, 255, 0.96);
}

.home-showcase-panel strong {
    font-size: 1.7rem;
    line-height: 1.2;
}

.home-showcase-panel p,
.home-showcase-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.home-showcase-grid article {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e1e7f0;
    background: rgba(255, 255, 255, 0.92);
}

.home-visual-stack {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.home-hero-slider {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.feature-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
}

.feature-card strong {
    font-size: 1.15rem;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(210, 227, 252, 0.9);
    background: rgba(232, 240, 254, 0.9);
    color: var(--blue);
    font-size: 1.1rem;
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.hero-device-card,
.city-card,
.rental-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.hero-card-copy,
.city-card-copy,
.card-body {
    padding: 22px;
}

.rental-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.16), transparent 42%),
        radial-gradient(circle at left center, rgba(251, 188, 4, 0.16), transparent 44%),
        linear-gradient(140deg, #ffffff 0%, #f3f8ff 100%);
}

.rental-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rental-media-fallback {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 22% 28%, rgba(26, 115, 232, 0.22), transparent 42%),
        radial-gradient(circle at 78% 60%, rgba(52, 168, 83, 0.16), transparent 46%),
        radial-gradient(circle at 60% 20%, rgba(251, 188, 4, 0.18), transparent 38%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 1) 100%);
}

.rental-media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(210, 227, 252, 0.9);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

.spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 6px;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(223, 227, 235, 0.95);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(60, 64, 67, 0.86);
    font-weight: 700;
    font-size: 0.9rem;
}

.spec-pill i {
    color: rgba(26, 115, 232, 0.82);
}

.visual-poster {
    position: relative;
    min-height: 230px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    color: var(--text);
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.18), transparent 28%),
        radial-gradient(circle at left center, rgba(52, 168, 83, 0.12), transparent 32%),
        linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%);
}

.visual-poster::before,
.visual-poster::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.visual-poster::before {
    width: 160px;
    height: 160px;
    top: -40px;
    right: -50px;
    background: rgba(26, 115, 232, 0.14);
    filter: blur(8px);
}

.visual-poster::after {
    width: 120px;
    height: 120px;
    left: -30px;
    bottom: -30px;
    background: rgba(251, 188, 4, 0.14);
}

.visual-poster strong,
.visual-poster p,
.visual-poster span {
    position: relative;
    z-index: 1;
}

.visual-poster strong {
    font-size: 1.35rem;
    line-height: 1.25;
}

.visual-poster p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.9rem;
}

.visual-poster-hero {
    min-height: 360px;
}

.visual-poster-rental,
.visual-poster-city {
    min-height: 210px;
}

.visual-poster-detail {
    min-height: 100%;
    padding: 42px;
    justify-content: end;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.36), transparent 22%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(140deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.visual-poster-detail p {
    color: rgba(255, 255, 255, 0.78);
}

.poster-code,
.visual-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(32, 33, 36, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.poster-code-image {
    width: 56px;
    height: 56px;
    padding: 6px;
    overflow: hidden;
}

.poster-code-image img,
.detail-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.hero-card-copy span {
    color: var(--blue);
    font-weight: 700;
}

.hero-card-copy strong {
    display: block;
    margin-top: 8px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.mini-trust-card {
    position: static;
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.mini-trust-card span {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mini-trust-card strong {
    display: block;
    margin: 8px 0 10px;
    line-height: 1.5;
}

.mini-trust-card a,
.text-link {
    color: var(--blue);
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(210, 227, 252, 0.92);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    font-size: 0.86rem;
    line-height: 1;
    white-space: nowrap;
}

.text-link i {
    font-size: 0.92rem;
    line-height: 1;
}

.text-link:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.text-link:active {
    transform: none;
}

.section {
    padding: 38px 0 54px;
}

.section-muted {
    background: linear-gradient(180deg, rgba(232, 240, 254, 0.34), rgba(255, 255, 255, 0.15));
}

.section-head,
.results-head,
.card-meta,
.card-footer,
.action-row,
.log-row,
.fleet-row,
.info-list li,
.registration-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--yellow);
    line-height: 1;
}

.rating-stars i {
    font-size: 0.92rem;
    line-height: 1;
}

.star-picker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.star-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--yellow);
    cursor: pointer;
}

.star-radio {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.star-button.is-active {
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.1);
}

.review-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
}

.review-list {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.meta-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-views i {
    color: var(--muted);
}

.rating-number {
    font-weight: 800;
    color: var(--text);
}

.detail-chip-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-head {
    align-items: end;
    margin-bottom: 24px;
}

.section-head h2,
.content-card h2,
.content-card h3,
.member-card h1,
.registration-card h3 {
    margin: 10px 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.city-grid,
.rental-grid,
.metric-grid,
.process-list,
.registration-list {
    display: grid;
    gap: 18px;
}

.city-grid,
.rental-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-city-grid {
    gap: 22px;
}

.home-city-grid .visual-poster-city {
    min-height: 160px;
    padding: 16px;
}

.home-city-grid .visual-poster strong {
    font-size: 1.15rem;
}

.home-city-grid .visual-poster p {
    font-size: 0.86rem;
}

.home-city-grid .poster-code {
    padding: 6px 10px;
    font-size: 0.72rem;
}

.home-city-grid .city-card-copy {
    padding: 14px 16px;
}

.home-city-grid .city-card-copy strong {
    font-size: 1.2rem;
}

.home-featured-grid {
    gap: 22px;
}

.home-featured-grid .visual-poster-rental {
    min-height: 180px;
    padding: 18px;
}

.home-featured-grid .card-body {
    padding: 18px;
}

.home-featured-grid .visual-poster strong {
    font-size: 1.2rem;
}

.home-featured-grid .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.home-featured-grid .tag-row {
    margin: 12px 0 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.pricing-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
    grid-template-rows: auto auto 1fr auto;
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-art {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(223, 227, 235, 0.95);
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.98));
    position: relative;
}

.pricing-art img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pricing-highlight {
    border-color: rgba(251, 188, 4, 0.55);
    background:
        radial-gradient(circle at top right, rgba(251, 188, 4, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 236, 0.95));
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: -64px;
    transform: rotate(35deg);
    padding: 8px 72px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    z-index: 2;
}

.pricing-badge-popular {
    border: 1px solid rgba(251, 188, 4, 0.6);
    background: rgba(251, 188, 4, 0.16);
    color: #8a5b00;
}

.pricing-badge-premium {
    border: 1px solid rgba(26, 115, 232, 0.28);
    background: rgba(26, 115, 232, 0.12);
    color: var(--blue);
}

.pricing-badge-custom {
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.14);
    color: rgba(236, 72, 153, 1);
}

.role-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 12px;
}

.role-tab {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--muted);
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: 180ms ease;
}

.role-tab.is-active {
    color: var(--blue);
    border-color: #d2e3fc;
    background: var(--blue-soft);
}

.role-panels {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.role-panel {
    display: none;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(223, 227, 235, 0.95);
    background: rgba(255, 255, 255, 0.92);
}

.role-panel.is-active {
    display: grid;
    gap: 6px;
}

.role-panel strong {
    font-size: 1.02rem;
}

.role-panel span {
    color: var(--muted);
    line-height: 1.7;
}
.pricing-head {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.pricing-head strong {
    font-size: 1.15rem;
}

.pricing-price {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(218, 220, 224, 0.9);
    background: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    white-space: nowrap;
}

.pricing-price[hidden] {
    display: none !important;
}

.pricing-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.pricing-price-stack {
    display: grid;
    gap: 8px;
    justify-items: start;
}

.pricing-price span {
    display: inline;
    font-weight: 700;
    font-size: 0.92rem;
    color: rgba(60, 64, 67, 0.72);
    line-height: 1.1;
}

.pricing-price-normal.is-strike {
    text-decoration: line-through;
    opacity: 0.72;
}

.pricing-price-discount {
    font-size: 1.26rem;
    border: 1px solid rgba(26, 115, 232, 0.28);
    background:
        linear-gradient(120deg, rgba(26, 115, 232, 0.12), rgba(26, 115, 232, 0.22), rgba(52, 168, 83, 0.16), rgba(26, 115, 232, 0.12));
    background-size: 220% 100%;
    color: var(--blue);
    box-shadow: 0 12px 22px rgba(26, 115, 232, 0.18);
    animation: shimmer 2.4s linear infinite, pulse-glow 1.8s ease-in-out infinite;
}

.pricing-price-discount span {
    color: rgba(26, 115, 232, 0.9);
}

.pricing-coupon {
    margin-top: 6px;
    display: grid;
    gap: 8px;
}

.pricing-coupon-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.pricing-coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.pricing-coupon-hint {
    color: #137333;
    font-weight: 700;
    font-size: 0.92rem;
}

.pricing-coupon-error {
    color: #b3261e;
    font-weight: 700;
    font-size: 0.92rem;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 12px 22px rgba(26, 115, 232, 0.18);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(26, 115, 232, 0.26);
    }
}

.pricing-price span {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-actions {
    margin-top: 10px;
}

.pricing-card .step-list {
    margin-top: 10px;
    gap: 6px;
    padding-left: 0;
    list-style: none;
}

.pricing-card .step-list li {
    line-height: 1.6;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.pricing-card .step-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(52, 168, 83, 0.12);
    border: 1px solid rgba(52, 168, 83, 0.22);
    color: #137333;
    font-weight: 900;
    font-size: 0.78rem;
    margin-top: 2px;
}

.metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-card-copy strong,
.rental-card h3 {
    display: block;
    font-size: 1.45rem;
    margin-bottom: 6px;
}

.city-card-copy span {
    display: block;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
}

.tag-row span,
.badge,
.active-filters span {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    border: 1px solid #dadce0;
    background: #fff;
}

.badge-status {
    min-width: 96px;
    justify-content: center;
    text-align: center;
    display: inline-flex;
    align-items: center;
}

.badge-soft {
    background: var(--blue-soft);
    color: var(--blue);
    border-color: #d2e3fc;
}

.badge-gold {
    background: #fff4db;
    color: #9a6700;
    border-color: #f5ddb0;
}

.badge-featured {
    background: var(--blue-soft);
    color: var(--blue);
    border-color: #d2e3fc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-featured i {
    color: var(--blue);
    font-size: 0.95rem;
    line-height: 1;
}

.card-meta .badge-featured {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    font-size: 0.78rem;
}

.badge-neutral {
    background: rgba(95, 99, 104, 0.08);
    color: var(--muted);
    border-color: rgba(95, 99, 104, 0.18);
}

.badge-verified {
    background: rgba(52, 168, 83, 0.12);
    color: #137333;
    border-color: rgba(52, 168, 83, 0.22);
}

.badge-rejected {
    background: rgba(234, 67, 53, 0.12);
    color: #b3261e;
    border-color: rgba(234, 67, 53, 0.22);
}

.card-footer {
    align-items: center;
}

.card-footer strong,
.metric-card strong,
.stats-row strong {
    font-size: 1.3rem;
}

.card-footer small,
.metric-card span,
.stats-row span {
    color: var(--muted);
}

.price-note {
    display: block;
    margin-top: 10px;
    max-width: 760px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.price-note.is-alert {
    margin-top: 12px;
    font-size: 0.82rem;
    font-style: italic;
    color: #b42318;
}

.light-stats,
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stats-row article,
.metric-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.two-column-callout,
.detail-layout,
.member-grid,
.registration-page {
    grid-template-columns: 1.08fr 0.92fr;
}

.listing-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
}

.filter-card,
.content-card,
.metric-card,
.member-card,
.empty-card,
.registration-card {
    padding: 24px;
    border-radius: 24px;
}

.filter-card {
    position: sticky;
    top: 104px;
}

.filter-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.filter-card-head h2 {
    margin: 0;
}

.filter-toggle {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-toggle i {
    transition: transform 180ms ease;
}

.filter-card.is-collapsed .filter-toggle i {
    transform: rotate(-90deg);
}

.filter-card-body {
    display: block;
}

.filter-card.is-collapsed .filter-card-body {
    display: none;
}

.filter-form,
.member-form,
.mapping-form,
.registration-form {
    display: grid;
    gap: 14px;
}

.member-banner {
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 252, 0.95));
    border-bottom: 1px solid var(--line);
}

.member-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.member-hero-strip article {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #dfe5ee;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.member-hero-strip strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.45;
}

.member-hero-strip span {
    color: var(--muted);
    line-height: 1.6;
}

.registration-hero-strip,
.about-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.registration-hero-strip article,
.about-hero-strip article {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #dfe5ee;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.registration-hero-strip strong,
.about-hero-strip strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.08rem;
    line-height: 1.45;
}

.registration-hero-strip span,
.about-hero-strip span {
    color: var(--muted);
    line-height: 1.65;
}

.registration-side-card > p {
    margin: 10px 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.section-art {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid #dbe5f0;
    overflow: hidden;
}

.section-art img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
}

.registration-side-list {
    gap: 14px;
}

.registration-side-list article {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #e0e6ef;
    background: rgba(255, 255, 255, 0.76);
}

.registration-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #d2e3fc;
    background: #eef5ff;
}

.registration-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
}

.registration-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.registration-payment-note {
    margin: 16px 0 20px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #d2e3fc;
    background: #f5f9ff;
}

.registration-payment-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
}

.registration-payment-note p {
    margin: 0;
}

.registration-payment-note .step-list {
    margin: 10px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.registration-payment-note .step-list li strong {
    color: var(--text);
}

.step-list {
    margin: 12px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.step-list li strong {
    color: var(--text);
}

.stepper {
    display: grid;
    gap: 18px;
}

.stepper-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.stepper-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: 180ms ease;
    white-space: nowrap;
    min-width: 0;
}

.stepper-step > span:not(.stepper-number) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.stepper-step.is-active {
    color: var(--blue);
    border-color: #d2e3fc;
    background: var(--blue-soft);
}

.stepper-number {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(26, 115, 232, 0.22);
    background: rgba(26, 115, 232, 0.08);
    color: var(--blue);
    font-size: 0.86rem;
}

.stepper-panel {
    display: none;
}

.stepper-panel.is-active {
    display: block;
}

.stepper-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: start;
}

.package-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.package-option {
    cursor: pointer;
}

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

.package-card {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 10px;
    min-height: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
}

.package-option.is-selected .package-card {
    border-color: rgba(26, 115, 232, 0.65);
    background: rgba(232, 240, 254, 0.72);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12), var(--shadow);
    transform: translateY(-2px);
}

.package-option.is-selected .package-card::after {
    content: "✓";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(26, 115, 232, 0.28);
}

.package-option:focus-within .package-card {
    border-color: rgba(26, 115, 232, 0.55);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12), var(--shadow-soft);
}

.package-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.package-card-head strong {
    font-size: 1.1rem;
}

.package-card-price {
    display: grid;
    justify-items: start;
    gap: 8px;
}

.package-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.preview-card h3 {
    margin: 10px 0 6px;
}

.preview-card p {
    margin: 0;
}

.bank-card {
    padding: 22px;
}

.bank-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.bank-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(218, 220, 224, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.bank-logo strong {
    font-weight: 800;
    letter-spacing: 0.06em;
}

.bank-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.bank-card-title {
    display: grid;
    gap: 6px;
}

.bank-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.copy-field span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.copy-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.copy-row input[readonly] {
    background: rgba(255, 255, 255, 0.96);
}

.featured-manage-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.featured-batch-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
}

.featured-batch-bar .helper-text {
    margin: 0;
}

.featured-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
}

.featured-row.has-select {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.featured-select {
    display: grid;
    place-items: center;
}

.featured-select input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

.featured-row strong {
    display: block;
    font-size: 1.05rem;
}

.featured-row span {
    color: var(--muted);
    line-height: 1.6;
}

.registration-side-visual {
    padding: 0;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.12), transparent 46%),
        radial-gradient(circle at bottom right, rgba(251, 188, 4, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 252, 0.98));
}

.image-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.03);
    animation: slider-fade 45s infinite;
}

.image-slide.is-1 {
    animation-delay: 0s;
}

.image-slide.is-2 {
    animation-delay: 15s;
}

.image-slide.is-3 {
    animation-delay: 30s;
}

@keyframes slider-fade {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }
    8% {
        opacity: 1;
        transform: scale(1);
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    41% {
        opacity: 0;
        transform: scale(1.03);
    }
    100% {
        opacity: 0;
        transform: scale(1.03);
    }
}

.side-static-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.12), transparent 46%),
        radial-gradient(circle at bottom right, rgba(251, 188, 4, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 252, 0.98));
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.results-head {
    align-items: end;
    margin-bottom: 18px;
}

.results-head p {
    margin: 8px 0 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pagination {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.pagination-pages {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--muted);
    font-weight: 800;
    transition: 180ms ease;
}

.pagination-link:hover {
    border-color: #d2e3fc;
    color: var(--blue);
    background: var(--blue-soft);
}

.pagination-link.is-active {
    border-color: #d2e3fc;
    color: var(--blue);
    background: var(--blue-soft);
}

.pagination-link.is-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero.compact,
.member-banner {
    padding-top: 52px;
    padding-bottom: 18px;
}

.page-hero.compact h1 {
    max-width: 860px;
    font-size: clamp(2.5rem, 5.8vw, 4.2rem);
}

.city-hero {
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--line);
}

.clean-city-hero {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
    border-bottom: 1px solid var(--line);
}

.hero-prompt {
    display: grid;
    gap: 6px;
    max-width: 760px;
    margin-top: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.hero-prompt strong {
    font-size: 0.92rem;
}

.hero-prompt span {
    color: var(--muted);
    line-height: 1.7;
}

.city-hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.city-hero-summary article {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.city-hero-summary strong,
.listing-info-grid strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.4;
}

.city-hero-summary span,
.listing-info-grid span {
    color: var(--muted);
    line-height: 1.6;
}

.city-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.detail-hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: end;
}

.detail-cover,
.detail-overlay {
    position: absolute;
    inset: 0;
}

.detail-cover {
    height: 100%;
    display: grid;
    align-items: center;
    z-index: 0;
}

.detail-overlay {
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.1), rgba(10, 16, 28, 0.72));
    z-index: 1;
}

.detail-cover-clean {
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.26), transparent 24%),
        linear-gradient(140deg, #111827 0%, #1f2937 52%, #334155 100%);
}

.detail-overlay-clean {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.5));
}

.detail-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 48px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
}

.detail-cover-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: center;
    align-content: center;
    min-height: 100%;
    padding-top: 92px;
    padding-bottom: 260px;
    color: #fff;
}

.detail-mobile-brand {
    display: none;
}

.detail-mobile-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    overflow: hidden;
}

.detail-mobile-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-mobile-brand-copy {
    display: grid;
    gap: 4px;
}

.detail-mobile-photo {
    display: none;
}

.detail-mobile-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.detail-title {
    margin: 0;
    display: grid;
    gap: 6px;
    letter-spacing: -0.02em;
}

.detail-title-main {
    display: block;
    font-size: clamp(1.6rem, 5.2vw, 2.6rem);
    line-height: 1.06;
    font-weight: 900;
}

.detail-title-sub {
    display: block;
    font-size: clamp(1.05rem, 3.6vw, 1.4rem);
    line-height: 1.1;
    font-weight: 800;
    opacity: 0.88;
}

.exp-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.exp-mini i {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
}

.detail-brand-mark {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.detail-cover-copy {
    max-width: 640px;
    display: grid;
    gap: 14px;
}

.detail-brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-cover-copy strong {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.detail-cover-copy p {
    margin: 0;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.detail-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-chip-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.rental-card .card-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.rental-card .card-meta .meta-location {
    flex: 1 1 100%;
    color: var(--muted);
}

.rental-card .card-meta .badge-featured {
    order: 1;
}

.rental-card .card-meta .meta-location {
    order: 2;
}

.rental-card .card-meta .meta-rating {
    order: 3;
}

.rental-card .card-meta .meta-views {
    order: 4;
}

.detail-chip-icon,
.section-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(26, 115, 232, 0.12);
    color: var(--blue);
    font-size: 0.95rem;
    line-height: 1;
    flex: 0 0 auto;
}

.detail-chip-row .detail-chip-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.detail-cover-visual {
    display: flex;
    justify-content: flex-end;
}

.detail-cover-visual img {
    width: min(100%, 520px);
    height: auto;
    filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.28));
}

.cta-stack {
    display: grid;
    gap: 12px;
    min-width: 240px;
}

.cta-stack .button {
    flex-wrap: wrap;
}

.cta-stack .cta-label {
    font-weight: 800;
    font-size: 0.95rem;
}

.cta-stack .cta-sub {
    flex: 1 1 100%;
    margin-top: 0;
    width: 100%;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 700;
    opacity: 0.75;
    line-height: 1.2;
}

.cta-stack .cta-claim {
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    row-gap: 0;
    line-height: 1.1;
}

.cta-stack .cta-claim i {
    margin-bottom: 2px;
}

.button-wa.button-wa-dark {
    color: #111;
}

.button-wa.button-wa-dark i {
    color: #111;
}

@media (max-width: 1100px) {
    .cta-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
        max-width: 420px;
        margin-inline: auto;
    }

    .cta-stack .button {
        width: 100%;
        justify-content: center;
    }

    .cta-stack .cta-wide {
        grid-column: 1 / -1;
    }
}

.detail-main {
    display: grid;
    gap: 20px;
}

.detail-sidebar {
    display: grid;
    gap: 20px;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.detail-gallery-grid a {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.detail-gallery-grid a:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.detail-gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.info-list li {
    align-items: start;
}

.info-list span {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-sidebar .info-list {
    gap: 0;
}

.detail-sidebar .info-list li {
    position: relative;
    display: grid;
    justify-content: unset;
    gap: 4px;
    padding: 12px 0;
}

.detail-sidebar .info-list strong {
    font-size: 1rem;
    line-height: 1.25;
}

.detail-sidebar .info-item {
    cursor: pointer;
}

.detail-sidebar .info-list li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.06) 16%, rgba(15, 23, 42, 0.28) 50%, rgba(15, 23, 42, 0.06) 84%, transparent);
}

.detail-sidebar .info-list li:last-child::after {
    display: none;
}

.detail-sidebar .info-item:hover {
    background: rgba(2, 6, 23, 0.02);
}

.detail-sidebar .info-item.is-copied strong {
    color: var(--blue);
}

.fleet-table {
    display: grid;
    gap: 12px;
}

.fleet-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.fleet-row:last-child {
    border-bottom: 0;
}

.fleet-row div {
    display: grid;
    gap: 4px;
}

.fleet-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.fleet-thumb {
    width: 54px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(223, 227, 235, 0.95);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    flex: 0 0 auto;
}

.fleet-info-text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.member-shell {
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    padding: 52px 20px;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.member-card {
    width: min(520px, 100%);
}

.member-login-layout {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
}

.member-login-panel {
    width: 100%;
}

.member-login-intro {
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.98));
}

.member-benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.member-benefit-list article {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #e0e6ef;
    background: rgba(255, 255, 255, 0.84);
}

.member-benefit-list strong {
    display: block;
    margin-bottom: 6px;
}

.member-benefit-list p {
    margin: 0;
}

@media (min-width: 1101px) {
    .section {
        padding: 52px 0 74px;
    }

    .hero-card-copy,
    .city-card-copy,
    .card-body,
    .content-card,
    .filter-card,
    .metric-card,
    .member-card,
    .registration-card {
        padding: 28px;
    }

    .visual-poster {
        min-height: 248px;
        padding: 28px;
    }

    .visual-poster-rental,
    .visual-poster-city {
        min-height: 228px;
    }

    .city-grid,
    .rental-grid,
    .metric-grid,
    .member-grid {
        gap: 24px;
    }

    .city-card-copy strong,
    .rental-card h3 {
        font-size: 1.58rem;
    }

    .visual-poster p,
    .city-card-copy span {
        font-size: 0.95rem;
    }
}

.helper-text {
    margin-top: 16px;
}

.fleet-editor {
    display: grid;
    gap: 14px;
}

.fleet-editor > strong {
    font-size: 1.05rem;
}

.fleet-editor > p {
    margin: -4px 0 0;
}

.fleet-editor-grid {
    display: grid;
    gap: 12px;
}

.fleet-editor-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr 1fr;
    gap: 10px;
}

.content-divider {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.table-wrap {
    overflow-x: auto;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.preview-table th,
.preview-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.preview-table th {
    color: var(--text);
}

.wide {
    grid-template-columns: 1fr;
}

.flash {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
}

.flash-success {
    border-color: #cde7d7;
    background: #f2fbf5;
}

.flash-error {
    border-color: #f5d0d0;
    background: #fff5f5;
}

.registration-list {
    grid-template-columns: 1fr;
}

.registration-card {
    display: grid;
    gap: 18px;
}

.registration-head {
    align-items: start;
}

.registration-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.inline-note-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.inline-note-form input[type="text"] {
    padding: 12px 14px;
    border-radius: 999px;
}

.registration-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-note {
    margin: 0 0 12px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.form-grid label .helper-text {
    margin-top: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.password-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.prefix-input {
    position: relative;
}

.prefix-input .prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: var(--muted);
    pointer-events: none;
}

.prefix-input input {
    padding-left: 56px;
}

.registration-grid span,
.registration-grid strong {
    display: block;
}

.registration-grid span {
    color: var(--muted);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.registration-wide,
.span-2 {
    grid-column: 1 / -1;
}

.site-footer {
    padding: 42px 0 58px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(223, 227, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom span {
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom a:hover {
    color: var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    line-height: 1.8;
    display: block;
    margin-bottom: 8px;
}

.site-footer.site-footer-dark {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer.site-footer-dark h3,
.site-footer.site-footer-dark h4 {
    color: #fff;
}

.site-footer.site-footer-dark p,
.site-footer.site-footer-dark a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer.site-footer-dark p {
    margin-top: 10px;
    max-width: 62ch;
    line-height: 1.8;
}

.site-footer.site-footer-dark h3 {
    letter-spacing: -0.02em;
}

.site-footer.site-footer-dark h4 {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.site-footer.site-footer-dark a {
    display: block;
    width: fit-content;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.site-footer.site-footer-dark a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-bar {
    background: #000;
}

.footer-bottom-bar-inner {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-bar-inner a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-bar-inner a:hover {
    color: #fff;
}

.google-hero {
    padding-top: 54px;
}

.google-hero-copy {
    max-width: 720px;
}

.google-signature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(218, 220, 224, 0.9);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.google-signature .dot,
.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.blue {
    background: var(--blue);
}

.red {
    background: var(--red);
}

.yellow {
    background: var(--yellow);
}

.green {
    background: var(--green);
}

.google-search-panel {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 22px;
    border-radius: 28px;
    border-color: #d7dce3;
    box-shadow: 0 12px 30px rgba(60, 64, 67, 0.12);
}

.google-search-panel .field {
    min-width: 0;
    gap: 10px;
}

.google-search-panel .field:nth-child(1),
.google-search-panel .field:nth-child(2),
.google-search-panel .field:nth-child(3) {
    grid-column: span 4;
}

.google-search-panel .field:nth-child(4) {
    grid-column: span 8;
}

.google-search-panel label {
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.google-search-panel input,
.google-search-panel select {
    min-height: 58px;
    padding-inline: 18px;
}

.google-search-panel .button {
    grid-column: span 4;
    width: 100%;
    min-width: 190px;
    padding-inline: 24px;
}

.google-search-panel .button.button-primary {
    font-size: 1.02rem;
}

.ios-hero {
    background:
        radial-gradient(circle at 22% 10%, rgba(26, 115, 232, 0.14), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(251, 188, 4, 0.12), transparent 30%),
        radial-gradient(circle at 75% 85%, rgba(52, 168, 83, 0.1), transparent 38%);
}

.home-hero-ref {
    padding-top: 54px;
    padding-bottom: 34px;
    background:
        radial-gradient(circle at 12% 15%, rgba(26, 115, 232, 0.14), transparent 38%),
        radial-gradient(circle at 85% 20%, rgba(26, 115, 232, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 255, 0.92) 100%);
}

.home-hero-title span {
    display: block;
}

.home-hero-title-top {
    color: var(--text);
}

.home-hero-title-bottom {
    margin-top: 6px;
}

.home-hero-top .hero-copy p {
    max-width: 62ch;
}

.home-hero-visual {
    align-content: start;
    overflow: visible;
}

.home-hero-art {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(26, 115, 232, 0.12);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    isolation: isolate;
}

.home-hero-art .image-slider {
    border-radius: inherit;
}

.home-hero-badge {
    position: absolute;
    right: 16px;
    top: 46%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(210, 227, 252, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.home-hero-top .hero-copy .home-hero-badge {
    position: static;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: fit-content;
    max-width: 100%;
    animation: heroBadgeIn 260ms ease both;
}

.home-hero-top .hero-copy .home-hero-badge:nth-child(2) {
    animation-delay: 90ms;
}

.home-hero-top .hero-copy .home-hero-badge i {
    animation: heroBadgePulse 900ms ease 260ms both;
}

@keyframes heroBadgeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBadgePulse {
    0% { transform: scale(1); }
    35% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 680px) {
    .home-hero-top .hero-copy .home-hero-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        max-width: 420px;
        margin-inline: auto;
    }

    .home-hero-top .hero-copy .home-hero-badge {
        width: 100%;
        justify-content: center;
    }
}

.home-hero-badge.is-soft {
    border-color: rgba(251, 188, 4, 0.35);
}

.home-hero-badge.is-soft i {
    color: #7c5a00;
    background: rgba(251, 188, 4, 0.18);
}

.home-hero-badge i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: rgba(26, 115, 232, 0.1);
}

.home-hero-badge strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.1;
}

.home-hero-badge span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.home-hero-ref .search-choice-card.is-accent {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.18), rgba(232, 240, 254, 0.92));
    border-color: rgba(26, 115, 232, 0.22);
}

.home-hero-trust {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
}

.home-hero-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(26, 115, 232, 0.1);
    color: var(--blue);
    flex: 0 0 auto;
}

.home-hero-trust-item strong {
    display: block;
    line-height: 1.2;
}

.home-hero-trust-item span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    margin-top: 2px;
}

@media (max-width: 920px) {
    .home-hero-badge {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .home-hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .home-hero-badge {
        left: 12px;
        right: 12px;
        width: auto;
    }
}

.home-top-search .field-full {
    grid-column: 1 / -1;
}

.home-top-search .field-hidden {
    display: none;
}

.check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.check-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #dadce0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    font-weight: 700;
}

.check-pill input {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    border: 2px solid rgba(100, 116, 139, 0.35);
    background: #fff;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    place-items: center;
    transition: 160ms ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.check-pill input:checked {
    border-color: rgba(26, 115, 232, 0.95);
    background-color: rgba(26, 115, 232, 0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.check-pill input:focus-visible {
    outline: 3px solid rgba(26, 115, 232, 0.22);
    outline-offset: 2px;
}

.vehicle-chip-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 6px 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.vehicle-chip-row::-webkit-scrollbar {
    display: none;
}

.vehicle-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #dadce0;
    background: rgba(255, 255, 255, 0.96);
    color: var(--muted);
    padding: 12px 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: 180ms ease;
}

.vehicle-chip i {
    color: #64748b;
}

.vehicle-chip:hover {
    border-color: #aecbfa;
    background: #f8fbff;
    color: var(--blue);
}

.vehicle-chip.is-active {
    border-color: rgba(26, 115, 232, 0.25);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.18), transparent 52%),
        rgba(232, 240, 254, 0.85);
    box-shadow: 0 10px 24px rgba(26, 115, 232, 0.14);
}

.vehicle-chip.is-active i {
    color: var(--blue);
}

.bottom-dock {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    margin: 0 auto;
    max-width: 480px;
    display: none;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 26px;
    border: 1px solid rgba(223, 227, 235, 0.9);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
    z-index: 80;
}

.dock-link {
    flex: 1;
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 18px;
    color: rgba(15, 23, 42, 0.76);
    transition: 180ms ease;
}

.dock-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.65));
    border: 1px solid rgba(203, 213, 225, 0.7);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.dock-icon i {
    font-size: 1.05rem;
}

.dock-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dock-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.55);
}

.dock-link.is-active {
    color: var(--blue);
    background: rgba(232, 240, 254, 0.75);
}

.dock-link.is-active .dock-icon {
    border-color: rgba(26, 115, 232, 0.28);
    background:
        radial-gradient(circle at top left, rgba(232, 240, 254, 0.9), rgba(232, 240, 254, 0.55));
    box-shadow: 0 14px 30px rgba(26, 115, 232, 0.2);
}

.quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.google-pills a {
    padding: 11px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    border: 1px solid #dadce0;
    font-weight: 600;
    transition: 180ms ease;
}

.google-pills a:hover {
    color: var(--blue);
    border-color: #aecbfa;
    background: #f8fbff;
}

.google-stats article:nth-child(1) {
    border-top: 4px solid var(--blue);
}

.google-stats article:nth-child(2) {
    border-top: 4px solid var(--green);
}

.google-stats article:nth-child(3) {
    border-top: 4px solid var(--yellow);
}

.google-visual {
    padding-left: 10px;
}

.google-device-card {
    position: relative;
}

.google-search-preview {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.preview-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.preview-query {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(60, 64, 67, 0.08);
}

.query-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
}

.listing-rental-card,
.city-rental-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.listing-poster {
    min-height: 220px;
}

.listing-poster strong {
    max-width: 260px;
}

.listing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.listing-info-grid div {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e3e8f0;
    background: var(--surface-alt);
}

.listing-card-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.listing-card-footer > strong {
    grid-column: 1 / -1;
    margin: 0;
}

.listing-card-footer .button {
    min-width: 0;
    width: 100%;
}

.listing-card-footer > .button:only-of-type {
    grid-column: 1 / -1;
}

.city-rental-grid {
    gap: 20px;
}

.city-poster {
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.2), transparent 28%),
        radial-gradient(circle at left center, rgba(52, 168, 83, 0.14), transparent 30%),
        linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
}

.preview-query strong {
    font-size: 1rem;
    line-height: 1.4;
}

.preview-results {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.preview-results article {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e7ef;
}

.preview-results strong {
    display: block;
    margin: 6px 0 8px;
    font-size: 1rem;
    line-height: 1.45;
}

.preview-results p,
.result-url {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.result-url {
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 600;
}

.google-card-copy {
    background: #fff;
}

.google-callout {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.98));
}

.google-poster-city {
    background:
        radial-gradient(circle at top right, rgba(26, 115, 232, 0.22), transparent 28%),
        radial-gradient(circle at left center, rgba(234, 67, 53, 0.12), transparent 30%),
        linear-gradient(160deg, #ffffff 0%, #f4f8fe 100%);
}

@media (max-width: 1280px) {
    .google-search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px;
    }

    .home-showcase-grid,
    .member-hero-strip,
    .member-login-layout,
    .registration-hero-strip,
    .about-hero-strip,
    .about-highlight-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .fleet-editor-row {
        grid-template-columns: 1fr 1fr;
    }

    .google-search-panel .field:nth-child(1),
    .google-search-panel .field:nth-child(2),
    .google-search-panel .field:nth-child(3),
    .google-search-panel .field:nth-child(4),
    .google-search-panel .button {
        grid-column: span 1;
    }

    .home-top-search .field-full,
    .home-top-search .field-hidden,
    .home-top-search .button {
        grid-column: auto;
    }
}

@media (max-width: 1100px) {
    .clean-hero-grid,
    .google-hero-grid,
    .city-grid,
    .rental-grid,
    .metric-grid,
    .listing-layout,
    .member-grid,
    .two-column-callout,
    .detail-layout,
    .registration-page,
    .footer-grid,
    .dense {
        grid-template-columns: 1fr;
    }

    .filter-card {
        position: static;
    }

    .filter-toggle {
        display: inline-flex;
    }

    .search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .google-search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px;
    }

    .google-search-panel .field:nth-child(1),
    .google-search-panel .field:nth-child(2),
    .google-search-panel .field:nth-child(3),
    .google-search-panel .field:nth-child(4),
    .google-search-panel .button {
        grid-column: span 1;
    }

    .home-top-search .field-full,
    .home-top-search .field-hidden,
    .home-top-search .button {
        grid-column: auto;
    }



    .detail-hero {
        min-height: auto;
        padding-top: 92px;
    }

    .detail-hero-content {
        flex-direction: column;
        align-items: start;
        padding-top: 18px;
    }

    .detail-cover-content {
        display: none;
    }

    .detail-mobile-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .detail-mobile-photo {
        display: block;
        margin-top: 14px;
        width: 100%;
        max-width: 520px;
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
        background: rgba(255, 255, 255, 0.08);
    }

    .detail-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .city-hero-summary,
    .listing-info-grid {
        grid-template-columns: 1fr;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .brand-logo {
        width: 170px;
    }

    .search-panel,
    .google-search-panel,
    .stats-row,
    .light-stats,
    .registration-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .google-search-panel {
        gap: 14px;
    }

    .fleet-editor-row {
        grid-template-columns: 1fr;
    }

    .home-showcase {
        padding: 18px;
    }

    .home-showcase-panel {
        padding: 20px;
    }

    .google-search-panel .field:nth-child(1),
    .google-search-panel .field:nth-child(2),
    .google-search-panel .field:nth-child(3),
    .google-search-panel .field:nth-child(4),
    .google-search-panel .button {
        grid-column: auto;
    }

    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .bottom-dock {
        display: flex;
    }


    .container {
        width: min(1180px, calc(100% - 28px));
    }

    .container-narrow,
    .container-narrow.container {
        width: min(1180px, calc(100% - 28px));
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-heading h1 {
        font-size: clamp(2.35rem, 13vw, 3.6rem);
    }

    .detail-cover-content {
        padding-top: 74px;
        padding-bottom: 260px;
    }

    .detail-cover-copy p,
    .detail-cover-copy .detail-chip-row {
        display: none;
    }

    .detail-hero {
        min-height: auto;
        padding-top: 92px;
    }

    .detail-hero-content {
        padding-top: 18px;
    }

    .detail-cover-visual {
        display: none;
    }

    .detail-brand-mark {
        width: 74px;
        height: 74px;
        border-radius: 22px;
        font-size: 1.55rem;
    }

    .detail-cover-copy strong {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .mini-trust-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .city-hero-actions {
        flex-direction: column;
    }

    .city-hero-actions .button,
    .listing-card-footer .button {
        width: 100%;
    }

    .google-signature {
        margin-bottom: 14px;
    }

    .google-visual {
        padding-left: 0;
    }

    .member-hero-strip {
        grid-template-columns: 1fr;
    }

    .detail-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inline-note-form {
        grid-template-columns: 1fr;
    }

    .stepper-nav {
        grid-template-columns: 1fr;
    }

    .bank-card-grid {
        grid-template-columns: 1fr;
    }

    .package-picker {
        grid-template-columns: 1fr;
    }


    .featured-row {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }
}

@media (max-width: 1100px) {
    .google-visual {
        padding-left: 0;
    }
}

.results-head {
    scroll-margin-top: 110px;
}

.rental-grid.featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .rental-grid.featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .rental-grid.featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .rental-grid.featured-grid {
        grid-template-columns: 1fr;
    }
}
