/* ======================================================
   YOUFI (يوفي) — Landing Page
   Custom CSS · No Tailwind · No Build Tools
   ====================================================== */

/* --- 1. Custom Properties --- */
:root {
    --espresso: #4D2516;
    --taupe: #95705B;
    --latte: #D7B695;
    --warm-white: #FBF7F2;
    --dark-roast: #2C1810;
    --warm-brown: #6B4930;
    --muted-tan: #B8A090;
    --parchment: #F5EDE4;
    --cream: #FFFDF9;
    --success: #4CAF50;
    --error: #E53935;

    --shadow-sm: 0 1px 3px rgba(77,37,22,0.08);
    --shadow-md: 0 4px 16px rgba(77,37,22,0.1);
    --shadow-lg: 0 8px 32px rgba(77,37,22,0.14);
    --shadow-card: 0 4px 24px rgba(77,37,22,0.08);

    --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
    --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem,     0.9rem + 0.5vw,  1.125rem);
    --text-lg:   clamp(1.125rem, 1rem + 0.6vw,    1.333rem);
    --text-xl:   clamp(1.333rem, 1.1rem + 1.1vw,  1.777rem);
    --text-2xl:  clamp(1.777rem, 1.4rem + 1.8vw,  2.369rem);
    --text-3xl:  clamp(2.369rem, 1.8rem + 2.8vw,  3.157rem);
    --text-hero: clamp(2.8rem,   2rem + 3.8vw,    4.5rem);

    --space-xs:  clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    --space-sm:  clamp(0.5rem,  0.4rem + 0.5vw,  0.75rem);
    --space-md:  clamp(1rem,    0.8rem + 1vw,     1.5rem);
    --space-lg:  clamp(1.5rem,  1.2rem + 1.5vw,   2.5rem);
    --space-xl:  clamp(2.5rem,  2rem + 2.5vw,     4rem);
    --space-2xl: clamp(4rem,    3rem + 4vw,       6rem);
    --space-3xl: clamp(6rem,    4rem + 6vw,       8rem);

    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-pill: 50px;

    --z-base:     0;
    --z-dropdown: 100;
    --z-sticky:   200;
    --z-overlay:  300;
    --z-drawer:   400;
    --z-toast:    500;

    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast:   200ms var(--ease-out-quint);
    --transition-base:   300ms var(--ease-out-quint);
    --transition-slow:   500ms var(--ease-out-quint);
    --transition-reveal: 700ms var(--ease-out-quint);
}

/* --- 2. Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--warm-white);
    color: var(--warm-brown);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

[x-cloak] { display: none !important; }

:focus-visible {
    outline: 2px solid var(--latte);
    outline-offset: 3px;
}

section[id] {
    scroll-margin-top: 80px;
}

/* --- 3. Typography --- */
.lang-ar {
    font-family: 'Thmanyah Sans', 'Segoe UI', Tahoma, sans-serif;
}

.lang-en {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

.lang-ar h1, .lang-ar h2, .lang-ar h3 {
    font-family: 'Thmanyah Serif Display', 'Thmanyah Sans', serif;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
}

.section-heading {
    font-size: var(--text-2xl);
    color: var(--dark-roast);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--warm-brown);
    text-align: center;
    line-height: 1.65;
    max-width: 600px;
    margin-inline: auto;
}

