:root{
    --bg:#050505;
    --bg-soft:#080808;
    --surface:#0b0b0b;
    --surface-2:#101010;
    --surface-3:#151515;
    --line:rgba(255,255,255,.085);
    --line-strong:rgba(255,255,255,.14);
    --text:#f4f4f4;
    --muted:#8a8a8a;
    --muted-2:#555;
    --red:#ef2424;
    --red-dark:#9d0808;
    --green:#49dc67;
    --radius:16px;
    --shadow:0 24px 70px rgba(0,0,0,.42);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:
        radial-gradient(circle at 50% -10%,rgba(255,255,255,.018),transparent 32%),
        var(--bg);
    color:var(--text);
    font-family:Inter,"Segoe UI",Arial,Helvetica,sans-serif;
    -webkit-font-smoothing:antialiased;
}
body.nav-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select{font:inherit}
button{cursor:pointer}
main{min-height:70vh}
[hidden]{display:none!important}

::selection{
    background:rgba(239,36,36,.28);
    color:#fff;
}

/* Header */
.topbar{
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    height:84px;
    background:rgba(5,5,5,.83);
    border-bottom:1px solid transparent;
    backdrop-filter:blur(20px);
    transition:.25s ease;
}
.topbar.is-scrolled{
    background:rgba(5,5,5,.97);
    border-bottom-color:var(--line);
    box-shadow:0 15px 45px rgba(0,0,0,.35);
}
.topbar-inner{
    width:min(94%,1540px);
    height:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:150px 1fr auto;
    align-items:center;
    gap:28px;
}
.brand{
    width:128px;
    height:70px;
    display:flex;
    align-items:center;
}
.brand img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:left center;
}
.main-nav{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}
.main-nav a{
    position:relative;
    min-height:42px;
    display:flex;
    align-items:center;
    padding:0 13px;
    border-radius:9px;
    color:#8c8c8c;
    font-size:20px;
    font-weight:700;
    letter-spacing:.06em;
    transition:.2s ease;
}
.main-nav a:hover{
    color:#fff;
    background:rgba(255,255,255,.035);
}
.main-nav a.active{
    color:#fff;
    background:rgba(239,36,36,.055);
}
.main-nav a.active::after{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:7px;
    height:1px;
    background:var(--red);
    box-shadow:0 0 12px rgba(239,36,36,.65);
}
.topbar-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
.dealer-status{
    min-height:44px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:7px 12px;
    border:1px solid var(--line);
    border-radius:10px;
    background:rgba(255,255,255,.015);
}
.status-dot{
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 14px rgba(73,220,103,.72);
}
.dealer-status small{
    display:block;
    color:#555;
    font-size:7px;
    font-weight:800;
    letter-spacing:.12em;
}
.dealer-status strong{
    display:block;
    margin-top:3px;
    color:#ddd;
    font-size:9px;
    font-weight:750;
}
.header-contact{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:0 16px;
    border:1px solid rgba(239,36,36,.35);
    border-radius:10px;
    color:#eee;
    background:rgba(239,36,36,.035);
    font-size:9px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:.2s ease;
}
.header-contact:hover,
.header-contact.active{
    border-color:var(--red);
    background:rgba(239,36,36,.09);
}
.mobile-toggle{
    display:none;
    width:42px;
    height:42px; 
    border:1px solid var(--line);
    border-radius:10px;
    background:#0b0b0b;
}
.mobile-toggle span{
    width:18px;
    height:1px;
    display:block;
    margin:4px auto;
    background:#ddd;
    transition:.2s ease;
}

/* General */
.eyebrow,
.eyebrow-text{
    color:var(--red);
    font-size:9px;
    font-weight:850;
    letter-spacing:.17em;
    text-transform:uppercase;
}
.eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
}
.eyebrow span{
    width:30px;
    height:1px;
    background:var(--red);
    box-shadow:0 0 12px rgba(239,36,36,.6);
}
.btn{
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    padding:0 20px;
    border:1px solid var(--line-strong);
    border-radius:10px;
    color:#ddd;
    font-size:9px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:.2s ease;
}
.btn-primary{
    border-color:#d62121;
    color:#fff;
    background:linear-gradient(135deg,#e62323,#9c0808);
    box-shadow:0 14px 34px rgba(239,36,36,.13);
}
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 42px rgba(239,36,36,.23);
}
.btn-ghost{
    background:rgba(255,255,255,.015);
}
.btn-ghost:hover{
    border-color:#555;
    color:#fff;
    background:rgba(255,255,255,.04);
}
.text-link{
    color:#bbb;
    font-size:9px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
    transition:.2s;
}
.text-link:hover{color:#fff}
.section-shell{
    width:min(92%,1460px);
    margin:0 auto;
    padding:100px 0 20px;
}
.section-heading{
    display:grid;
    grid-template-columns:1fr 430px;
    gap:70px;
    align-items:end;
    margin-bottom:34px;
}
.section-heading.compact{
    grid-template-columns:1fr auto;
}
.section-heading.wide{
    grid-template-columns:1fr 1fr;
    padding-bottom:34px;
    border-bottom:1px solid var(--line);
}
.section-heading h2{
    margin:10px 0 0;
    color:#f2f2f2;
    font-size:clamp(35px,4vw,58px);
    line-height:1;
    letter-spacing:-.045em;
}
.section-heading h2 em,
.page-hero h1 em,
.final-cta h2 em,
.service-process h2 em,
.about-intro h2 em,
.about-standard h2 em{
    color:#7d7d7d;
    font-style:normal;
    font-weight:500;
}
.section-heading p,
.section-heading-side p{
    max-width:620px;
    margin:0 0 12px;
    color:#777;
    font-size:11px;
    line-height:1.8;
}

/* Home hero */
.home-hero{
    position:relative;
    min-height:780px;
    padding-top:84px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 76% 46%,rgba(239,36,36,.11),transparent 18%),
        radial-gradient(circle at 74% 43%,rgba(255,255,255,.035),transparent 34%),
        linear-gradient(118deg,#030303 0%,#080808 47%,#120505 73%,#050505 100%);
}
.home-hero::before,
.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:64px 64px;
    opacity:.36;
}
.home-hero-shell{
    position:relative;
    z-index:2;
    width:min(92%,1460px);
    min-height:696px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr);
    align-items:center;
    gap:70px;
}
.home-hero-copy h1{
    max-width:840px;
    margin:25px 0 0;
    color:#f8f8f8;
    font-size:clamp(58px,6.1vw,96px);
    font-weight:850;
    line-height:.92;
    letter-spacing:-.055em;
}
.home-hero-copy h1 em{
    display:block;
    color:transparent;
    font-style:normal;
    -webkit-text-stroke:1px rgba(255,255,255,.72);
}
.home-hero-copy > p{
    max-width:700px;
    margin:30px 0 0;
    color:#959595;
    font-size:14px;
    line-height:1.85;
}
.hero-actions{
    display:flex;
    gap:11px;
    margin-top:34px;
    flex-wrap:wrap;
}
.hero-meta{
    display:flex;
    margin-top:40px;
    padding-top:24px;
    border-top:1px solid var(--line);
}
.hero-meta > div{
    min-width:150px;
    padding:0 27px;
    border-right:1px solid var(--line);
}
.hero-meta > div:first-child{padding-left:0}
.hero-meta > div:last-child{border-right:0}
.hero-meta small{
    display:block;
    margin-bottom:6px;
    color:#555;
    font-size:7px;
    font-weight:800;
    letter-spacing:.12em;
}
.hero-meta strong{
    color:#ddd;
    font-size:10px;
}
.home-hero-art{
    position:relative;
    min-height:610px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.hero-art-glow{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(239,36,36,.13),rgba(239,36,36,.02) 50%,transparent 72%);
    filter:blur(6px);
}
.hero-logo-panel{
    position:relative;
    width:min(100%,520px);
    aspect-ratio:1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:34px;
    background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.006)),rgba(8,8,8,.7);
    box-shadow:0 40px 100px rgba(0,0,0,.6),inset 0 1px rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
}
.panel-grid{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px);
    background-size:46px 46px;
}
.hero-logo-panel img{
    position:relative;
    z-index:2;
    width:79%;
    height:79%;
    object-fit:contain;
}
.panel-signature{
    position:absolute;
    z-index:3;
    left:22px;
    bottom:20px;
    color:#444;
    font-size:7px;
    font-weight:800;
    letter-spacing:.18em;
}
.floating-stat{
    position:absolute;
    z-index:5;
    border:1px solid var(--line-strong);
    border-radius:12px;
    background:rgba(6,6,6,.87);
    box-shadow:0 18px 45px rgba(0,0,0,.48);
    backdrop-filter:blur(18px);
}
.floating-status{
    left:-28px;
    top:115px;
    min-width:205px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
}
.floating-stock{
    right:-20px;
    bottom:110px;
    width:158px;
    padding:15px 17px;
}
.floating-stat small{
    display:block;
    color:#5d5d5d;
    font-size:7px;
    font-weight:850;
    letter-spacing:.12em;
}
.floating-status strong{
    display:block;
    margin-top:4px;
    font-size:9px;
}
.floating-stock strong{
    display:block;
    margin:5px 0 2px;
    font-size:32px;
    line-height:1;
}
.floating-stock span{
    color:#707070;
    font-size:8px;
}

