/* =====================================================================
   GERGURI IMPORT/EXPORT — Automobiler Bilhandel
   Frontend stylesheet
   ===================================================================== */

:root {
    --ink:        #08080A;
    --ink-2:      #0D0E11;
    --panel:      #121317;
    --panel-2:    #171920;
    --line:       rgba(255, 255, 255, .085);
    --line-2:     rgba(255, 255, 255, .14);
    --white:      #F5F6F8;
    --silver:     #C4C8CF;
    --muted:      #888E99;
    --red:        #D2122E;
    --red-2:      #F0233D;
    --red-soft:   rgba(210, 18, 46, .14);
    --radius:     14px;
    --radius-lg:  20px;
    --shadow:     0 18px 50px rgba(0, 0, 0, .55);
    --maxw:       1240px;
    --ease:       cubic-bezier(.22, .61, .36, 1);
    --chrome:     linear-gradient(180deg, #FFFFFF 0%, #DCDFE4 42%, #9BA1AB 72%, #E9ECEF 100%);
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--ink);
    color: var(--silver);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
    font-family: 'Saira', 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.12;
    margin: 0 0 .5em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
p  { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background:
    radial-gradient(1200px 500px at 15% -10%, rgba(210,18,46,.08), transparent 60%),
    var(--ink-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Saira', sans-serif;
    font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--red-2); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); display: block; }