/* --- 4. Layout --- */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.section {
    padding-block: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.section--warm-white  { background: var(--warm-white); }
.section--parchment   { background: var(--parchment); }
.section--dark        { background: var(--espresso); color: var(--cream); }
.section--dark-roast  { background: var(--dark-roast); color: var(--cream); }

.section--dark .section-heading  { color: var(--cream); }
.section--dark .section-subtitle { color: var(--latte); }

.section__cta {
    margin-top: var(--space-lg);
    text-align: center;
}

/* --- 5. Components — Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-base);
    white-space: nowrap;
    transition: background var(--transition-fast), color var(--transition-fast), transform 150ms ease, box-shadow var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover  { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--latte); outline-offset: 3px; }

.btn--primary {
    background: var(--espresso);
    color: var(--cream);
}
.btn--primary:hover { background: var(--warm-brown); }

.btn--primary-dark {
    background: var(--latte);
    color: var(--espresso);
}
.btn--primary-dark:hover { background: #e2c5a5; }

.btn--outline-dark {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn--full { width: 100%; }

/* --- 6. Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding-block: var(--space-sm);
    color: var(--cream);
    transition: background-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.navbar.is-scrolled {
    background-color: var(--warm-white);
    box-shadow: var(--shadow-sm);
    color: var(--dark-roast);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar__logo img {
    height: 42px;
    width: auto;
}

.navbar__logo-hero {
    filter: brightness(0) invert(1);
}

.navbar.is-scrolled .navbar__logo-hero { display: none; }
.navbar:not(.is-scrolled) .navbar__logo-scrolled { display: none; }

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    opacity: 0.75;
    cursor: pointer;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover { opacity: 1; }

.nav-link.is-active {
    opacity: 1;
    font-weight: 600;
}

.navbar.is-scrolled .nav-link.is-active {
    color: var(--espresso);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.lang-toggle {
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

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

.navbar.is-scrolled .lang-toggle {
    background: var(--parchment);
    border-color: var(--latte);
    color: var(--espresso);
}

.navbar.is-scrolled .lang-toggle:hover {
    background: var(--latte);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
}

.navbar__hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.navbar__hamburger-x {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 300;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: var(--space-sm) var(--space-md) var(--space-md);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(77,37,22,0.06);
    z-index: var(--z-dropdown);
}

.mobile-menu__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--dark-roast);
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
    background: rgba(77,37,22,0.06);
}

.mobile-menu__divider {
    height: 1px;
    background: var(--latte);
    opacity: 0.4;
    margin: var(--space-sm) var(--space-md);
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    color: var(--warm-brown);
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mobile-menu__lang:hover {
    background: rgba(77,37,22,0.06);
}

.mobile-menu__lang-label {
    font-size: var(--text-sm);
}

.mobile-menu__lang-value {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--espresso);
    background: var(--parchment);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}

/* --- 7. Hero --- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, var(--espresso) 0%, var(--warm-brown) 80%, #7a5a3e 100%);
    padding: calc(var(--space-3xl) + 40px) var(--space-md) var(--space-3xl);
    text-align: center;
    color: var(--cream);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(215,182,149,0.14), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(215,182,149,0.08), transparent 65%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(215,182,149,0.15);
    border: 1px solid rgba(215,182,149,0.25);
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    color: var(--latte);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.01em;
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--latte);
    line-height: 1.7;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* --- 8. Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--parchment);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--espresso);
}

.feature-card__icon svg { width: 26px; height: 26px; }

.feature-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark-roast);
    margin-bottom: var(--space-sm);
}

.feature-card__desc {
    font-size: var(--text-base);
    color: var(--warm-brown);
    line-height: 1.65;
}

/* --- 9. How It Works --- */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 24px;
    inset-inline: 18%;
    height: 0;
    border-top: 2px dashed var(--latte);
    z-index: 0;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--espresso);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.step__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    color: var(--taupe);
}

.step__icon svg { width: 100%; height: 100%; }

.step__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark-roast);
    margin-bottom: var(--space-xs);
}

.step__desc {
    font-size: var(--text-base);
    color: var(--warm-brown);
    line-height: 1.65;
}

/* --- 10. Benefits (For Restaurants / Drivers) --- */
.benefits {
    max-width: 520px;
    margin: var(--space-lg) auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: start;
}

.benefit__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 3px;
    color: var(--latte);
}

.benefit__icon svg { width: 100%; height: 100%; }

.section--warm-white .benefit__icon { color: var(--espresso); }
.section--warm-white .benefit__text { color: var(--warm-brown); }

.benefit__text {
    font-size: var(--text-base);
    line-height: 1.65;
}

/* --- 11. Forms --- */
.form-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-header .section-heading {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.form-header .section-subtitle {
    font-size: var(--text-base);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--warm-brown);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 1.5px solid var(--latte);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--dark-roast);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder { color: var(--muted-tan); }

.form-input:focus,
.form-select:focus {
    border-color: var(--espresso);
    box-shadow: 0 0 0 3px rgba(77,37,22,0.08);
}