/* Metrics */
.metric-strip{
    position:relative;
    z-index:8;
    width:min(92%,1460px);
    margin:-18px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    border:1px solid var(--line-strong);
    border-radius:16px;
    background:rgba(9,9,9,.96);
    box-shadow:var(--shadow);
}
.metric-strip > div{
    min-height:110px;
    display:grid;
    grid-template-columns:1fr auto;
    align-content:center;
    gap:2px 14px;
    padding:22px 25px;
    border-right:1px solid var(--line);
}
.metric-strip > div:last-child{border-right:0}
.metric-strip small{
    grid-column:1/-1;
    color:#555;
    font-size:7px;
    font-weight:850;
    letter-spacing:.13em;
}
.metric-strip strong{
    color:#eee;
    font-size:28px;
}
.metric-strip span{
    align-self:end;
    padding-bottom:4px;
    color:#747474;
    font-size:9px;
}

/* Feature vehicles */
.vehicle-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}
.vehicle-feature-card,
.showroom-premium-card,
.database-card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:var(--surface);
    transition:.25s ease;
}
.vehicle-feature-card:hover,
.showroom-premium-card:hover,
.database-card:hover{
    transform:translateY(-4px);
    border-color:rgba(239,36,36,.34);
    box-shadow:0 24px 55px rgba(0,0,0,.38);
}
.vehicle-feature-image,
.showroom-premium-image,
.database-image{
    position:relative;
    display:block;
    overflow:hidden;
    background:
        radial-gradient(circle at 50% 88%,#242424,transparent 38%),
        linear-gradient(145deg,#111,#070707);
}
.vehicle-feature-image{height:285px}
.showroom-premium-image{height:310px}
.database-image{height:210px}
.vehicle-feature-image::after,
.showroom-premium-image::after,
.database-image::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:50%;
    background:linear-gradient(transparent,rgba(0,0,0,.58));
    pointer-events:none;
}
.vehicle-feature-image img,
.showroom-premium-image img,
.database-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}
.vehicle-feature-card:hover img,
.showroom-premium-card:hover img,
.database-card:hover img{
    transform:scale(1.035);
}
.card-index,
.number-badge,
.showroom-badge,
.dealer-badge{
    position:absolute;
    z-index:3;
    top:15px;
    min-height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line-strong);
    border-radius:7px;
    background:rgba(5,5,5,.76);
    backdrop-filter:blur(8px);
    font-size:7px;
    font-weight:850;
    letter-spacing:.08em;
}
.card-index,
.number-badge{left:15px;padding:0 10px;color:#8a8a8a}
.showroom-badge,
.dealer-badge{right:15px;padding:0 10px;color:#aaa}
.dealer-badge.luxury{
    border-color:rgba(239,36,36,.35);
    color:#fff;
    background:rgba(120,5,5,.72);
}
.vehicle-feature-body,
.showroom-premium-body,
.database-card-body{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.vehicle-feature-body{min-height:94px;padding:18px 20px}
.showroom-premium-body{min-height:105px;padding:20px 22px}
.database-card-body{min-height:88px;padding:16px 18px}
.vehicle-feature-body small,
.showroom-premium-body small,
.database-card-body small{
    display:block;
    margin-bottom:5px;
    color:#555;
    font-size:7px;
    font-weight:850;
    letter-spacing:.12em;
}
.vehicle-feature-body h3,
.showroom-premium-body h2,
.database-card-body h2{
    margin:0;
    color:#eee;
    font-weight:650;
}
.vehicle-feature-body h3{font-size:16px}
.showroom-premium-body h2{font-size:18px}
.database-card-body h2{font-size:14px}
.vehicle-feature-body > strong,
.showroom-premium-body > strong,
.database-card-body > strong{
    color:#fff;
    font-size:14px;
    white-space:nowrap;
}

/* Feature cards */
.experience-section{padding-top:120px;padding-bottom:90px}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:18px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#080808;
}
.feature-card{
    position:relative;
    min-height:335px;
    padding:32px;
    border-right:1px solid var(--line);
    transition:.25s ease;
}
.feature-card:last-child{border-right:0}
.feature-card:hover{
    background:linear-gradient(145deg,rgba(239,36,36,.055),transparent 62%),#0a0a0a;
}
.feature-number,
.service-number{
    color:#444;
    font-size:9px;
    font-weight:850;
    letter-spacing:.1em;
}
.feature-icon,
.service-symbol{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border:1px solid rgba(239,36,36,.27);
    border-radius:12px;
    color:#fff;
    background:rgba(239,36,36,.035);
    font-size:21px;
}
.feature-icon{margin:54px 0 22px}
.feature-card h3{
    margin:0 0 11px;
    font-size:18px;
}
.feature-card p{
    max-width:350px;
    margin:0;
    color:#737373;
    font-size:11px;
    line-height:1.8;
}
.feature-card > strong{
    position:absolute;
    left:32px;
    bottom:28px;
    color:#8d8d8d;
    font-size:8px;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.feature-card:hover > strong{color:#fff}

/* CTA */
.final-cta,
.inline-cta{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(239,36,36,.21);
    border-radius:18px;
    background:
        radial-gradient(circle at 88% 50%,rgba(239,36,36,.08),transparent 30%),
        linear-gradient(120deg,#0c0c0c,#070707);
}
.final-cta{
    min-height:240px;
    margin-bottom:95px;
    display:grid;
    grid-template-columns:150px 1fr auto;
    align-items:center;
    gap:45px;
    padding:42px 48px;
}
.final-cta-mark{
    color:rgba(255,255,255,.07);
    font-size:85px;
    font-weight:900;
    letter-spacing:-.1em;
}
.final-cta h2{
    margin:8px 0 9px;
    font-size:31px;
    letter-spacing:-.035em;
}
.final-cta p,
.inline-cta p{
    margin:0;
    color:#767676;
    font-size:11px;
    line-height:1.75;
}
.final-cta-actions,
.cta-button-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.inline-cta{
    min-height:190px;
    margin:70px 0 80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
    padding:36px 40px;
}
.inline-cta h3{
    margin:8px 0 8px;
    font-size:24px;
    letter-spacing:-.03em;
}

/* Shared page hero */
.page-hero{
    position:relative;
    margin-top:84px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 83% 38%,rgba(239,36,36,.085),transparent 22%),
        linear-gradient(120deg,#060606,#0a0a0a 55%,#100505);
}
.page-hero-shell{
    position:relative;
    z-index:2;
    width:min(92%,1460px);
    min-height:390px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 320px;
    align-items:center;
    gap:70px;
    padding:70px 0;
}
.page-hero h1{
    max-width:900px;
    margin:13px 0 18px;
    font-size:clamp(50px,5.6vw,82px);
    line-height:.94;
    letter-spacing:-.05em;
}
.page-hero p{
    max-width:720px;
    margin:0;
    color:#898989;
    font-size:13px;
    line-height:1.8;
}
.page-hero-aside{
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    padding:28px 30px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.018);
}
.page-hero-aside > span{
    color:#555;
    font-size:7px;
    font-weight:850;
    letter-spacing:.14em;
}
.page-hero-aside strong{
    margin:6px 0;
    font-size:55px;
    line-height:1;
}
.page-hero-aside small{
    color:#777;
    font-size:9px;
}
.page-hero-aside .status-text{
    max-width:240px;
    color:#fff;
    font-size:20px;
    text-align:right;
}

/* Showroom */
.showroom-page{padding-top:75px}
.showroom-premium-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

/* Database */
.database-section{padding:0 0 90px}
.database-shell{
    width:min(94%,1560px);
    margin:0 auto;
}
.vehicle-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.018);
}
.vehicle-hero-stats > div{
    min-width:110px;
    padding:28px 22px;
    text-align:center;
    border-right:1px solid var(--line);
}
.vehicle-hero-stats > div:last-child{border-right:0}
.vehicle-hero-stats strong{
    display:block;
    font-size:30px;
}
.vehicle-hero-stats span{
    color:#666;
    font-size:13px;
    letter-spacing:.08em;
}
.database-toolbar{
    position:sticky;
    z-index:20;
    top:96px;
    margin:34px 0 18px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:25px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:15px;
    background:rgba(8,8,8,.94);
    box-shadow:0 20px 45px rgba(0,0,0,.28);
    backdrop-filter:blur(18px);
}
.toolbar-label{
    display:block;
    margin:0 0 9px 3px;
    color:#4f4f4f;
    font-size:15px;
    font-weight:850;
    letter-spacing:.14em;
}
.dealer-tabs{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
}
.dealer-filter{
    min-height:40px;
    padding:0 13px;
    border:1px solid var(--line);
    border-radius:9px;
    color:#777;
    background:#0b0b0b;
    font-size:15px;
    font-weight:800;
    letter-spacing:.04em;
    transition:.2s;
}
.dealer-filter span{
    margin-left:6px;
    color:#555;
}
.dealer-filter:hover,
.dealer-filter.active{
    border-color:rgba(239,36,36,.38);
    color:#fff;
    background:rgba(239,36,36,.07);
}
.database-controls{
    display:flex;
    gap:8px;
}
.search-box,
.sort-box{
    min-height:42px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 12px;
    border:1px solid var(--line);
    border-radius:9px;
    background:#0a0a0a;
}
.search-box span,
.sort-box span{
    color:#555;
}
.search-box input,
.sort-box select{
    border:0;
    outline:0;
    color:#ccc;
    background:transparent;
    font-size:13px;
}
.search-box input{
    width:210px;
}
.sort-box select{
    min-width:155px;
}
.sort-box option{
    background:#111;
    color:#ddd;
}
.database-result-line{
    min-height:54px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:0 4px;
}
.database-result-line > div{
    display:flex;
    align-items:center;
    gap:7px;
    color:#737373;
    font-size:9px;
}
.database-result-line strong{color:#ddd}
.database-result-line small{
    color:#454545;
    font-size:8px;
}
.result-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--red);
    box-shadow:0 0 10px rgba(239,36,36,.6);
}
.database-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}
.database-empty{
    min-height:300px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px dashed var(--line-strong);
    border-radius:16px;
    color:#777;
    background:#080808;
}
.database-empty > span{
    margin-bottom:14px;
    font-size:34px;
    color:#444;
}
.database-empty strong{
    color:#ddd;
    font-size:16px;
}
.database-empty p{
    margin:7px 0 0;
    font-size:10px;
}