.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head p { color: var(--muted); font-size: 1.03rem; margin: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.chrome {
    background: var(--chrome);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.accent { color: var(--red-2); }

/* ---------- Buttons ------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
    font-family: 'Saira', sans-serif; font-weight: 600; font-size: .95rem; letter-spacing: .02em;
    cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
    background: linear-gradient(135deg, var(--red-2), var(--red));
    color: #fff; box-shadow: 0 10px 26px rgba(210, 18, 46, .32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(210, 18, 46, .42); }
.btn--wa { background: #1FB855; color: #fff; box-shadow: 0 10px 26px rgba(31, 184, 85, .26); }
.btn--wa:hover { background: #23c95e; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--white); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: var(--silver); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.btn--light { background: var(--white); color: #101114; }
.btn--light:hover { transform: translateY(-2px); background: #fff; }
.btn--sm { padding: 10px 18px; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------- Topbar -------------------------------------------------- */
.topbar {
    background: #050506;
    border-bottom: 1px solid var(--line);
    font-size: .82rem; color: var(--muted);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 40px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--red-2); }
.topbar-item:hover { color: var(--white); }
.topbar-left .topbar-item:nth-child(3) { display: none; }

.langswitch { display: flex; align-items: center; gap: 2px; }
.langswitch a {
    padding: 3px 9px; border-radius: 6px; font-weight: 600; font-size: .76rem;
    letter-spacing: .06em; color: var(--muted); transition: .2s;
}
.langswitch a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.langswitch a.is-active { color: #fff; background: var(--red); }

/* ---------- Header -------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(8, 8, 10, .82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background .3s;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 50px; width: auto; }

.mainnav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.mainnav a {
    position: relative; padding: 10px 15px; border-radius: 8px;
    font-family: 'Saira', sans-serif; font-weight: 500; font-size: .96rem; color: var(--silver);
    transition: color .2s;
}
.mainnav a:hover { color: var(--white); }
.mainnav a.is-active { color: var(--white); }
.mainnav a.is-active::after {
    content: ''; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
    background: var(--red); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
    display: none; background: none; border: 1px solid var(--line-2); color: var(--white);
    width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

.mobilenav {
    display: none; position: fixed; inset: 0; z-index: 90;
    background: rgba(6, 6, 8, .97); backdrop-filter: blur(8px);
    padding: 26px; flex-direction: column;
}
.mobilenav.is-open { display: flex; }
.mobilenav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobilenav-top img { height: 44px; }
.mobilenav a.mlink {
    font-family: 'Saira', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--white);
    padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mobilenav .mobile-actions { margin-top: auto; display: grid; gap: 12px; }
.mobilenav .langswitch { margin-top: 24px; justify-content: center; gap: 8px; }
.mobilenav .langswitch a { padding: 9px 20px; border: 1px solid var(--line-2); }

/* ---------- Hero ---------------------------------------------------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(6,6,8,.94) 0%, rgba(6,6,8,.74) 45%, rgba(6,6,8,.2) 100%),
        linear-gradient(180deg, rgba(6,6,8,.7) 0%, transparent 35%, rgba(8,8,10,1) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.hero-inner { max-width: 780px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .line2 { display: block; }
.hero-sub { font-size: 1.09rem; color: var(--silver); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 15px; border: 1px solid var(--line-2); border-radius: 999px;
    background: rgba(255,255,255,.04); font-size: .82rem; color: var(--silver);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--red-2); }

/* ---------- USP strip ----------------------------------------------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp {
    background: linear-gradient(160deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
    transition: .3s var(--ease);
}
.usp:hover { border-color: rgba(210,18,46,.45); transform: translateY(-4px); }
.usp-ico {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: var(--red-soft); color: var(--red-2); margin-bottom: 16px;
}
.usp-ico svg { width: 23px; height: 23px; }
.usp h3 { font-size: 1.04rem; margin-bottom: 6px; }
.usp p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Car grid ------------------------------------------------ */
.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.car-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; display: flex; flex-direction: column;
    transition: .32s var(--ease);
}
.car-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.car-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0E0F12; }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.car-card:hover .car-thumb img { transform: scale(1.055); }
.car-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 6px 13px; border-radius: 999px; font-size: .72rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; font-family: 'Saira', sans-serif;
    backdrop-filter: blur(6px);
}
.badge-available { background: rgba(31,184,85,.9); color: #fff; }
.badge-reserved  { background: rgba(232,152,20,.92); color: #201400; }
.badge-sold      { background: rgba(20,20,24,.86); color: #C4C8CF; border: 1px solid var(--line-2); }
.car-vat {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    padding: 6px 12px; border-radius: 999px; font-size: .7rem; font-weight: 600;
    background: rgba(8,8,10,.72); color: var(--silver); border: 1px solid var(--line-2);
    backdrop-filter: blur(6px);
}
.car-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.car-body h3 { margin-bottom: 3px; font-size: 1.22rem; }
.car-variant {
    color: var(--muted); font-size: .9rem; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 1; line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.spec { display: flex; align-items: center; gap: 8px; font-size: .87rem; color: var(--silver); }
.spec svg { width: 16px; height: 16px; color: var(--red-2); flex: none; }
.car-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price-main { font-family: 'Saira', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.price-sub { font-size: .77rem; color: var(--muted); margin-top: 2px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red-2); font-weight: 600; font-size: .9rem; font-family: 'Saira', sans-serif; }
.card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.car-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Filters -------------------------------------------------- */
.filters {
    display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px; margin-bottom: 26px;
}
.field { position: relative; display: flex; align-items: center; }
.field svg { position: absolute; left: 15px; width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.filters input[type=text], .filters select {
    width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--white);
    border-radius: 10px; padding: 13px 16px; font-size: .93rem; outline: none; transition: .2s;
    appearance: none; -webkit-appearance: none;
}
.filters input[type=text] { padding-left: 44px; }
.filters select { padding-right: 40px; cursor: pointer; min-width: 190px; }
.filters .sel { position: relative; }
.filters .sel::after {
    content: ''; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.filters input:focus, .filters select:focus { border-color: var(--red); }
.result-count { color: var(--muted); font-size: .93rem; margin-bottom: 22px; }
.result-count strong { color: var(--white); }

.empty-state {
    text-align: center; padding: 70px 24px; border: 1px dashed var(--line-2); border-radius: var(--radius-lg);
    background: var(--panel);
}
.empty-state svg { width: 44px; height: 44px; color: var(--muted); margin: 0 auto 18px; }

/* ---------- Car detail ---------------------------------------------- */
.backlink { display: inline-flex; align-items: center; gap: 9px; color: var(--silver); font-weight: 500; margin-bottom: 26px; font-family: 'Saira', sans-serif; }
.backlink svg { width: 18px; height: 18px; color: var(--red-2); transition: transform .25s; }
.backlink:hover svg { transform: translateX(-4px); }

.detail { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
.gallery-main {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
    background: #0E0F12; aspect-ratio: 4 / 3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs button {
    padding: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer;
    background: none; aspect-ratio: 4/3; transition: .2s;
}
.gallery-thumbs button.is-active, .gallery-thumbs button:hover { border-color: var(--red); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.detail h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 6px; }
.detail-variant { color: var(--muted); font-size: 1.06rem; margin-bottom: 24px; }

.spec-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
.spec-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 15px 17px; }
.spec-card .lbl { display: flex; align-items: center; gap: 7px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.spec-card .lbl svg { width: 14px; height: 14px; color: var(--red-2); }
.spec-card .val { font-family: 'Saira', sans-serif; font-weight: 600; color: var(--white); font-size: 1.05rem; }

.pricebox {
    background: linear-gradient(160deg, rgba(210,18,46,.14), rgba(18,19,23,.9));
    border: 1px solid rgba(210,18,46,.32); border-radius: var(--radius-lg);
    padding: 24px; margin-bottom: 24px;
}
.pricebox .gross-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); }
.pricebox .gross { font-family: 'Saira', sans-serif; font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; color: #fff; line-height: 1.05; margin: 2px 0 16px; }
.pricebox .rows { border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; display: grid; gap: 9px; }
.pricebox .prow { display: flex; justify-content: space-between; gap: 16px; font-size: .93rem; }
.pricebox .prow span:first-child { color: var(--silver); }
.pricebox .prow span:last-child { font-family: 'Saira', sans-serif; font-weight: 600; color: var(--white); }
.pricebox .prow--net span:last-child { color: #6EE79A; }
.pricebox .note { font-size: .79rem; color: var(--muted); margin: 14px 0 0; line-height: 1.5; }

.detail-actions { display: grid; gap: 11px; margin-bottom: 26px; }
.detail-actions .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

.prose h2 { font-size: 1.35rem; margin-top: 30px; }
.prose p { color: var(--silver); }
.callout {
    background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--red);
    border-radius: 12px; padding: 20px 22px; margin-top: 26px;
}
.callout h4 { font-family: 'Saira', sans-serif; color: var(--white); margin: 0 0 8px; font-size: 1rem; display: flex; align-items: center; gap: 9px; }
.callout h4 svg { width: 18px; height: 18px; flex: none; color: var(--red-2); }
.callout p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.62; }

/* ---------- Services ------------------------------------------------- */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srv {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; position: relative; overflow: hidden; transition: .3s var(--ease);
}
.srv::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(400px 160px at 100% 0%, rgba(210,18,46,.16), transparent 70%);
    opacity: 0; transition: opacity .35s;
}
.srv:hover { transform: translateY(-5px); border-color: var(--line-2); }
.srv:hover::before { opacity: 1; }
.srv > * { position: relative; }
.srv-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--red-2); margin-bottom: 18px; }
.srv-ico svg { width: 25px; height: 25px; }
.srv p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Split (showroom) ---------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,6,8,.6)); }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--silver); font-size: .97rem; }
.checklist svg { width: 20px; height: 20px; color: var(--red-2); flex: none; margin-top: 2px; }

