/* Custom dropdown is mobile-only; native select stays on desktop */
.custom-select__trigger,
.custom-select__panel {
    display: none;
}

/* STARK Home — mobile-only (desktop uses style.css + home-desktop.css) */

@media (max-width: 768px) {

.page-home {
    --home-pad-x: 20px;
    --home-section-y: 48px;
    --home-card-gap: 16px;
    --home-field-gap: 18px;
    --home-radius: 16px;
    --home-border: rgba(255, 255, 255, 0.08);
    --home-surface: #141414;
    --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-primary);
    background-color: #0a0a0a;
    color: var(--color-text-primary);
}

/* Hero */
.page-home .hero-booking {
    position: relative;
    padding: 12px 0 32px;
    min-height: auto;
    align-items: flex-start;
    background: #0a0a0a;
    overflow: visible;
}

.page-home .hero-booking::before,
.page-home .hero-booking::after {
    display: none;
}

.page-home .hero-booking__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 50% at 50% -10%, rgba(164, 255, 0, 0.1) 0%, transparent 58%),
        linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
    pointer-events: none;
    animation: homeGlowPulse 8s var(--home-ease) infinite alternate;
}

.page-home .hero-booking__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98' viewBox='0 0 56 98'%3E%3Cg fill='none' stroke='%23A4FF00' stroke-width='0.85' opacity='0.22'%3E%3Cpath d='M28 1 L54 16 L54 48 L28 63 L2 48 L2 16 Z'/%3E%3Cpath d='M28 35 L54 50 L54 82 L28 97 L2 82 L2 50 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 48px 84px;
    opacity: 0.22;
}

.page-home .hero-booking__bg::after {
    display: none;
}

.page-home .hero-booking .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: var(--home-pad-x);
    padding-right: var(--home-pad-x);
}

.page-home .hero-content {
    text-align: left;
    margin: 0;
    padding: 4px 0 0;
}

.page-home .hero-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
    animation: homeFadeUp 0.55s var(--home-ease) both;
}

.page-home .hero-title {
    font-family: var(--font-nav);
    font-size: clamp(1.7rem, 7.2vw, 2.05rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    text-transform: none;
    margin-bottom: 10px;
    text-shadow: none;
    color: var(--color-text-primary);
    animation: homeFadeUp 0.65s 0.06s var(--home-ease) both;
}

.page-home .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0;
    text-shadow: none;
    animation: homeFadeUp 0.65s 0.12s var(--home-ease) both;
}

.page-home .hero-badges {
    display: none;
}

/* Booking card */
.page-home .booking-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 16px 16px;
    margin: 0;
    max-width: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    animation: homeFadeUp 0.7s 0.16s var(--home-ease) both;
}

.page-home .booking-locations-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.page-home .booking-card .card-title {
    display: none;
}

.page-home .booking-form {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page-home .booking-form .form-group {
    margin: 0;
}

.page-home #dropoffLocationGroup {
    overflow: hidden;
    max-height: 320px;
    opacity: 1;
    transition:
        max-height 0.35s var(--home-ease),
        opacity 0.25s ease;
}

.page-home #dropoffLocationGroup.is-collapsed {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.page-home .booking-form label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.page-home .booking-form select,
.page-home .booking-form input[type="date"] {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 14px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color-scheme: dark;
    transition: border-color 0.25s var(--home-ease), box-shadow 0.25s var(--home-ease);
}

.page-home .booking-form select:focus,
.page-home .booking-form input[type="date"]:focus {
    outline: none;
    border-color: rgba(164, 255, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.12);
}

.page-home .custom-select {
    position: relative;
}

.page-home .custom-select > select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.page-home .custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: left;
    color: var(--color-text-muted);
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.25s var(--home-ease), box-shadow 0.25s var(--home-ease), background-color 0.25s ease;
}

.page-home .custom-select.has-value .custom-select__trigger {
    color: var(--color-text-primary);
}

.page-home .custom-select__trigger:focus-visible,
.page-home .custom-select.is-open .custom-select__trigger {
    outline: none;
    border-color: rgba(164, 255, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.12);
}

.page-home .custom-select.is-invalid .custom-select__trigger {
    border-color: rgba(255, 90, 90, 0.7);
}

.page-home .custom-select__trigger-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-home .custom-select__chevron {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.7;
    transition: transform 0.28s var(--home-ease);
}

.page-home .custom-select.is-open .custom-select__chevron {
    transform: rotate(225deg) translateY(-2px);
}

.page-home .custom-select__panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
    transition:
        grid-template-rows 0.35s var(--home-ease),
        opacity 0.25s ease,
        margin 0.35s var(--home-ease);
}

.page-home .custom-select.is-open .custom-select__panel {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 8px;
    pointer-events: auto;
}

