:root{
    --bg: #eef2f5;
    --bg-soft: #f8fafb;
    --surface: #ffffff;
    --surface-2: #f4f7f9;
    --surface-3: #e9eef3;
    --text: #16212b;
    --text-soft: #405161;
    --muted: #607285;
    --line: #d7e0e8;
    --line-strong: #b7c5d1;
    --primary: #123b5d;
    --primary-2: #0d2c45;
    --primary-soft: #e4edf4;
    --accent: #a8844f;
    --accent-soft: #f4ede2;
    --success: #1f7a55;
    --focus: #0f5e9c;
    --shadow-sm: 0 10px 28px rgba(16, 42, 67, .06);
    --shadow: 0 18px 42px rgba(16, 42, 67, .10);
    --radius: 20px;
    --radius-sm: 14px;
    --container: 1200px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top right, rgba(168,132,79,.08), transparent 30%),
        linear-gradient(180deg, #f8fafb 0%, #eef2f5 100%);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

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

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

::selection{
    background:rgba(18,59,93,.18);
    color:var(--text);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:3px solid rgba(15,94,156,.18);
    outline-offset:2px;
}

.container{
    width:min(100% - 32px, var(--container));
    margin-inline:auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter: blur(14px);
    background:rgba(248,250,251,.9);
    border-bottom:1px solid rgba(215,224,232,.92);
    box-shadow:0 8px 24px rgba(16,42,67,.04);
}

.header-inner,
.header-bar{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.site-brand,
.brand{
    font-weight:800;
    letter-spacing:.02em;
    font-size:1.05rem;
    color:var(--primary-2);
}

.brand-lockup{
    display:grid;
    gap:4px;
    min-width:0;
}

.brand-mark{
    font-size:1.05rem;
    line-height:1.1;
}

.brand-note{
    font-size:.78rem;
    color:var(--muted);
    max-width:32ch;
    line-height:1.35;
}

.menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 14px;
    border:1px solid var(--line-strong);
    border-radius:999px;
    background:var(--surface);
    color:var(--primary-2);
    font-weight:700;
}

.header-tools{
    display:flex;
    align-items:center;
    gap:12px;
}

.lang-switch{
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:4px;
    border-radius:999px;
    background:var(--surface);
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
}

.lang-switch a{
    min-width:42px;
    min-height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 10px;
    border-radius:999px;
    color:var(--text-soft);
    font-weight:700;
    font-size:.86rem;
}

.lang-switch a.is-active{
    background:var(--primary-soft);
    color:var(--primary-2);
}

.site-nav{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
}

.site-nav a{
    color:var(--text-soft);
    font-weight:600;
    padding:10px 12px;
    border-radius:999px;
    transition:background-color .2s ease,color .2s ease, border-color .2s ease;
    border:1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active{
    background:var(--primary-soft);
    color:var(--primary-2);
    border-color:rgba(18,59,93,.12);
}

.site-main{
    min-height:60vh;
}

.page-section{
    padding:42px 0;
}

.page-section.alt{
    background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(244,247,249,.88));
    border-block:1px solid rgba(215,224,232,.84);
}

.page-hero{
    padding:40px 0 28px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:center;
}

.hero-copy{
    display:grid;
    gap:16px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:max-content;
    max-width:100%;
    padding:8px 12px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary-2);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.02em;
}

h1,h2,h3,h4{
    margin:0;
    line-height:1.15;
    color:var(--text);
}

h1{
    font-size:clamp(2rem, 4vw, 3.4rem);
    letter-spacing:-.03em;
}

h2{
    font-size:clamp(1.4rem, 2.8vw, 2.1rem);
    letter-spacing:-.02em;
}

h3{
    font-size:1.05rem;
    letter-spacing:-.01em;
}

p{
    margin:0;
}

.hero-intro{
    font-size:1.08rem;
    color:var(--text-soft);
}

.hero-summary{
    color:var(--muted);
    max-width:68ch;
}

.hero-actions,
.card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
}

.btn{
    appearance:none;
    border:1px solid transparent;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    font-weight:700;
    transition:transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn-primary{
    background:linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 100%);
    color:#fff;
    box-shadow:0 14px 26px rgba(18,59,93,.18);
}

.btn-secondary{
    background:var(--surface);
    color:var(--text);
    border-color:var(--line-strong);
    box-shadow:var(--shadow);
}

.btn-secondary:hover{
    background:var(--surface-2);
    color:var(--primary-2);
}

.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:16px;
    margin-bottom:20px;
}

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

.card{
    background:var(--surface);
    border:1px solid rgba(215,224,232,.95);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    min-width:0;
}

.card-body{
    padding:18px;
    display:grid;
    gap:12px;
}

.card-body p{
    color:var(--muted);
}

.card-media{
    position:relative;
    width:100%;
    aspect-ratio:16 / 10;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(18,59,93,.06), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(244,247,249,.98) 100%);
    border-bottom:1px solid rgba(215,224,232,.9);
}

.card-media img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    padding:14px;
}

.hero-media{
    position:relative;
    width:100%;
    aspect-ratio:16 / 10;
    overflow:hidden;
    border-radius:28px;
    background:
        radial-gradient(circle at top right, rgba(18,59,93,.12), transparent 38%),
        radial-gradient(circle at bottom left, rgba(168,132,79,.10), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(244,247,249,.98) 100%);
    border:1px solid rgba(215,224,232,.95);
    box-shadow:var(--shadow);
}

.hero-media img,
.hero-image{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    padding:18px;
}