/* Service */
.service-premium-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#080808;
}
.service-premium-card{
    min-height:360px;
    padding:30px 28px;
    border-right:1px solid var(--line);
    transition:.25s;
}
.service-premium-card:last-child{border-right:0}
.service-premium-card:hover{
    background:linear-gradient(145deg,rgba(239,36,36,.05),transparent 60%),#0a0a0a;
}
.service-symbol{
    margin:58px 0 24px;
}
.service-premium-card h2{
    margin:0 0 12px;
    font-size:19px;
}
.service-premium-card p{
    margin:0;
    color:#757575;
    font-size:11px;
    line-height:1.8;
}
.service-process{
    margin-top:18px;
    padding:42px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:var(--surface);
}
.service-process-heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    padding-bottom:30px;
    border-bottom:1px solid var(--line);
}
.service-process h2{
    margin:8px 0 0;
    font-size:35px;
    letter-spacing:-.04em;
}
.process-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
}
.process-steps > div{
    min-height:170px;
    padding:30px 28px 10px;
    border-right:1px solid var(--line);
}
.process-steps > div:last-child{border-right:0}
.process-steps span{
    color:var(--red);
    font-size:9px;
    font-weight:850;
}
.process-steps strong{
    display:block;
    margin:20px 0 8px;
    font-size:16px;
}
.process-steps p{
    margin:0;
    color:#707070;
    font-size:10px;
    line-height:1.7;
}

/* About */
.about-editorial{padding-top:75px}
.about-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:end;
    padding-bottom:42px;
    border-bottom:1px solid var(--line);
}
.about-intro h2,
.about-standard h2{
    margin:9px 0 0;
    font-size:clamp(38px,4vw,58px);
    line-height:1;
    letter-spacing:-.045em;
}
.about-lead{
    max-width:620px;
    margin:0;
    color:#c5c5c5;
    font-size:17px;
    line-height:1.7;
}
.about-copy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    padding:48px 0;
}
.about-copy-grid p{
    margin:0 0 20px;
    color:#8d8d8d;
    font-size:13px;
    line-height:1.9;
}
.about-quote{
    position:relative;
    margin:0;
    padding:50px 55px 50px 120px;
    overflow:hidden;
    border:1px solid rgba(239,36,36,.22);
    border-radius:18px;
    background:
        radial-gradient(circle at 88% 50%,rgba(239,36,36,.07),transparent 28%),
        #0a0a0a;
}
.about-quote > span{
    position:absolute;
    left:42px;
    top:28px;
    color:rgba(239,36,36,.32);
    font-size:95px;
    line-height:1;
    font-family:Georgia,serif;
}
.about-quote p{
    max-width:920px;
    margin:0;
    color:#bbb;
    font-size:22px;
    line-height:1.6;
}
.about-quote strong{
    display:block;
    color:#fff;
}
.about-values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:18px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
}
.about-values article{
    min-height:190px;
    padding:28px 30px;
    border-right:1px solid var(--line);
}
.about-values article:last-child{border-right:0}
.about-values span{
    color:var(--red);
    font-size:8px;
    font-weight:850;
}
.about-values h3{
    margin:34px 0 8px;
    font-size:17px;
}
.about-values p{
    margin:0;
    color:#707070;
    font-size:10px;
    line-height:1.7;
}
.about-standard{
    margin-top:18px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    padding:44px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#090909;
}
.about-standard p{
    margin:0 0 16px;
    color:#838383;
    font-size:12px;
    line-height:1.8;
}
.about-standard strong{
    display:block;
    margin-top:24px;
}