/* ---------- Værksteds-galleri ---------------------------------------- */
.gallery3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gshot { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); transition: .3s var(--ease); }
.gshot:hover { transform: translateY(-5px); border-color: var(--line-2); }
.gshot img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.gshot figcaption { padding: 18px 20px 20px; display: grid; gap: 4px; }
.gshot strong { color: var(--white); font-family: 'Saira', sans-serif; font-size: 1.04rem; }
.gshot span { color: var(--muted); font-size: .89rem; line-height: 1.55; }
@media (max-width: 860px) { .gallery3 { grid-template-columns: 1fr; } }

/* ---------- CTA band ------------------------------------------------- */
.ctaband { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.ctaband::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(700px 320px at 50% 120%, rgba(210,18,46,.28), transparent 70%);
}
.ctaband .wrap { position: relative; text-align: center; padding-top: 78px; padding-bottom: 78px; }
.ctaband p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.ctaband .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page header ---------------------------------------------- */
.pagehead { position: relative; padding: 72px 0 54px; border-bottom: 1px solid var(--line); overflow: hidden; }
.pagehead::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(800px 320px at 12% 0%, rgba(210,18,46,.14), transparent 65%);
}
.pagehead .wrap { position: relative; }
.pagehead h1 { margin-bottom: 12px; }
.pagehead p { color: var(--muted); max-width: 640px; margin: 0; }
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a:hover { color: var(--white); }