.page-home .custom-select__panel-inner {
    overflow: hidden;
    min-height: 0;
    background: #1a1a1a;
    border: 1px solid rgba(164, 255, 0, 0.16);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.page-home .custom-select__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    text-align: left;
    color: var(--color-text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        opacity 0.25s ease,
        transform 0.3s var(--home-ease);
}

.page-home .custom-select__option:last-child {
    border-bottom: none;
}

.page-home .custom-select.is-open .custom-select__option {
    opacity: 1;
    transform: none;
}

.page-home .custom-select.is-open .custom-select__option:nth-child(1) {
    transition-delay: 0.04s;
}

.page-home .custom-select.is-open .custom-select__option:nth-child(2) {
    transition-delay: 0.08s;
}

.page-home .custom-select__option:active,
.page-home .custom-select__option.is-selected {
    background: rgba(164, 255, 0, 0.1);
    color: var(--color-accent);
}

.page-home .custom-select__option.is-selected::after {
    content: '✓';
    font-size: 0.875rem;
    color: var(--color-accent);
}

.page-home .booking-form .same-location-toggle {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 0.875rem;
    color: var(--color-text-primary);
    gap: 10px;
    background: none;
    border: none;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
}

.page-home .booking-form .same-location-toggle span {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-primary);
}

.page-home .booking-form .same-location-toggle:has(input:checked) {
    background: none;
    border: none;
}

.page-home .booking-form .same-location-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    align-self: center;
    accent-color: var(--color-accent);
}

.page-home .date-range-group {
    margin: 0;
    padding: 0;
}

.page-home .date-range-main-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    margin: 0 0 8px;
    padding: 0;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.page-home .date-range-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .date-input-wrapper {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    min-width: 0;
    min-height: 52px;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 14px;
    transition: border-color 0.25s var(--home-ease), box-shadow 0.25s var(--home-ease);
}

.page-home .date-input-wrapper:focus-within {
    border-color: rgba(164, 255, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.12);
}

.page-home .booking-form .date-input-wrapper input[type="date"] {
    min-width: 0 !important;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    text-align: left;
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
}

.page-home .date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.page-home .date-input-wrapper input[type="date"]::-webkit-datetime-edit {
    width: 100%;
    padding: 0;
}

.page-home .date-input-wrapper input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

.page-home .booking-form .date-input-wrapper input[type="date"]:focus {
    box-shadow: none;
    transform: none;
}

.page-home .booking-min-rental-hint {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    transition: max-height 0.3s var(--home-ease), opacity 0.25s ease, margin 0.3s ease;
}

.page-home .booking-min-rental-hint.is-visible {
    max-height: 48px;
    opacity: 1;
    margin-top: 8px;
}

.page-home .date-label {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.page-home .date-range-divider {
    display: none;
}

.page-home .btn-search {
    min-height: 52px;
    margin-top: 2px;
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.2s var(--home-ease), filter 0.2s ease;
}

.page-home .btn-search:hover,
.page-home .btn-search:focus-visible {
    transform: none;
    box-shadow: none;
    filter: brightness(1.05);
}

.page-home .btn-search:active {
    transform: scale(0.98);
}

/* Sections */
.page-home .home-section {
    padding: var(--home-section-y) var(--home-pad-x);
}

.page-home .home-section__title {
    font-family: var(--font-nav);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.page-home .home-section__title--sm {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.page-home .home-section__subtitle {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.page-home .home-section__head {
    margin-bottom: 4px;
}

.page-home .home-section__cta {
    margin-top: 16px;
    min-height: 48px;
    border-radius: var(--home-radius);
    text-transform: none;
    font-weight: 600;
}

/* Benefit pills */
.page-home .benefit-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .benefit-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    transition: transform 0.25s var(--home-ease), border-color 0.25s ease;
}

.page-home .benefit-pill:active {
    transform: scale(0.985);
    border-color: rgba(164, 255, 0, 0.25);
}

.page-home .benefit-pill__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(164, 255, 0, 0.1);
    color: var(--color-accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Fleet preview */
.page-home .fleet-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-card-gap);
}

.page-home .fleet-preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s var(--home-ease), background-color 0.25s ease;
}

.page-home .fleet-preview-card:active {
    border-color: rgba(164, 255, 0, 0.3);
    transform: scale(0.985);
}

.page-home .fleet-preview-card__image {
    width: 46%;
    min-width: 132px;
    max-width: 188px;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    box-sizing: border-box;
}

.page-home .fleet-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.page-home .fleet-preview-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
}

.page-home .fleet-preview-card__category {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.page-home .fleet-preview-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-primary);
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: break-word;
}

/* Steps */
.page-home .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--home-card-gap);
}

.page-home .step-card {
    padding: 14px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    transition: transform 0.25s var(--home-ease), border-color 0.25s ease;
}

.page-home .step-card:active {
    transform: scale(0.985);
    border-color: rgba(164, 255, 0, 0.22);
}

.page-home .step-card__num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(164, 255, 0, 0.12);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-home .step-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--color-text-primary);
    text-transform: none;
    letter-spacing: 0;
}

.page-home .step-card__text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Why cards */
.page-home .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-card-gap);
}