/* Contact */
.contact-premium-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
}
.contact-card{
    min-height:260px;
    padding:30px;
    border-right:1px solid var(--line);
    background:#090909;
}
.contact-card:last-child{border-right:0}
.contact-icon{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    margin-bottom:48px;
    border:1px solid rgba(239,36,36,.27);
    border-radius:12px;
    color:#fff;
    background:rgba(239,36,36,.035);
}
.contact-card small{
    display:block;
    margin-bottom:8px;
    color:#555;
    font-size:7px;
    font-weight:850;
    letter-spacing:.13em;
}
.contact-card strong{
    display:block;
    color:#eee;
    font-size:17px;
    overflow-wrap:anywhere;
}
.contact-card p{
    margin:8px 0 0;
    color:#6f6f6f;
    font-size:10px;
    line-height:1.7;
}
.contact-notice{
    margin:18px 0 80px;
    display:grid;
    grid-template-columns:90px 1fr;
    align-items:center;
    gap:28px;
    padding:34px;
    border:1px solid rgba(239,36,36,.21);
    border-radius:16px;
    background:linear-gradient(120deg,rgba(239,36,36,.04),transparent),#090909;
}
.contact-notice-mark{
    width:68px;
    height:68px;
    display:grid;
    place-items:center;
    border:1px solid rgba(239,36,36,.3);
    border-radius:50%;
    color:var(--red);
    font-size:26px;
    font-family:Georgia,serif;
}
.contact-notice h2{
    margin:8px 0 7px;
    font-size:25px;
}
.contact-notice p{
    max-width:800px;
    margin:0;
    color:#777;
    font-size:11px;
    line-height:1.8;
}