.card-placeholder,
.hero-placeholder{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    text-align:center;
    padding:24px;
    color:var(--text-soft);
    font-weight:700;
    background:
        linear-gradient(135deg, rgba(18,59,93,.08), rgba(168,132,79,.10));
}

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

.feature-card{
    background:#fff;
    border:1px solid rgba(215,224,232,.95);
    border-radius:18px;
    box-shadow:var(--shadow);
}

.stack-copy{
    display:grid;
    gap:14px;
}

.faq-list{
    display:grid;
    gap:16px;
}

.faq-item{
    background:#fff;
    border:1px solid rgba(215,224,232,.95);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:20px;
    display:grid;
    gap:10px;
}

.faq-item p{
    color:var(--muted);
}

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

.article-card,
.prose-card{
    background:#fff;
    border:1px solid rgba(215,224,232,.95);
    border-radius:20px;
    box-shadow:var(--shadow);
}

.article-card__body,
.prose-card{
    padding:22px;
}

.article-card__body{
    display:grid;
    gap:14px;
}

.article-card__body p,
.prose-card p{
    color:var(--muted);
}

.feature-card__body{
    padding:18px;
}

.feature-card__body p{
    color:var(--text-soft);
}

.tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tag-chip{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:0 12px;
    border-radius:999px;
    background:var(--surface-2);
    color:var(--primary);
    border:1px solid rgba(183,197,209,.9);
    font-weight:600;
    font-size:.92rem;
}

.form-card{
    background:#fff;
    border:1px solid rgba(226,232,240,.95);
    border-radius:24px;
    box-shadow:var(--shadow);
    padding:24px;
    display:grid;
    gap:22px;
}

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

.form-field{
    display:grid;
    gap:8px;
}

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

.form-field label{
    font-size:.92rem;
    font-weight:700;
    color:#334155;
}

.form-field input,
.form-field textarea{
    width:100%;
    border:1px solid #cbd5e1;
    border-radius:14px;
    padding:12px 14px;
    font:inherit;
    color:#0f172a;
    background:#fff;
}

.form-field input:focus,
.form-field textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.form-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.booking-summary{
    margin-bottom:22px;
}

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

.spec-card{
    background:#fff;
    border:1px solid rgba(215,224,232,.95);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:16px;
    display:grid;
    gap:8px;
}

.spec-card strong{
    font-size:.88rem;
    color:var(--text-soft);
}

.spec-card span{
    font-size:1rem;
    font-weight:700;
    color:var(--text);
}

.spec-list{
    display:grid;
    gap:8px;
}

.spec-list span{
    color:var(--text-soft);
    font-size:.95rem;
}

.empty-state{
    background:#fff;
    border:1px solid rgba(215,224,232,.95);
    border-radius:24px;
    box-shadow:var(--shadow);
    padding:32px 24px;
    display:grid;
    gap:12px;
    text-align:center;
}

.empty-state p{
    color:var(--muted);
}

.cta-section{
    padding-top:18px;
    padding-bottom:54px;
}

.cta-box{
    background:
        radial-gradient(circle at top right, rgba(168,132,79,.18), transparent 30%),
        linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 100%);
    color:#fff;
    border-radius:28px;
    padding:28px;
    box-shadow:0 18px 38px rgba(15,23,42,.2);
    display:grid;
    gap:14px;
}

.cta-box h2{
    color:#fff;
}

.cta-box p{
    color:rgba(255,255,255,.78);
    max-width:70ch;
}

.cta-box .btn-secondary{
    background:rgba(255,255,255,.12);
    color:#fff;
    border-color:rgba(255,255,255,.18);
    box-shadow:none;
}

.site-footer{
    border-top:1px solid rgba(215,224,232,.9);
    background:rgba(255,255,255,.88);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr 1fr;
    gap:24px;
    padding:28px 0;
}

.footer-col{
    display:grid;
    gap:12px;
    align-content:start;
}

.footer-copy,
.footer-meta{
    color:var(--muted);
}

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

.footer-list a{
    color:var(--text-soft);
    font-weight:600;
}

.footer-list a:hover{
    color:var(--primary-2);
}

.footer-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.vehicle-grid .card,
.category-grid .card,
.location-grid .card,
.agency-grid .card{
    height:100%;
}

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

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

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

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

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

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

    .header-inner{
        min-height:auto;
        padding:12px 0;
        align-items:flex-start;
        flex-direction:column;
    }

    .header-bar{
        min-height:auto;
        padding:12px 0;
        align-items:center;
        flex-wrap:wrap;
    }

    .site-nav{
        width:100%;
    }

    .brand-note{
        max-width:none;
    }

    .header-tools{
        width:100%;
        justify-content:space-between;
    }

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

@media (max-width: 700px){
    .container{
        width:min(100% - 24px, var(--container));
    }

    .page-section{
        padding:30px 0;
    }

    .page-hero{
        padding:22px 0 16px;
    }

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

    .card-media{
        aspect-ratio:16 / 11;
    }

    .hero-media{
        aspect-ratio:16 / 11;
    }

    .cta-box{
        padding:22px;
    }

    .card-body{
        padding:16px;
    }

    .form-card{
        padding:18px;
    }

    .header-tools{
        gap:10px;
    }

    .lang-switch{
        width:100%;
        justify-content:center;
    }
}

@media (max-width: 480px){
    .btn{
        width:100%;
    }

    .hero-actions,
    .card-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .site-nav{
        gap:8px;
    }

    .site-nav a{
        padding:9px 10px;
        font-size:.95rem;
    }

    .brand-note{
        font-size:.74rem;
    }
}

@media (prefers-reduced-motion: reduce){
    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
    }
}