/* ---------- Contact cards -------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ccard {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px; display: flex; flex-direction: column; transition: .3s var(--ease);
}
.ccard:hover { border-color: var(--line-2); transform: translateY(-4px); }
.ccard-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--red-soft); color: var(--red-2); margin-bottom: 18px; }
.ccard-ico svg { width: 24px; height: 24px; }
.ccard .value { font-family: 'Saira', sans-serif; font-size: 1.2rem; color: var(--white); font-weight: 600; margin: 4px 0 16px; word-break: break-word; }
.ccard p { color: var(--muted); font-size: .92rem; }
.ccard .btn { margin-top: auto; }
.ccard--wa .ccard-ico { background: rgba(31,184,85,.14); color: #35D46F; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 15px 0; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .97rem; }
.info-table th { color: var(--muted); font-weight: 500; width: 240px; }
.info-table td { color: var(--white); }
.info-table a:hover { color: var(--red-2); }

/* ---------- Footer ---------------------------------------------------- */
.site-footer { background: #050506; border-top: 1px solid var(--line); padding: 66px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 46px; padding-bottom: 46px; }
.footer-logo { height: 54px; width: auto; margin-bottom: 20px; }
.site-footer p { color: var(--muted); font-size: .92rem; }
.site-footer h4 { font-family: 'Saira', sans-serif; color: var(--white); font-size: .84rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a { color: var(--muted); font-size: .94rem; transition: .2s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: grid; gap: 14px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .93rem; }
.fc-item svg { width: 17px; height: 17px; color: var(--red-2); flex: none; margin-top: 3px; }
.fc-item a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--line); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: space-between; font-size: .84rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- Floating WhatsApp ---------------------------------------- */
.fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 70;
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    background: #1FB855; color: #fff; box-shadow: 0 10px 30px rgba(31,184,85,.45);
    transition: .25s var(--ease);
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: scale(1.08); }
.fab::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(31,184,85,.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }

/* ---------- Reveal animation ----------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 1080px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .car-grid, .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .detail { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .filters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .mainnav, .header-cta .btn span { display: none; }
    .header-cta .btn { padding: 12px; }
    .burger { display: inline-flex; }
    .split { grid-template-columns: 1fr; gap: 30px; }
    .topbar-left .topbar-item:nth-child(2) { display: none; }
    .section { padding: 66px 0; }
    .hero { min-height: 540px; }
}
@media (max-width: 660px) {
    .wrap { padding: 0 18px; }
    .car-grid, .srv-grid, .usp-grid, .contact-grid { grid-template-columns: 1fr; }
    .filters { grid-template-columns: 1fr; }
    .filters select { min-width: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .spec-cards { grid-template-columns: 1fr 1fr; }
    .info-table th { width: 42%; }
    .site-header .wrap { height: 70px; }
    .brand img { height: 40px; }
    .hero-actions .btn { width: 100%; }
    .detail-actions .row2 { grid-template-columns: 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}