.form-input.has-error,
.form-select.has-error {
    border-color: var(--error);
}

.form-error {
    font-size: var(--text-xs);
    color: var(--error);
    margin-top: var(--space-xs);
    min-height: 0;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2395705B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    padding-inline-end: 2.5rem;
}

[dir="rtl"] .form-select { background-position: left 1rem center; }
[dir="ltr"] .form-select { background-position: right 1rem center; }

.form-submit {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--espresso);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast), transform 150ms ease;
}

.form-submit:hover  { background: var(--warm-brown); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.vehicle-options {
    display: flex;
    gap: var(--space-sm);
}

.vehicle-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-sm);
    background: white;
    border: 1.5px solid var(--latte);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    text-align: center;
}

.vehicle-option:hover { border-color: var(--taupe); }

.vehicle-option.is-selected {
    border-color: var(--espresso);
    background: var(--parchment);
}

.vehicle-option__icon {
    width: 44px;
    height: 44px;
    opacity: 0.55;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.vehicle-option__icon img { width: 100%; height: 100%; object-fit: contain; }

.vehicle-option.is-selected .vehicle-option__icon { opacity: 1; transform: scale(1.1); }

.vehicle-option__label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--warm-brown);
}

.license-options {
    display: flex;
    gap: var(--space-sm);
}

.license-option {
    flex: 1;
    padding: 0.75rem 1rem;
    background: white;
    border: 1.5px solid var(--latte);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--warm-brown);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.license-option:hover { border-color: var(--taupe); }

.license-option.is-selected {
    border-color: var(--espresso);
    background: var(--parchment);
    color: var(--espresso);
}

.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.form-success__icon { font-size: 3.5rem; margin-bottom: var(--space-md); }

.form-success__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: var(--space-sm);
}

.form-success__desc {
    color: var(--warm-brown);
    font-size: var(--text-base);
}

/* --- 12. Footer --- */
.footer {
    background: var(--dark-roast);
    color: var(--cream);
    padding-block: var(--space-2xl) var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer__logo {
    height: 48px;
    width: auto;
    margin-bottom: var(--space-sm);
    filter: brightness(0) invert(1);
}

.footer__brand-desc {
    color: var(--muted-tan);
    line-height: 1.75;
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
}

.footer__heading {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--latte);
    margin-bottom: var(--space-md);
}

.footer__link {
    display: block;
    color: rgba(255,255,255,0.75);
    padding-block: var(--space-xs);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.footer__link:hover { color: var(--latte); }

.footer__social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--latte);
    color: var(--espresso);
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--muted-tan);
}

.footer__tagline {
    font-style: italic;
    color: var(--latte);
}

/* --- 13. Decorative --- */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-divider--top {
    bottom: auto;
    top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

[dir="rtl"] .wave-divider svg {
    transform: scaleX(-1);
}

.blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(215,182,149,0.12), rgba(149,112,91,0.06));
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.blob--1 {
    width: clamp(200px, 28vw, 420px);
    height: clamp(200px, 28vw, 420px);
    top: -60px;
    right: -40px;
}

.blob--2 {
    width: clamp(160px, 22vw, 320px);
    height: clamp(160px, 22vw, 320px);
    bottom: 120px;
    left: -50px;
    border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%;
}

.blob--form {
    width: clamp(180px, 25vw, 380px);
    height: clamp(180px, 25vw, 380px);
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    filter: blur(50px);
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(215,182,149,0.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* --- 14. Animations --- */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.js-loaded .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* --- 15. Responsive --- */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .navbar__links { display: none; }
    .navbar__actions { display: none; }
    .navbar__hamburger { display: flex; }

    .hero {
        min-height: auto;
        padding: 120px var(--space-md) 100px;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .steps::before { display: none; }

    .step { max-width: 360px; }

    .form-grid { grid-template-columns: 1fr; }
    .form-field--full { grid-column: 1; }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social { justify-content: center; }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .benefits { max-width: 100%; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }

    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; }

    .vehicle-options { flex-direction: column; }

    .form-card { padding: var(--space-lg); }
}

/* --- 16. Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .js-loaded .reveal {
        opacity: 1;
        transform: none;
    }

    html { scroll-behavior: auto; }
}