.page-home .why-card {
    padding: 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .why-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text-primary);
    text-transform: none;
}

.page-home .why-card__text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Support */
.page-home .support-card {
    padding: 18px;
    background: linear-gradient(135deg, rgba(164, 255, 0, 0.08) 0%, var(--home-surface) 60%);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .support-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: none;
}

.page-home .support-card__text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0 0 12px;
}

.page-home .support-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

/* Testimonials */
.page-home .testimonial-card {
    padding: 18px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .testimonial-stars {
    color: var(--color-accent);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-home .testimonial-slider {
    position: relative;
    min-height: 118px;
}

.page-home .home-testimonial {
    display: none;
}

.page-home .home-testimonial.active {
    display: block;
}

.page-home .home-testimonial__quote {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    font-style: italic;
}

.page-home .home-testimonial__author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 0;
}

.page-home .testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.page-home .pagination-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.page-home .pagination-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Contact CTA */
.page-home .contact-cta-card {
    padding: 20px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    text-align: center;
}

.page-home .contact-cta-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: none;
}

.page-home .contact-cta-card__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
}

.page-home .contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.page-home .contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-primary);
    background: #1c1c1c;
    border: 1px solid var(--home-border);
    text-transform: none;
}

.page-home .contact-cta-btn--primary {
    background: var(--color-accent);
    color: #0a0a0a;
    border-color: var(--color-accent);
}

.page-home .contact-cta-btn--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #fff;
}

.page-home .contact-cta-hours {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0 0 10px;
}

.page-home .contact-cta-details {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

/* Blog */
.page-home .home-blog-grid {
    display: flex;
    flex-direction: column;
    gap: var(--home-card-gap);
}

.page-home .home-blog-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    overflow: hidden;
}

.page-home .home-blog-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

.page-home .home-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .home-blog-card__body {
    padding: 14px 16px 16px;
}

.page-home .home-blog-card__date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.page-home .home-blog-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.35;
    text-transform: none;
}

.page-home .home-blog-card__title a {
    color: var(--color-text-primary);
    text-decoration: none;
}

.page-home .home-blog-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Help links */
.page-home .help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-home .help-link {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

/* Footer compact */
.page-home .footer--home .footer-newsletter--compact {
    padding: 32px var(--home-pad-x);
    border-top: 1px solid var(--home-border);
    background: #0e0e0e;
}

.page-home .footer-newsletter__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

.page-home .footer-newsletter__subtitle {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0 0 14px;
    line-height: 1.5;
}

.page-home .footer-newsletter-form--compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.page-home .footer-newsletter-form--compact .footer-newsletter-input {
    min-height: 48px;
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
}

.page-home .footer-newsletter-form--compact .btn {
    min-height: 48px;
    border-radius: var(--home-radius);
    text-transform: none;
    font-weight: 600;
}

.page-home .newsletter-consent {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
    gap: 10px;
    margin-bottom: 8px;
}

.page-home .newsletter-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.page-home .footer-privacy-link {
    font-size: 0.8125rem;
    margin: 0;
}

.page-home .footer-privacy-link a {
    color: var(--color-accent);
}

.page-home .footer-bottom--compact {
    padding: 24px var(--home-pad-x) calc(24px + env(safe-area-inset-bottom, 0px));
    text-align: center;
}

.page-home .footer-logo--sm .footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.page-home .footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 16px;
}

.page-home .footer-links-row a {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    text-decoration: none;
}

.page-home .footer-credits {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.page-home .footer-credits p {
    margin: 0 0 4px;
}

.page-home .footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

.page-home.has-mobile-actions {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes homeGlowPulse {
    from { opacity: 0.85; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .hero-eyebrow,
    .page-home .hero-title,
    .page-home .hero-subtitle,
    .page-home .hero-badges,
    .page-home .booking-card,
    .page-home .hero-booking__bg {
        animation: none !important;
    }

    .page-home .booking-form select,
    .page-home .booking-form input[type="date"],
    .page-home .btn-search,
    .page-home #dropoffLocationGroup,
    .page-home .booking-min-rental-hint,
    .page-home .custom-select__trigger,
    .page-home .custom-select__panel,
    .page-home .custom-select__option,
    .page-home .custom-select__chevron,
    .page-home .fleet-preview-card,
    .page-home .benefit-pill,
    .page-home .step-card {
        transition: none !important;
    }
}

} /* end mobile home */

/* Small phones */
@media (max-width: 380px) {
    .page-home .date-range-inputs {
        grid-template-columns: 1fr;
    }

    .page-home .date-range-divider {
        display: none;
    }

    .page-home .steps-grid {
        grid-template-columns: 1fr;
    }

    .page-home .fleet-preview-card {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
    }

    .page-home .fleet-preview-card__image {
        width: 100%;
        min-width: 0;
        max-width: none;
        aspect-ratio: 16 / 8;
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .page-home .user-center-social-bar,
    .page-home .mobile-quick-actions {
        display: none !important;
    }
}