/* Legal */
.legal-page-hero .page-hero-shell{
    grid-template-columns:1fr 180px;
}
.legal-hero-mark{
    min-height:150px;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    border-radius:18px;
    color:rgba(255,255,255,.08);
    background:rgba(255,255,255,.015);
    font-size:58px;
    font-weight:900;
}
.legal-layout{
    width:min(92%,1320px);
    margin:0 auto;
    display:grid;
    grid-template-columns:250px 1fr;
    gap:38px;
    padding:55px 0 90px;
}
.legal-sidebar{
    position:sticky;
    top:110px;
    align-self:start;
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:20px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#090909;
}
.legal-sidebar .eyebrow-text{
    margin-bottom:12px;
}
.legal-sidebar a{
    padding:10px 11px;
    border-radius:8px;
    color:#6e6e6e;
    font-size:9px;
    line-height:1.35;
    transition:.2s;
}
.legal-sidebar a:hover{
    color:#fff;
    background:rgba(255,255,255,.035);
}
.legal-content{
    display:grid;
    gap:12px;
}
.legal-card{
    position:relative;
    scroll-margin-top:110px;
    padding:34px 38px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#090909;
}
.legal-card.legal-highlight{
    border-color:rgba(239,36,36,.28);
    background:linear-gradient(100deg,rgba(239,36,36,.045),transparent 48%),#090909;
}
.legal-number{
    display:block;
    margin-bottom:18px;
    color:#4d4d4d;
    font-size:8px;
    font-weight:850;
    letter-spacing:.12em;
}
.legal-card h2{
    margin:0 0 14px;
    font-size:20px;
}
.legal-card p,
.legal-card li,
.legal-card dd{
    color:#898989;
    font-size:12px;
    line-height:1.85;
}
.legal-card p{margin:0 0 14px}
.legal-card p:last-child{margin-bottom:0}
.legal-card strong{color:#ddd}
.legal-card ul{
    margin:0;
    padding-left:20px;
}
.legal-card li{margin-bottom:5px}
.legal-details{
    margin:0 0 22px;
}
.legal-details > div{
    display:grid;
    grid-template-columns:190px 1fr;
    gap:20px;
    padding:11px 0;
    border-bottom:1px solid var(--line);
}
.legal-details > div:last-child{border-bottom:0}
.legal-details dt{
    color:#555;
    font-size:8px;
    font-weight:850;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.legal-details dd{
    margin:0;
    color:#ddd;
}
.legal-card a:not(.legal-external-link){
    color:#ddd;
    text-decoration:underline;
    text-decoration-color:#555;
    text-underline-offset:3px;
}
.legal-external-link{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    margin-top:4px;
    padding:0 16px;
    border:1px solid rgba(239,36,36,.35);
    border-radius:9px;
    color:#eee;
    font-size:8px;
    font-weight:850;
    letter-spacing:.07em;
    text-transform:uppercase;
    transition:.2s;
}
.legal-external-link:hover{
    border-color:var(--red);
    background:rgba(239,36,36,.07);
}

/* Footer */
.site-footer{
    border-top:1px solid var(--line);
    background:#040404;
}
.footer-shell{
    width:min(92%,1460px);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr .75fr 1fr .7fr;
    gap:60px;
    padding:60px 0 50px;
}
.footer-brand-block img{
    width:145px;
    height:90px;
    object-fit:contain;
    object-position:left center;
}
.footer-brand-block p{
    max-width:380px;
    margin:16px 0 0;
    color:#5e5e5e;
    font-size:10px;
    line-height:1.8;
}
.footer-column{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.footer-label{
    margin-bottom:7px;
    color:#444;
    font-size:15px;
    font-weight:850;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.footer-column a,
.footer-column > span:not(.footer-label){
    color:#717171;
    font-size:15px;
    line-height:1.5;
}
.footer-column a:hover{color:#fff}
.footer-bottom{
    width:min(92%,1460px);
    min-height:66px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    border-top:1px solid var(--line);
}
.footer-bottom > span{
    color:#3f3f3f;
    font-size:8px;
    letter-spacing:.05em;
}
.footer-project-note{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d3d3d3;
    font-size:13px;
}
.note-mark{
    width:24px;
    height:24px;
    display:grid;
    place-items:center;
    border:1px solid rgba(239,36,36,.35);
    border-radius:6px;
    color:var(--red);
    background:rgba(239,36,36,.04);
    font-weight:900;
}

/* Reveal */
.js-reveal [data-reveal]{
    opacity:0;
    transform:translateY(20px);
    transition:opacity .62s cubic-bezier(.22,.61,.36,1),transform .62s cubic-bezier(.22,.61,.36,1);
}
.js-reveal [data-reveal].is-visible{
    opacity:1;
    transform:none;
}

/* Responsive */
@media(max-width:1200px){
    .database-grid{grid-template-columns:repeat(3,1fr)}
    .service-premium-grid{grid-template-columns:1fr 1fr}
    .service-premium-card{border-bottom:1px solid var(--line)}
    .service-premium-card:nth-child(2){border-right:0}
    .contact-premium-grid{grid-template-columns:1fr 1fr}
    .contact-card{border-bottom:1px solid var(--line)}
    .contact-card:nth-child(2){border-right:0}
    .footer-shell{grid-template-columns:1.2fr 1fr 1fr;gap:45px}
    .footer-column:last-child{grid-column:2}
}
@media(max-width:980px){
    .topbar{height:76px}
    .topbar-inner{
        width:min(92%,1540px);
        grid-template-columns:115px 1fr auto;
    }
    .brand{width:105px;height:64px}
    .dealer-status{display:none}
    .mobile-toggle{
        display:block;
        justify-self:end;
        grid-column:2;
    }
    .main-nav{
        position:fixed;
        top:76px;
        left:4%;
        right:4%;
        height:auto;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:12px;
        border:1px solid var(--line);
        border-radius:14px;
        background:rgba(8,8,8,.98);
        box-shadow:var(--shadow);
    }
    .main-nav.open{display:flex}
    .main-nav a{justify-content:flex-start}
    .main-nav a.active::after{display:none}
    .topbar-actions{grid-column:3}
    .header-contact{min-width:92px}
    .home-hero,
    .page-hero{padding-top:76px;margin-top:0}
    .home-hero-shell{
        min-height:auto;
        grid-template-columns:1fr;
        padding:65px 0 85px;
    }
    .home-hero-art{
        width:min(100%,580px);
        min-height:560px;
        margin:0 auto;
    }
    .metric-strip{grid-template-columns:1fr 1fr}
    .metric-strip > div:nth-child(2){border-right:0}
    .metric-strip > div:nth-child(-n+2){border-bottom:1px solid var(--line)}
    .section-heading,
    .section-heading.wide{grid-template-columns:1fr;gap:20px}
    .vehicle-feature-grid,
    .showroom-premium-grid{grid-template-columns:1fr 1fr}
    .feature-grid{grid-template-columns:1fr}
    .feature-card{
        min-height:260px;
        border-right:0;
        border-bottom:1px solid var(--line);
    }
    .feature-card:last-child{border-bottom:0}
    .feature-icon{margin-top:32px}
    .final-cta{
        grid-template-columns:100px 1fr;
        gap:30px;
    }
    .final-cta-actions{grid-column:1/-1;padding-left:130px}
    .page-hero-shell{grid-template-columns:1fr 220px}
    .database-toolbar{
        position:relative;
        top:auto;
        align-items:stretch;
        flex-direction:column;
    }
    .database-controls{width:100%}
    .search-box{flex:1}
    .search-box input{width:100%}
    .database-grid{grid-template-columns:1fr 1fr}
    .process-steps{grid-template-columns:1fr}
    .process-steps > div{
        min-height:130px;
        border-right:0;
        border-bottom:1px solid var(--line);
    }
    .process-steps > div:last-child{border-bottom:0}
    .about-intro,
    .about-copy-grid,
    .about-standard{grid-template-columns:1fr;gap:30px}
    .about-values{grid-template-columns:1fr}
    .about-values article{border-right:0;border-bottom:1px solid var(--line)}
    .about-values article:last-child{border-bottom:0}
    .legal-layout{grid-template-columns:1fr}
    .legal-sidebar{
        position:relative;
        top:auto;
        display:grid;
        grid-template-columns:repeat(3,1fr);
    }
    .legal-sidebar .eyebrow-text{grid-column:1/-1}
}
@media(max-width:680px){
    .topbar-inner{grid-template-columns:95px 1fr}
    .brand{width:90px}
    .mobile-toggle{grid-column:2}
    .topbar-actions{display:none}
    .home-hero-shell{width:min(90%,1460px);padding-top:48px}
    .home-hero-copy h1{font-size:clamp(46px,14vw,64px)}
    .home-hero-copy > p{font-size:12px}
    .hero-actions{flex-direction:column}
    .hero-actions .btn{width:100%}
    .hero-meta{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:16px 0;
    }
    .hero-meta > div{min-width:0}
    .hero-meta > div:nth-child(2){border-right:0}
    .hero-meta > div:nth-child(3){
        grid-column:1/-1;
        padding-left:0;
        padding-top:15px;
        border-top:1px solid var(--line);
    }
    .home-hero-art{min-height:390px}
    .hero-logo-panel{width:100%;border-radius:24px}
    .floating-status{left:-5px;top:40px;min-width:175px}
    .floating-stock{right:-5px;bottom:40px;width:140px}
    .metric-strip{
        width:min(90%,1460px);
        margin-top:18px;
        grid-template-columns:1fr;
    }
    .metric-strip > div{
        min-height:85px;
        border-right:0!important;
        border-bottom:1px solid var(--line);
    }
    .metric-strip > div:last-child{border-bottom:0}
    .section-shell{width:min(90%,1460px);padding-top:75px}
    .section-heading h2{font-size:38px}
    .vehicle-feature-grid,
    .showroom-premium-grid,
    .database-grid{grid-template-columns:1fr}
    .vehicle-feature-image{height:245px}
    .showroom-premium-image{height:265px}
    .database-image{height:245px}
    .final-cta{
        width:min(90%,1460px);
        grid-template-columns:1fr;
        padding:30px 25px;
        margin-bottom:70px;
    }
    .final-cta-mark{
        position:absolute;
        right:22px;
        top:18px;
        font-size:58px;
    }
    .final-cta-actions{grid-column:auto;padding-left:0}
    .final-cta-actions .btn{width:100%}
    .page-hero-shell{
        width:min(90%,1460px);
        min-height:auto;
        grid-template-columns:1fr;
        padding:65px 0 45px;
    }
    .page-hero h1{font-size:46px}
    .page-hero-aside{align-items:flex-start;min-height:140px}
    .page-hero-aside .status-text{text-align:left}
    .vehicle-hero-stats{grid-template-columns:1fr}
    .vehicle-hero-stats > div{
        border-right:0;
        border-bottom:1px solid var(--line);
    }
    .vehicle-hero-stats > div:last-child{border-bottom:0}
    .database-shell{width:min(90%,1560px)}
    .dealer-tabs{display:grid;grid-template-columns:1fr}
    .dealer-filter{width:100%}
    .database-controls{flex-direction:column}
    .sort-box select{width:100%}
    .database-result-line{
        align-items:flex-start;
        flex-direction:column;
        padding:12px 2px;
    }
    .service-premium-grid,
    .contact-premium-grid{grid-template-columns:1fr}
    .service-premium-card,
    .contact-card{
        min-height:280px;
        border-right:0!important;
        border-bottom:1px solid var(--line);
    }
    .service-premium-card:last-child,
    .contact-card:last-child{border-bottom:0}
    .service-process{padding:28px 24px}
    .service-process-heading{align-items:flex-start;flex-direction:column}
    .inline-cta{
        align-items:stretch;
        flex-direction:column;
        padding:28px 24px;
    }
    .inline-cta .btn{width:100%}
    .about-lead{font-size:15px}
    .about-copy-grid{padding:35px 0}
    .about-quote{padding:35px 25px 35px 70px}
    .about-quote > span{left:20px;top:20px;font-size:70px}
    .about-quote p{font-size:17px}
    .about-standard{padding:30px 24px}
    .contact-notice{grid-template-columns:1fr;padding:28px 24px}
    .legal-page-hero .page-hero-shell{grid-template-columns:1fr}
    .legal-hero-mark{display:none}
    .legal-layout{width:min(90%,1320px);padding-top:35px}
    .legal-sidebar{grid-template-columns:1fr 1fr}
    .legal-card{padding:28px 24px}
    .legal-details > div{grid-template-columns:1fr;gap:4px}
    .footer-shell{
        width:min(90%,1460px);
        grid-template-columns:1fr 1fr;
        gap:36px 25px;
        padding:45px 0 38px;
    }
    .footer-brand-block{grid-column:1/-1}
    .footer-column:last-child{grid-column:auto}
    .footer-bottom{
        width:min(90%,1460px);
        align-items:flex-start;
        flex-direction:column;
        padding:18px 0;
    }
}
@media(max-width:430px){
    .legal-sidebar{grid-template-columns:1fr}
    .footer-shell{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .js-reveal [data-reveal]{opacity:1;transform:none;transition:none}
    *{transition-duration:.001ms!important}
}


/* Service – drei gleichwertige Leistungsbereiche */
.service-premium-grid{
    grid-template-columns:repeat(3,1fr);
}

.service-premium-card:last-child{
    border-right:0;
}

@media(max-width:980px){
    .service-premium-grid{
        grid-template-columns:1fr;
    }

    .service-premium-card{
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .service-premium-card:last-child{
        border-bottom:0;
    }
}


/* Footer – größer und luftiger */
.site-footer{margin-top:90px}
.footer-main{padding-top:62px!important;padding-bottom:52px!important}
.footer-grid{gap:42px!important}
.footer-brand img{width:150px!important;max-height:92px!important;margin-bottom:18px!important}
.footer-brand p{max-width:390px;font-size:11px!important;line-height:1.85!important}
.footer-column h3,.footer-nav h3,.footer-contact h3,.footer-legal h3{margin-bottom:17px!important;font-size:10px!important;letter-spacing:.13em!important}
.footer-column a,.footer-nav a,.footer-contact a,.footer-legal a,.footer-contact span{min-height:28px;font-size:16px!important;line-height:1.6!important}
.footer-project-note{min-height:64px;padding:16px 18px!important;font-size:10px!important;line-height:1.65!important}
.footer-bottom{min-height:72px;padding-top:18px!important;padding-bottom:18px!important;font-size:9px!important}

/* Fahrzeugfilter – deutlich größer */
.vehicle-toolbar{min-height:96px!important;padding:18px!important;gap:13px!important;border-radius:16px!important}
.vehicle-toolbar .filter-label,.vehicle-toolbar-title{font-size:10px!important;letter-spacing:.14em!important}
.vehicle-toolbar .filter-btn,.vehicle-filters button{min-height:50px!important;padding:0 20px!important;border-radius:11px!important;font-size:10px!important;font-weight:850!important}
.vehicle-toolbar .vehicle-search,.vehicle-search{min-height:52px!important;border-radius:11px!important}
.vehicle-toolbar .vehicle-search input,.vehicle-search input{min-height:50px!important;padding-left:15px!important;padding-right:15px!important;font-size:11px!important}
.vehicle-toolbar select,.vehicle-filter-select,.vehicle-sort-select{min-height:52px!important;padding:0 40px 0 15px!important;border-radius:11px!important;font-size:10px!important;font-weight:750!important}
.vehicle-result-count,.vehicle-toolbar .result-count{min-height:46px;display:flex;align-items:center;padding:0 12px;font-size:9px!important}
.vehicle-filters{gap:10px!important}

/* Team – noch hochwertiger */
.team-public-sync-note{min-height:50px;display:flex;align-items:center;gap:10px;margin-bottom:18px;padding:0 15px;border:1px solid rgba(73,220,103,.14);border-radius:11px;background:rgba(73,220,103,.022);color:#777;font-size:8px}
.team-public-sync-note .status-dot{width:7px;height:7px;flex:0 0 7px;border-radius:50%;background:#49dc67;box-shadow:0 0 10px rgba(73,220,103,.62)}
.team-public-sync-note strong{color:#d0d0d0;font-size:9px}
.team-public-grid{gap:16px!important}
.team-public-card{isolation:isolate;box-shadow:0 16px 42px rgba(0,0,0,.16)}
.team-public-card-accent{position:absolute;z-index:5;top:0;left:0;right:0;height:2px;opacity:.7;background:linear-gradient(90deg,transparent,rgba(239,36,36,.8),transparent)}
.team-public-card.leadership .team-public-card-accent{height:3px;opacity:1;background:linear-gradient(90deg,rgba(239,36,36,.12),var(--red),rgba(239,36,36,.12));box-shadow:0 0 18px rgba(239,36,36,.2)}
.team-public-card.leadership{background:radial-gradient(circle at 50% 0%,rgba(239,36,36,.045),transparent 34%),linear-gradient(145deg,rgba(239,36,36,.025),transparent 52%),#080808}
.team-public-image{height:420px!important}
.team-public-image img{padding:22px 22px 0!important}
.team-public-card-content{padding:25px 24px 22px!important}
.team-public-role-line strong{font-size:8px!important}
.team-public-card h3{margin-top:12px!important;margin-bottom:24px!important;font-size:24px!important}
.team-public-leadership-badge{min-height:30px!important;padding:0 10px!important}
.team-public-values,.team-public-cta{margin-top:28px!important}

@media(max-width:980px){
  .footer-main{padding-top:48px!important;padding-bottom:42px!important}
  .vehicle-toolbar{padding:15px!important}
  .team-public-image{height:400px!important}
}
@media(max-width:680px){
  .vehicle-toolbar{min-height:auto!important;padding:14px!important;gap:10px!important}
  .vehicle-toolbar .filter-btn,.vehicle-filters button,.vehicle-toolbar select,.vehicle-filter-select,.vehicle-sort-select,.vehicle-toolbar .vehicle-search,.vehicle-search{width:100%!important;min-height:50px!important}
  .vehicle-filters{display:grid!important;grid-template-columns:1fr!important;width:100%!important}
  .team-public-sync-note{align-items:flex-start;flex-wrap:wrap;padding:13px;line-height:1.6}
  .team-public-sync-note span:last-child{width:100%;margin-left:17px}
  .team-public-image{height:440px!important}
  .footer-brand img{width:135px!important}
  .footer-project-note{min-height:72px;font-size:9px!important}
}


/* =========================================================
   TEAM PAGE – PREMIUM V2
   ========================================================= */
.team-v2-hero{
    position:relative;
    min-height:760px;
    margin-top:84px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 77% 46%,rgba(239,36,36,.11),transparent 20%),
        radial-gradient(circle at 77% 46%,rgba(255,255,255,.025),transparent 36%),
        linear-gradient(118deg,#030303 0%,#080808 49%,#120505 76%,#050505 100%);
}

.team-v2-hero::after{
    content:"TEAM";
    position:absolute;
    right:-2%;
    bottom:-7%;
    color:rgba(255,255,255,.012);
    font-size:clamp(10rem,20vw,22rem);
    font-weight:950;
    line-height:.78;
    letter-spacing:-.095em;
    pointer-events:none;
}

.team-v2-hero-grid{
    position:absolute;
    inset:0;
    opacity:.3;
    pointer-events:none;
    background:
        linear-gradient(90deg,rgba(255,255,255,.017) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px);
    background-size:64px 64px;
}

.team-v2-hero-shell{
    position:relative;
    z-index:2;
    width:min(92%,1460px);
    min-height:760px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(430px,.92fr);
    align-items:center;
    gap:76px;
}

.team-v2-hero-copy{
    max-width:790px;
    padding:65px 0 80px;
}

.team-v2-kicker{
    display:flex;
    align-items:center;
    gap:10px;
    color:#717171;
    font-size:8px;
    font-weight:850;
    letter-spacing:.14em;
}

.team-v2-kicker>span{
    width:34px;
    height:1px;
    background:var(--red);
    box-shadow:0 0 11px rgba(239,36,36,.62);
}

.team-v2-hero-copy h1{
    margin:22px 0 0;
    color:#f5f5f5;
    font-size:clamp(64px,6.6vw,102px);
    font-weight:880;
    line-height:.9;
    letter-spacing:-.06em;
}

.team-v2-hero-copy h1 em{
    display:block;
    color:transparent;
    font-style:normal;
    -webkit-text-stroke:1px rgba(255,255,255,.7);
}

.team-v2-hero-copy>p{
    max-width:690px;
    margin:30px 0 0;
    color:#8d8d8d;
    font-size:13px;
    line-height:1.86;
}

.team-v2-actions{
    display:flex;
    gap:9px;
    margin-top:30px;
    flex-wrap:wrap;
}

.team-v2-stats{
    display:flex;
    margin-top:39px;
    padding-top:23px;
    border-top:1px solid var(--line);
}

.team-v2-stats>div{
    min-width:155px;
    padding:0 26px;
    border-right:1px solid var(--line);
}

.team-v2-stats>div:first-child{
    padding-left:0;
}

.team-v2-stats>div:last-child{
    border-right:0;
}

.team-v2-stats small{
    display:block;
    color:#4e4e4e;
    font-size:7px;
    font-weight:850;
    letter-spacing:.13em;
}

.team-v2-stats strong{
    display:block;
    margin-top:5px;
    color:#f2f2f2;
    font-size:27px;
    line-height:1;
}

.team-v2-stats span{
    display:block;
    margin-top:5px;
    color:#646464;
    font-size:8px;
}

.team-v2-hero-visual{
    position:relative;
    min-height:590px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.team-v2-visual-glow{
    position:absolute;
    width:440px;
    height:440px;
    border-radius:50%;
    background:
        radial-gradient(circle,rgba(239,36,36,.12),rgba(239,36,36,.018) 52%,transparent 72%);
    filter:blur(5px);
}

.team-v2-ring{
    position:absolute;
    border:1px solid rgba(255,255,255,.04);
    border-radius:50%;
}

.team-v2-ring.ring-one{
    width:480px;
    height:480px;
}

.team-v2-ring.ring-two{
    width:620px;
    height:620px;
    border-color:rgba(239,36,36,.045);
}

.team-v2-brand-card{
    position:relative;
    z-index:3;
    width:min(100%,510px);
    min-height:500px;
    padding:20px;
    border:1px solid var(--line-strong);
    border-radius:28px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.034),rgba(255,255,255,.004)),
        rgba(7,7,7,.82);
    box-shadow:
        0 40px 95px rgba(0,0,0,.56),
        inset 0 1px rgba(255,255,255,.03);
    backdrop-filter:blur(18px);
}

.team-v2-brand-head{
    min-height:39px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 6px 12px;
    border-bottom:1px solid var(--line);
}

.team-v2-brand-head small{
    color:#505050;
    font-size:6px;
    font-weight:850;
    letter-spacing:.13em;
}

.team-v2-brand-head strong{
    margin-left:auto;
    color:#303030;
    font-size:21px;
    letter-spacing:-.08em;
}

.team-v2-brand-logo{
    height:338px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle,rgba(239,36,36,.065),transparent 36%);
}

.team-v2-brand-logo img{
    width:76%;
    height:76%;
    object-fit:contain;
}

.team-v2-brand-foot{
    min-height:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:14px 5px 0;
    border-top:1px solid var(--line);
}

.team-v2-brand-foot small{
    display:block;
    color:#4c4c4c;
    font-size:6px;
    font-weight:850;
    letter-spacing:.12em;
}

.team-v2-brand-foot strong{
    display:block;
    margin-top:4px;
    color:#bfbfbf;
    font-size:8px;
}

.team-v2-brand-foot>span{
    color:#4b4b4b;
    font-size:7px;
    font-weight:850;
    letter-spacing:.12em;
}

.team-v2-floating-note{
    position:absolute;
    z-index:5;
    left:-28px;
    bottom:66px;
    min-width:245px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px 15px;
    border:1px solid var(--line-strong);
    border-radius:12px;
    background:rgba(6,6,6,.9);
    box-shadow:0 18px 44px rgba(0,0,0,.46);
    backdrop-filter:blur(16px);
}

.team-v2-floating-note>span{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid rgba(239,36,36,.25);
    border-radius:8px;
    color:var(--red);
    background:rgba(239,36,36,.035);
}

.team-v2-floating-note small{
    display:block;
    color:#505050;
    font-size:6px;
    font-weight:850;
    letter-spacing:.12em;
}

.team-v2-floating-note strong{
    display:block;
    margin-top:3px;
    color:#d6d6d6;
    font-size:9px;
}

.team-v2-section{
    padding-top:92px;
    padding-bottom:92px;
}

.team-v2-sync{
    min-height:50px;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:19px;
    padding:0 15px;
    border:1px solid rgba(73,220,103,.14);
    border-radius:11px;
    background:rgba(73,220,103,.022);
    color:#777;
    font-size:8px;
}

.team-v2-sync .status-dot{
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
    background:#49dc67;
    box-shadow:0 0 10px rgba(73,220,103,.62);
}

.team-v2-sync strong{
    color:#d0d0d0;
    font-size:9px;
}

.team-v2-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:72px;
    align-items:end;
    padding-bottom:40px;
    border-bottom:1px solid var(--line);
}

.team-v2-intro h2{
    margin:10px 0 0;
    font-size:clamp(40px,4.1vw,60px);
    line-height:1;
    letter-spacing:-.046em;
}

.team-v2-intro h2 em{
    display:block;
    color:#777;
    font-style:normal;
    font-weight:500;
}

.team-v2-intro>p{
    max-width:610px;
    margin:0 0 3px;
    color:#7a7a7a;
    font-size:11px;
    line-height:1.85;
}

.team-v2-block{
    margin-top:46px;
}

.team-v2-block-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:28px;
    margin-bottom:17px;
}

.team-v2-block-head h2{
    margin:8px 0 0;
    font-size:29px;
    letter-spacing:-.035em;
}

.team-v2-block-count{
    min-height:34px;
    display:flex;
    align-items:center;
    padding:0 10px;
    border:1px solid var(--line);
    border-radius:8px;
    color:#777;
    background:#080808;
    font-size:8px;
    font-weight:750;
}

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

.team-v2-leader-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(239,36,36,.2);
    border-radius:18px;
    background:
        radial-gradient(circle at 50% 0%,rgba(239,36,36,.05),transparent 35%),
        linear-gradient(145deg,rgba(239,36,36,.025),transparent 52%),
        #080808;
    box-shadow:0 18px 48px rgba(0,0,0,.18);
    transition:.25s ease;
}

.team-v2-leader-card:hover{
    transform:translateY(-4px);
    border-color:rgba(239,36,36,.34);
    box-shadow:0 28px 60px rgba(0,0,0,.3);
}

.team-v2-card-accent{
    position:absolute;
    z-index:4;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:
        linear-gradient(90deg,rgba(239,36,36,.1),var(--red),rgba(239,36,36,.1));
    box-shadow:0 0 18px rgba(239,36,36,.2);
}

.team-v2-leader-image{
    position:relative;
    height:445px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 50% 70%,rgba(239,36,36,.09),transparent 38%),
        linear-gradient(145deg,#111,#070707);
}

.team-v2-image-grid{
    position:absolute;
    inset:0;
    opacity:.25;
    background:
        linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:40px 40px;
}

.team-v2-leader-image img,
.team-v2-member-image img{
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center bottom;
    padding:22px 22px 0;
    filter:drop-shadow(0 20px 25px rgba(0,0,0,.35));
    transition:transform .35s ease;
}

.team-v2-leader-card:hover img,
.team-v2-member-card:hover img{
    transform:scale(1.025);
}

.team-v2-sequence,
.team-v2-leader-badge{
    position:absolute;
    z-index:3;
    top:13px;
    min-height:30px;
    display:flex;
    align-items:center;
    padding:0 9px;
    border:1px solid var(--line-strong);
    border-radius:7px;
    background:rgba(5,5,5,.78);
    backdrop-filter:blur(9px);
    font-size:7px;
    font-weight:850;
    letter-spacing:.1em;
}

.team-v2-sequence{
    left:13px;
    color:#aaa;
}

.team-v2-leader-badge{
    right:13px;
    color:#fff;
    border-color:rgba(239,36,36,.32);
    background:rgba(134,7,7,.7);
}

.team-v2-leader-content{
    padding:26px 24px 22px;
}

.team-v2-role-line{
    display:flex;
    align-items:center;
    gap:19px;
    min-height:25px;
}

.team-v2-role-line span{
    color:#4d4d4d;
    font-size:18px;
    font-weight:850;
    letter-spacing:.12em;
}

.team-v2-role-line i{
    width:18px;
    height:1px;
    background:rgba(239,36,36,.65);
}

.team-v2-role-line strong{
    color:#888;
    font-size:18px;
    font-weight:750;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.team-v2-leader-content h3,
.team-v2-member-content h3{
    margin:12px 0 24px;
    color:#f0f0f0;
    font-size:24px;
    line-height:1.05;
    letter-spacing:-.035em;
}

.team-v2-leader-footer,
.team-v2-member-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding-top:16px;
    border-top:1px solid var(--line);
}

.team-v2-leader-footer span,
.team-v2-member-footer span{
    color:#4b4b4b;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.team-v2-leader-footer b,
.team-v2-member-footer b{
    color:#313131;
    font-size:18px;
    letter-spacing:-.08em;
}

.team-v2-member-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.team-v2-member-card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
    background:#080808;
    transition:.25s ease;
}

.team-v2-member-card:hover{
    transform:translateY(-3px);
    border-color:rgba(239,36,36,.22);
    box-shadow:0 22px 48px rgba(0,0,0,.25);
}

.team-v2-member-image{
    position:relative;
    height:340px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 50% 72%,rgba(239,36,36,.055),transparent 36%),
        linear-gradient(145deg,#101010,#070707);
}

.team-v2-member-content{
    padding:21px 20px 19px;
}

.team-v2-member-content h3{
    font-size:19px;
    margin-bottom:20px;
}

.team-v2-roles{
    margin-top:28px;
    padding:26px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#080808;
}

.team-v2-roles-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    padding-bottom:18px;
    border-bottom:1px solid var(--line);
}

.team-v2-roles-head h2{
    margin:8px 0 0;
    font-size:22px;
}

.team-v2-roles-head>span{
    color:#5f5f5f;
    font-size:8px;
}

.team-v2-role-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    margin-top:16px;
}

.team-v2-role-list>div{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:0 14px;
    border:1px solid var(--line);
    border-radius:9px;
    background:#0a0a0a;
}

.team-v2-role-list span{
    color:#8a8a8a;
    font-size:8px;
    font-weight:750;
}

.team-v2-role-list strong{
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border:1px solid rgba(239,36,36,.18);
    border-radius:7px;
    color:#fff;
    background:rgba(239,36,36,.035);
    font-size:8px;
}

.team-v2-values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:28px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:16px;
    background:#080808;
}

.team-v2-values article{
    min-height:230px;
    padding:29px;
    border-right:1px solid var(--line);
}

.team-v2-values article:last-child{
    border-right:0;
}

.team-v2-values span{
    color:var(--red);
    font-size:7px;
    font-weight:850;
    letter-spacing:.12em;
}

.team-v2-values h3{
    margin:58px 0 9px;
    font-size:16px;
}

.team-v2-values p{
    max-width:330px;
    margin:0;
    color:#6c6c6c;
    font-size:10px;
    line-height:1.75;
}

.team-v2-cta{
    position:relative;
    min-height:220px;
    margin-top:28px;
    display:grid;
    grid-template-columns:120px 1fr auto;
    align-items:center;
    gap:38px;
    padding:38px 42px;
    overflow:hidden;
    border:1px solid rgba(239,36,36,.2);
    border-radius:17px;
    background:
        radial-gradient(circle at 88% 50%,rgba(239,36,36,.075),transparent 28%),
        linear-gradient(120deg,#0c0c0c,#070707);
}

.team-v2-cta-mark{
    color:rgba(255,255,255,.06);
    font-size:72px;
    font-weight:900;
    letter-spacing:-.1em;
}

.team-v2-cta h2{
    margin:8px 0;
    font-size:29px;
    letter-spacing:-.035em;
}

.team-v2-cta p{
    margin:0;
    color:#737373;
    font-size:10px;
    line-height:1.75;
}

.team-v2-cta-actions{
    display:flex;
    gap:8px;
}

.team-v2-empty{
    min-height:280px;
    display:grid;
    grid-template-columns:130px 1fr;
    align-items:center;
    gap:35px;
    margin-top:24px;
    padding:35px;
    border:1px solid var(--line);
    border-radius:17px;
    background:#080808;
}

.team-v2-empty-mark{
    color:rgba(255,255,255,.055);
    font-size:70px;
    font-weight:900;
    letter-spacing:-.1em;
}

.team-v2-empty h2{
    margin:8px 0;
    font-size:27px;
}

.team-v2-empty p{
    max-width:700px;
    margin:0;
    color:#6d6d6d;
    font-size:10px;
    line-height:1.75;
}

@media(max-width:1180px){
    .team-v2-leadership-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

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

    .team-v2-role-list{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:980px){
    .team-v2-hero{
        min-height:auto;
        margin-top:76px;
    }

    .team-v2-hero-shell{
        grid-template-columns:1fr;
        min-height:auto;
        padding:62px 0 75px;
    }

    .team-v2-hero-copy{
        padding:0;
    }

    .team-v2-hero-visual{
        width:min(100%,580px);
        min-height:545px;
        margin:0 auto;
    }

    .team-v2-intro{
        grid-template-columns:1fr;
        gap:25px;
    }

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

    .team-v2-role-list{
        grid-template-columns:repeat(2,1fr);
    }

    .team-v2-cta{
        grid-template-columns:90px 1fr;
    }

    .team-v2-cta-actions{
        grid-column:1/-1;
        padding-left:128px;
    }
}

@media(max-width:680px){
    .team-v2-hero-shell{
        width:min(90%,1460px);
        padding-top:47px;
        gap:33px;
    }

    .team-v2-hero-copy h1{
        font-size:clamp(50px,15vw,66px);
    }

    .team-v2-hero-copy>p{
        font-size:12px;
    }

    .team-v2-actions{
        flex-direction:column;
    }

    .team-v2-actions .btn{
        width:100%;
    }

    .team-v2-stats{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:15px 0;
    }

    .team-v2-stats>div{
        min-width:0;
        padding:0 15px;
    }

    .team-v2-stats>div:nth-child(2){
        border-right:0;
    }

    .team-v2-stats>div:nth-child(3){
        grid-column:1/-1;
        padding:15px 0 0;
        border-top:1px solid var(--line);
    }

    .team-v2-hero-visual{
        min-height:410px;
    }

    .team-v2-brand-card{
        min-height:370px;
        border-radius:22px;
    }

    .team-v2-brand-logo{
        height:245px;
    }

    .team-v2-floating-note{
        left:-5px;
        bottom:24px;
        min-width:210px;
    }

    .team-v2-section{
        width:min(90%,1460px);
        padding-top:70px;
    }

    .team-v2-sync{
        align-items:flex-start;
        flex-wrap:wrap;
        padding:13px;
        line-height:1.6;
    }

    .team-v2-sync span:last-child{
        width:100%;
        margin-left:17px;
    }

    .team-v2-intro h2{
        font-size:38px;
    }

    .team-v2-block-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .team-v2-leadership-grid,
    .team-v2-member-grid{
        grid-template-columns:1fr;
    }

    .team-v2-leader-image{
        height:455px;
    }

    .team-v2-member-image{
        height:410px;
    }

    .team-v2-role-list{
        grid-template-columns:1fr;
    }

    .team-v2-values{
        grid-template-columns:1fr;
    }

    .team-v2-values article{
        min-height:180px;
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .team-v2-values article:last-child{
        border-bottom:0;
    }

    .team-v2-values h3{
        margin-top:34px;
    }

    .team-v2-cta{
        grid-template-columns:1fr;
        gap:18px;
        padding:30px 25px;
    }

    .team-v2-cta-mark{
        position:absolute;
        right:22px;
        top:16px;
        font-size:58px;
    }

    .team-v2-cta>div:nth-child(2){
        padding-top:28px;
    }

    .team-v2-cta-actions{
        grid-column:auto;
        padding-left:0;
        flex-direction:column;
    }

    .team-v2-cta-actions .btn{
        width:100%;
    }

    .team-v2-empty{
        grid-template-columns:1fr;
    }
}

@media(max-width:430px){
    .team-v2-leader-image{
        height:385px;
    }

    .team-v2-member-image{
        height:360px;
    }
}
