.turbo-home-page{
    --head:"Century Gothic","CenturyGothic","Arial",sans-serif;
    --body:"Century Gothic","CenturyGothic","Arial",sans-serif;
    --turbo-yellow:#ffd400;
    --turbo-black:#050505;
    --turbo-panel:#101114;
    --turbo-panel-soft:#17181d;
    --turbo-panel-glass:rgba(255,255,255,.04);
    --turbo-border:rgba(255,255,255,.08);
    --turbo-text:#fff;
    --turbo-muted:rgba(255,255,255,.72);
    --turbo-muted-2:rgba(255,255,255,.48);
    background:
        radial-gradient(circle at top right,rgba(255,212,0,.08),transparent 26%),
        linear-gradient(180deg,#050505 0%,#040404 100%);
    color:var(--turbo-text);
}

.turbo-home-page::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
    background-size:72px 72px;
    mask-image:radial-gradient(circle at center,rgba(0,0,0,.42),transparent 88%);
    opacity:.16;
}

.turbo-home-page .nav{
    background:rgba(5,5,5,.8);
    backdrop-filter:blur(24px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.turbo-home-page .nav.solid{
    background:rgba(5,5,5,.92);
    border-bottom-color:rgba(255,212,0,.18);
}

.turbo-home-page .nav .container{
    display:flex;
    flex-direction:column;
    gap:.18rem;
}

.turbo-home-page .nav-meta{
    display:flex;
    flex-wrap:wrap;
    gap:.35rem 1rem;
    padding:.28rem 0;
    color:var(--turbo-muted-2);
    border-bottom:1px solid rgba(255,255,255,.06);
    font-size:.72rem;
}

.turbo-home-page .nav-main{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    min-height:52px;
    padding:.54rem 0;
}

.turbo-home-page .nav-desktop{
    display:flex;
    align-items:center;
    gap:1.3rem;
}

.turbo-home-page .nav-links{
    display:flex;
    flex-wrap:wrap;
    gap:.95rem;
}

.turbo-home-page .nav-links a,
.turbo-home-page .nav-meta__link,
.turbo-home-page .mob-nav a{
    color:var(--turbo-muted);
    transition:color .2s ease;
}

.turbo-home-page .nav-links a{
    font-size:.8rem;
}

.turbo-home-page .nav-links a:hover,
.turbo-home-page .nav-meta__link:hover,
.turbo-home-page .mob-nav a:hover{
    color:var(--turbo-yellow);
}

.turbo-home-page .mob-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    background:rgba(255,255,255,.03);
}

.turbo-home-page .mob-nav{
    position:fixed;
    top:0;
    right:0;
    left:0;
    z-index:1200;
    display:grid;
    gap:1rem;
    padding:6rem 1.25rem 1.5rem;
    background:rgba(5,5,5,.97);
    border-bottom:1px solid rgba(255,255,255,.08);
    transform:translateY(-108%);
    transition:transform .24s ease;
}

.turbo-home-page .mob-nav.is-open{
    transform:translateY(0);
}

.turbo-home-page .mob-nav a{
    font-size:1rem;
}

.turbo-home-page .mob-close{
    position:absolute;
    top:1rem;
    right:1rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    background:rgba(255,255,255,.03);
}

.turbo-logo img{
    width:min(210px,34vw);
    height:auto;
}

.turbo-home-page .nav-cta,
.turbo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    padding:.78rem 1.22rem;
    border-radius:999px;
    font-family:var(--body);
    font-size:.88rem;
    font-weight:700;
    line-height:1;
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,color .25s ease,background-color .25s ease;
}

.turbo-home-page .nav-cta:hover,
.turbo-btn:hover{
    transform:translateY(-2px);
}

.turbo-nav-cta,
.turbo-btn--accent{
    background:var(--turbo-yellow);
    color:#000;
    border:1px solid var(--turbo-yellow);
    box-shadow:0 18px 40px rgba(255,212,0,.18);
}

.turbo-nav-cta:hover,
.turbo-btn--accent:hover{
    box-shadow:0 24px 50px rgba(255,212,0,.26);
}

.turbo-btn--ghost{
    background:rgba(255,255,255,.02);
    color:#fff;
    border:1px solid rgba(255,255,255,.14);
}

.turbo-btn--ghost:hover{
    border-color:rgba(255,212,0,.36);
    color:var(--turbo-yellow);
}

.turbo-home{
    position:relative;
    z-index:1;
}

.turbo-hero{
    padding:8.5rem 0 2.55rem;
}

.turbo-hero__container{
    display:grid;
    grid-template-columns:minmax(0,.98fr) minmax(420px,1.02fr);
    gap:2.4rem;
    align-items:start;
}

.turbo-hero__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:.35rem 0;
}

.turbo-hero__visual{
    position:relative;
    min-width:0;
    padding-top:.85rem;
}

.turbo-kicker,
.turbo-section__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.75rem;
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:var(--turbo-yellow);
    margin-bottom:1rem;
}

.turbo-kicker::before,
.turbo-section__eyebrow::before{
    content:"";
    width:36px;
    height:2px;
    border-radius:999px;
    background:var(--turbo-yellow);
}

.turbo-display{
    margin:0 0 1rem;
    max-width:10ch;
    font-family:var(--head);
    font-size:clamp(2.55rem,4.55vw,4.65rem);
    font-weight:700;
    line-height:.94;
    letter-spacing:-.05em;
    text-transform:uppercase;
}

.turbo-lead{
    max-width:33rem;
    margin:0 0 1.3rem;
    font-size:1rem;
    line-height:1.58;
    color:var(--turbo-muted);
}

.turbo-actions{
    display:flex;
    flex-wrap:wrap;
    gap:.85rem;
    margin-bottom:0;
}

.turbo-actions--compact{
    margin-bottom:0;
}

.turbo-hero__highlights{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
}

.turbo-hero__highlights span,
.turbo-market__chips span,
.turbo-about__chips span,
.turbo-lot-card__specs span,
.turbo-platforms a{
    display:inline-flex;
    align-items:center;
    padding:.62rem .92rem;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
}

.turbo-hero__highlights span{
    font-size:.82rem;
    color:#fff;
}

.turbo-hero-stage{
    position:relative;
    padding:0;
    overflow:visible;
    background:transparent;
    border:0;
    box-shadow:none;
}

.turbo-hero-stage__badge{
    display:inline-flex;
    position:relative;
    z-index:4;
    margin:0 0 .95rem .25rem;
    padding:.48rem .82rem;
    border-radius:12px;
    background:rgba(255,212,0,.1);
    border:1px solid rgba(255,212,0,.2);
}

.turbo-hero-stage__badge strong{
    display:block;
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--turbo-yellow);
}

.turbo-hero-stage__media{
    position:absolute;
    inset:0 0 0 14%;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}

.turbo-hero-stage__media img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:right center;
    filter:saturate(.94) brightness(.86);
}

.turbo-hero-stage__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#050505 0%,rgba(5,5,5,.9) 26%,rgba(5,5,5,.12) 58%,rgba(5,5,5,.46) 100%),
        linear-gradient(180deg,rgba(5,5,5,.04) 0%,rgba(5,5,5,.2) 100%);
}

.turbo-hero-stage__media--empty{
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at center,rgba(255,212,0,.22),transparent 35%),
        linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
}

.turbo-hero-stage__placeholder{
    position:relative;
    z-index:2;
    display:grid;
    gap:.55rem;
    text-align:center;
    font-family:var(--head);
    font-size:clamp(2rem,4vw,3rem);
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
    color:rgba(255,255,255,.28);
}

.turbo-hero__countries{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
    margin-top:.65rem;
}

.turbo-country-teaser{
    min-height:104px;
    padding:.92rem 1rem;
    border-radius:22px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.018));
    border:1px solid rgba(255,255,255,.08);
    transition:transform .25s ease,border-color .25s ease,background-color .25s ease;
}

.turbo-country-teaser:hover{
    transform:translateY(-4px);
    border-color:rgba(255,212,0,.32);
}

.turbo-country-teaser__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.7rem;
    margin:0;
}

.turbo-country-teaser strong{
    display:block;
    font-family:var(--head);
    font-size:1.14rem;
    line-height:1;
    text-transform:uppercase;
}

.turbo-country-teaser__arrow{
    font-size:1.55rem;
    color:var(--turbo-yellow);
}

.turbo-country-teaser__flag{
    width:30px;
    height:22px;
    border-radius:7px;
    flex-shrink:0;
    border:1px solid rgba(255,255,255,.12);
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.turbo-country-teaser__flag--japan{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' rx='4' fill='%23fff'/%3E%3Ccircle cx='14' cy='10' r='5.2' fill='%23bc002d'/%3E%3C/svg%3E");
}

.turbo-country-teaser__flag--korea{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' rx='4' fill='%23fff'/%3E%3Cpath d='M14 5.8a4.2 4.2 0 0 1 3.64 2.1A2.1 2.1 0 0 1 14 10a2.1 2.1 0 0 0-3.64 2.1A4.2 4.2 0 1 1 14 5.8Z' fill='%23cd2e3a'/%3E%3Cpath d='M14 14.2a4.2 4.2 0 0 1-3.64-2.1A2.1 2.1 0 0 1 14 10a2.1 2.1 0 0 0 3.64-2.1A4.2 4.2 0 1 1 14 14.2Z' fill='%230047a0'/%3E%3C/svg%3E");
}

.turbo-country-teaser__flag--china{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' rx='4' fill='%23de2910'/%3E%3Cpolygon points='7,3.2 8.15,6.15 11.3,6.3 8.85,8.25 9.7,11.2 7,9.5 4.3,11.2 5.15,8.25 2.7,6.3 5.85,6.15' fill='%23ffde00'/%3E%3C/svg%3E");
}

.turbo-country-teaser__label{
    display:block;
    margin-bottom:.48rem;
    font-size:.94rem;
    color:#fff;
}

.turbo-country-teaser p{
    display:none;
}

.turbo-section{
    padding:4.9rem 0;
}

.turbo-section--muted{
    background:rgba(255,255,255,.02);
    border-top:1px solid rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.04);
}

.turbo-section__head{
    display:grid;
    gap:.5rem;
    margin-bottom:2rem;
}

.turbo-section__head h2{
    margin:0;
    max-width:14ch;
    font-family:var(--head);
    font-size:clamp(2rem,3.3vw,3.2rem);
    font-weight:700;
    line-height:.98;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.turbo-section__head p{
    max-width:48rem;
    margin:0;
    font-size:.98rem;
    line-height:1.88;
    color:var(--turbo-muted);
}

.turbo-markets{
    display:grid;
    gap:1.45rem;
}

.turbo-market{
    padding:1.5rem;
    border-radius:32px;
    background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.018));
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.turbo-market__intro{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(220px,280px);
    gap:1.2rem;
    align-items:end;
    margin-bottom:1rem;
}

.turbo-market__eyebrow{
    display:inline-flex;
    margin-bottom:.8rem;
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-market__heading h3{
    margin:0 0 .7rem;
    font-family:var(--head);
    font-size:clamp(1.65rem,2.5vw,2.35rem);
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.turbo-market__heading p{
    margin:0;
    max-width:46rem;
    font-size:.95rem;
    line-height:1.82;
    color:var(--turbo-muted);
}

.turbo-market__meta{
    display:grid;
    gap:.4rem;
    padding:1rem 1.05rem;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.turbo-market__meta strong{
    display:block;
    font-family:var(--head);
    font-size:1.55rem;
    line-height:1;
    text-transform:uppercase;
}

.turbo-market__meta span{
    display:block;
    font-size:.82rem;
    line-height:1.6;
    color:var(--turbo-muted-2);
}

.turbo-market__meta a{
    display:inline-flex;
    margin-top:.45rem;
    font-size:.82rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--turbo-yellow);
}

.turbo-market__chips{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
    margin-bottom:1.15rem;
}

.turbo-market__chips span{
    font-size:.82rem;
    color:#fff;
}

.turbo-lot-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1rem;
}

.turbo-carousel--lots .turbo-carousel__slide{
    flex-basis:calc((100% - 3rem) / 3.5);
}

.turbo-carousel--lots .turbo-carousel__chrome{
    margin-top:.9rem;
}

.turbo-lot-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
    border-radius:26px;
    overflow:hidden;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:transform .22s ease,border-color .22s ease,background-color .22s ease;
}

.turbo-lot-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,212,0,.26);
}

.turbo-lot-card__media{
    position:relative;
    display:flex;
    align-items:flex-end;
    min-height:210px;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,rgba(255,212,0,.16),transparent 28%),
        linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
}

.turbo-lot-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.turbo-lot-card__media::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:54%;
    background:linear-gradient(180deg,transparent,rgba(5,5,5,.74));
}

.turbo-lot-card__media--empty{
    align-items:flex-end;
    justify-content:flex-start;
    padding:1rem;
}

.turbo-lot-card__badge{
    position:absolute;
    top:.9rem;
    left:.9rem;
    z-index:2;
    display:inline-flex;
    align-items:center;
    padding:.44rem .76rem;
    border-radius:999px;
    background:rgba(5,5,5,.82);
    border:1px solid rgba(255,255,255,.08);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#fff;
}

.turbo-lot-card__placeholder{
    position:relative;
    z-index:2;
    font-family:var(--head);
    font-size:2rem;
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
    color:rgba(255,255,255,.3);
}

.turbo-lot-card__body{
    display:flex;
    flex-direction:column;
    gap:1rem;
    flex:1;
    padding:1.15rem;
}

.turbo-lot-card__top{
    display:grid;
    gap:.8rem;
    flex:1;
}

.turbo-lot-card__subtitle{
    margin:0 0 .32rem;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-lot-card h4{
    margin:0;
    font-family:var(--head);
    font-size:1.08rem;
    line-height:1.08;
    text-transform:uppercase;
}

.turbo-lot-card__price{
    display:block;
    font-size:1.08rem;
    line-height:1.2;
}

.turbo-lot-card__specs{
    display:flex;
    flex-wrap:wrap;
    gap:.55rem;
}

.turbo-lot-card__specs span{
    padding:.48rem .75rem;
    font-size:.78rem;
    color:var(--turbo-muted);
}

.turbo-lot-card__cta{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    margin-top:auto;
    font-size:.82rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--turbo-yellow);
}

.turbo-benefits{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1rem;
}

.turbo-benefit,
.turbo-step,
.turbo-empty-card,
.turbo-review-card{
    padding:1.4rem;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015));
    border:1px solid rgba(255,255,255,.08);
}

.turbo-benefit__num,
.turbo-step strong{
    display:inline-flex;
    margin-bottom:.9rem;
    font-family:var(--head);
    font-size:2rem;
    line-height:1;
    letter-spacing:-.04em;
    color:rgba(255,212,0,.92);
}

.turbo-benefit h3,
.turbo-step h3,
.turbo-empty-card h3{
    margin:0 0 .75rem;
    font-family:var(--head);
    font-size:1.18rem;
    line-height:1.08;
    text-transform:uppercase;
}

.turbo-benefit p,
.turbo-step p,
.turbo-empty-card p{
    margin:0;
    font-size:.92rem;
    line-height:1.8;
    color:var(--turbo-muted);
}

.turbo-steps{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:1rem;
}

.turbo-about{
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);
    gap:1.5rem;
    align-items:center;
}

.turbo-about__media{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    border:1px solid rgba(255,255,255,.08);
    background:#0c0c0c;
    box-shadow:0 30px 70px rgba(0,0,0,.36);
}

.turbo-about__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    aspect-ratio:1/1;
}

.turbo-about__media--empty{
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at center,rgba(255,212,0,.22),transparent 32%),
        linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
}

.turbo-about__media-placeholder{
    font-family:var(--head);
    font-size:clamp(2.4rem,4vw,3.4rem);
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
    color:rgba(255,255,255,.28);
}

.turbo-about__content{
    padding:2rem;
    border-radius:32px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.016));
    border:1px solid rgba(255,255,255,.08);
}

.turbo-about__content h2{
    margin:0 0 .85rem;
    font-family:var(--head);
    font-size:clamp(1.8rem,3vw,3rem);
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.turbo-about__role{
    margin:0 0 1rem;
    font-size:.9rem;
    line-height:1.7;
    color:var(--turbo-yellow);
}

.turbo-copy{
    display:grid;
    gap:1rem;
    font-size:.98rem;
    line-height:1.88;
    color:var(--turbo-muted);
}

.turbo-about__chips{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
    margin-top:1.35rem;
}

.turbo-about__chips span{
    font-size:.82rem;
}

.turbo-platforms{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
    margin-top:1.2rem;
}

.turbo-platforms a{
    font-size:.82rem;
    font-weight:700;
    color:#fff;
}

.turbo-review-card{
    padding:0;
    overflow:hidden;
    background:#fff;
    border-color:rgba(0,0,0,.08);
}

.turbo-reviews{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1rem;
}

.turbo-reviews--empty{
    grid-template-columns:1fr;
}

.turbo-review-card__link{
    display:inline-flex;
    padding:1rem 1.2rem 1.15rem;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#000;
}

.turbo-review-card iframe{
    width:100% !important;
    max-width:100% !important;
    display:block;
}

.turbo-cta{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:1.5rem;
    align-items:center;
    padding:2rem;
    border-radius:34px;
    background:linear-gradient(135deg,rgba(255,212,0,.16),rgba(255,255,255,.04));
    border:1px solid rgba(255,212,0,.22);
}

.turbo-cta h2{
    margin:0 0 .85rem;
    font-family:var(--head);
    font-size:clamp(1.85rem,3vw,3rem);
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.turbo-cta p{
    max-width:44rem;
    margin:0;
    font-size:.96rem;
    line-height:1.86;
    color:var(--turbo-muted);
}

.turbo-footer{
    padding:2rem 0 3rem;
    background:rgba(255,255,255,.02);
    border-top:1px solid rgba(255,255,255,.06);
}

.turbo-footer__inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:1.4rem;
    align-items:end;
}

.turbo-footer__brand img{
    width:min(260px,42vw);
    height:auto;
    margin-bottom:1rem;
}

.turbo-footer__brand p,
.turbo-footer__meta a,
.turbo-footer__meta span{
    font-size:.85rem;
    line-height:1.8;
    color:var(--turbo-muted);
}

.turbo-footer__meta{
    display:grid;
    justify-items:end;
}

.turbo-home-page .nav .container{
    gap:.08rem;
}

.turbo-home-page .nav-meta{
    gap:.3rem .85rem;
    padding:.2rem 0;
    font-size:.69rem;
}

.turbo-home-page .nav-main{
    min-height:46px;
    padding:.38rem 0;
}

.turbo-home-page .nav-desktop{
    gap:1.05rem;
}

.turbo-home-page .nav-links{
    gap:.82rem;
}

.turbo-home-page .nav-links a{
    font-size:.78rem;
}

.turbo-home-page .nav-cta,
.turbo-btn{
    padding:.76rem 1.14rem;
}

.turbo-hero{
    padding:8.5rem 0 2.55rem;
}

.turbo-hero__container{
    grid-template-columns:minmax(0,.98fr) minmax(420px,1.02fr);
    gap:2.4rem;
    align-items:start;
}

.turbo-display{
    max-width:13.2ch;
    font-size:clamp(2.85rem,4.25vw,4.9rem);
    line-height:.9;
}

.turbo-lead{
    max-width:31rem;
    margin-bottom:1.18rem;
    font-size:.98rem;
    line-height:1.7;
}

.turbo-actions{
    margin-bottom:1.05rem;
}

.turbo-hero__highlights{
    gap:.62rem;
}

.turbo-hero__highlights span{
    padding:.58rem .84rem;
    font-size:.8rem;
    color:rgba(255,255,255,.88);
}

.turbo-hero-stage{
    min-height:0;
    padding:0;
    border-radius:0;
    background:transparent;
    border:0;
    box-shadow:none;
}

.turbo-hero-stage::after{
    content:none;
}

.turbo-hero-stage__badge{
    padding:.48rem .82rem;
    border-radius:12px;
    background:rgba(255,212,0,.1);
    border:1px solid rgba(255,212,0,.2);
    z-index:4;
}

.turbo-hero-stage__badge span{
    font-size:.64rem;
}

.turbo-hero-stage__badge strong{
    font-size:.78rem;
}

.turbo-carousel{
    position:relative;
}

.turbo-carousel__viewport{
    overflow:hidden;
    cursor:grab;
    touch-action:pan-y;
    -webkit-user-select:none;
    user-select:none;
}

.turbo-carousel__viewport.is-dragging{
    cursor:grabbing;
}

.turbo-carousel__viewport img,
.turbo-carousel__viewport a{
    -webkit-user-drag:none;
    user-drag:none;
}

.turbo-carousel__viewport.is-dragging *{
    pointer-events:none;
}

.turbo-carousel__track{
    display:flex;
    gap:1rem;
    will-change:transform;
}

.turbo-carousel__slide{
    flex:0 0 100%;
    min-width:0;
    height:auto;
}

.turbo-carousel__chrome{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin-top:1.3rem;
}

.turbo-carousel__chrome--hero{
    position:relative;
    z-index:3;
    margin-top:1rem;
}

.turbo-carousel__actions{
    display:flex;
    gap:.6rem;
}

.turbo-carousel__nav{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(8px);
    color:#fff;
    transition:transform .2s ease,border-color .2s ease,background-color .2s ease,color .2s ease;
}

.turbo-carousel__nav:hover{
    transform:translateY(-2px);
    border-color:rgba(255,212,0,.52);
    background:rgba(255,212,0,.15);
    color:var(--turbo-yellow);
}

.turbo-carousel__nav span{
    font-size:1.6rem;
    line-height:1;
}

.turbo-carousel__dots{
    display:flex;
    align-items:center;
    gap:.45rem;
    flex:1;
    min-width:0;
    overflow-x:auto;
    scrollbar-width:none;
}

.turbo-carousel__dots::-webkit-scrollbar{
    display:none;
}

.turbo-carousel__dot{
    width:38px;
    height:2px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    transition:background-color .22s ease,transform .22s ease;
}

.turbo-carousel__dot.is-active{
    background:var(--turbo-yellow);
    transform:scaleX(1.08);
}

.turbo-carousel.is-static .turbo-carousel__nav,
.turbo-carousel.is-static .turbo-carousel__dots{
    display:none;
}

.turbo-carousel--hero .turbo-carousel__viewport{
    padding:0;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg,#000 0%,#000 78%,rgba(0,0,0,.7) 90%,transparent 100%);
    mask-image:linear-gradient(90deg,#000 0%,#000 78%,rgba(0,0,0,.7) 90%,transparent 100%);
}

.turbo-carousel--hero .turbo-carousel__slide{
    flex-basis:84%;
    max-width:460px;
}

.admin-bar .turbo-hero__visual{
    padding-top:1.55rem;
}

.turbo-carousel__chrome--hero .turbo-carousel__dot{
    width:18px;
}

.turbo-hero-lot{
    display:grid;
    grid-template-rows:250px auto;
    min-height:420px;
    height:100%;
    border-radius:20px;
    overflow:hidden;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    color:#fff;
}

.turbo-hero-lot__media{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,rgba(255,212,0,.18),transparent 28%),
        linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
}

.turbo-hero-lot__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .38s ease;
}

.turbo-hero-lot:hover .turbo-hero-lot__media img{
    transform:scale(1.03);
}

.turbo-hero-lot__media::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:54%;
    background:linear-gradient(180deg,rgba(5,5,5,0),rgba(5,5,5,.84));
}

.turbo-hero-lot__media--empty{
    display:flex;
    align-items:center;
    justify-content:center;
}

.turbo-hero-lot__placeholder{
    position:relative;
    z-index:2;
    font-family:var(--head);
    font-size:2rem;
    line-height:1;
    letter-spacing:-.04em;
    text-transform:uppercase;
    color:rgba(255,255,255,.36);
}

.turbo-hero-lot__content{
    display:grid;
    gap:.72rem;
    padding:1.08rem 1.1rem 1.2rem;
}

.turbo-hero-lot__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:.75rem;
}

.turbo-hero-lot__country{
    display:inline-flex;
    align-items:center;
    padding:.42rem .72rem;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-hero-lot__price{
    display:block;
    font-size:1.08rem;
    line-height:1.2;
    text-align:right;
}

.turbo-hero-lot h3{
    margin:0;
    font-family:var(--head);
    font-size:1.34rem;
    line-height:1.02;
    text-transform:uppercase;
}

.turbo-hero-lot__subtitle{
    margin:0;
    font-size:.86rem;
    line-height:1.6;
    color:var(--turbo-muted);
}

.turbo-hero-lot__specs{
    display:flex;
    flex-wrap:wrap;
    gap:.48rem;
}

.turbo-hero-lot__specs span{
    display:inline-flex;
    align-items:center;
    padding:.48rem .7rem;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    font-size:.76rem;
    color:rgba(255,255,255,.82);
}

.turbo-hero-lot__link{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    margin-top:auto;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-hero-lot__link::after{
    content:"→";
    font-size:1rem;
}

.turbo-carousel--videos .turbo-carousel__slide{
    flex-basis:calc((100% - 1rem) / 2);
}

.turbo-video-card{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:.9rem;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
    border:1px solid rgba(255,255,255,.08);
}

.turbo-video-card__button{
    display:flex;
    flex-direction:column;
    gap:1rem;
    width:100%;
    height:100%;
    padding:0;
    border:0;
    background:none;
    color:inherit;
    text-align:left;
    text-decoration:none;
    cursor:pointer;
}

.turbo-video-card__media{
    position:relative;
    overflow:hidden;
    aspect-ratio:16/10;
    border-radius:22px;
    background:
        radial-gradient(circle at top right,rgba(255,212,0,.18),transparent 28%),
        linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}

.turbo-video-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(5,5,5,0),rgba(5,5,5,.26));
    pointer-events:none;
}

.turbo-video-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.turbo-video-card:hover .turbo-video-card__media img{
    transform:scale(1.03);
}

.turbo-video-card__media--vk{
    background:
        radial-gradient(circle at 30% 40%,rgba(39,135,245,.2),transparent 55%),
        linear-gradient(135deg,#1a1d2e,#0d1017);
}

.turbo-video-card__play{
    position:absolute;
    top:50%;
    left:50%;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transform:translate(-50%,-50%);
    transition:transform .28s ease;
}

.turbo-video-card:hover .turbo-video-card__play{
    transform:translate(-50%,-50%) scale(1.12);
}

.turbo-video-card__duration{
    position:absolute;
    right:.85rem;
    bottom:.85rem;
    z-index:2;
    display:inline-flex;
    align-items:center;
    padding:.36rem .54rem;
    border-radius:999px;
    background:rgba(5,5,5,.72);
    font-size:.72rem;
    font-weight:700;
    line-height:1;
}

.turbo-video-card__body{
    display:grid;
    gap:.55rem;
}

.turbo-video-card__source{
    display:inline-flex;
    align-items:center;
    width:max-content;
    padding:.38rem .6rem;
    border-radius:999px;
    background:rgba(255,212,0,.12);
    border:1px solid rgba(255,212,0,.16);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-video-card__title{
    display:block;
    font-family:var(--head);
    font-size:1.08rem;
    line-height:1.16;
    text-transform:uppercase;
}

.turbo-video-card__desc{
    display:block;
    font-size:.88rem;
    line-height:1.72;
    color:var(--turbo-muted);
}

.turbo-video-card__external{
    display:inline-flex;
    align-items:center;
    gap:.42rem;
    margin-top:.8rem;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-video-card__external::after{
    content:"→";
}

.turbo-reviews{
    display:grid;
    grid-template-columns:1fr;
}

.turbo-carousel--reviews .turbo-carousel__slide{
    flex-basis:calc((100% - 1rem) / 2);
}

.turbo-review-card{
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    padding:0;
    background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    box-shadow:0 18px 42px rgba(0,0,0,.14);
    color:#fff;
}

.turbo-review-card__media{
    height:128px;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.turbo-review-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.turbo-review-card__body{
    display:flex;
    flex:1;
    flex-direction:column;
    gap:.85rem;
    padding:1.08rem 1.08rem 1.12rem;
    min-height:248px;
}

.turbo-review-card__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:.8rem;
}

.turbo-review-card__head strong{
    display:block;
    margin-bottom:.18rem;
    font-size:1rem;
    line-height:1.2;
    color:#fff;
}

.turbo-review-card__head span{
    display:block;
    font-size:.78rem;
    color:var(--turbo-muted-2);
}

.turbo-review-card__source{
    display:inline-flex;
    align-items:center;
    padding:.36rem .58rem;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    font-size:.66rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--turbo-yellow);
}

.turbo-review-card__text{
    font-size:.92rem;
    line-height:1.68;
    color:var(--turbo-muted);
    white-space:pre-line;
}

.turbo-review-card__footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.8rem;
    margin-top:auto;
    padding-top:.25rem;
}

.turbo-review-card__toggle,
.turbo-review-card__link{
    display:inline-flex;
    align-items:center;
    gap:.42rem;
    padding:0;
    border:0;
    background:none;
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.turbo-review-card__toggle{
    color:rgba(255,255,255,.84);
}

.turbo-review-card__link{
    color:var(--turbo-yellow);
}

.turbo-platforms--reviews{
    margin-top:1.35rem;
}

.turbo-video-modal{
    position:fixed;
    inset:0;
    z-index:1800;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease,visibility .2s ease;
}

.turbo-video-modal.is-open{
    opacity:1;
    visibility:visible;
}

.turbo-video-modal__backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
}

.turbo-video-modal__dialog{
    position:relative;
    z-index:1;
    width:min(960px,100%);
    padding:1rem;
    border-radius:28px;
    background:rgba(10,10,10,.96);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

.turbo-video-modal__frame{
    overflow:hidden;
    border-radius:20px;
    background:#000;
}

.turbo-video-modal__frame iframe{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    border:0;
}

.turbo-video-modal__close{
    position:absolute;
    top:.55rem;
    right:.55rem;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    color:#fff;
}

.turbo-video-modal__close span{
    font-size:1.6rem;
    line-height:1;
}

html.turbo-modal-open{
    overflow:hidden;
}

@media (max-width:1180px){
    .turbo-about,
    .turbo-cta,
    .turbo-footer__inner,
    .turbo-market__intro{
        grid-template-columns:1fr;
    }

    .turbo-hero__container{
        grid-template-columns:minmax(0,.94fr) minmax(360px,1.06fr);
        gap:1.85rem;
    }

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

    .turbo-steps{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .turbo-display{
        max-width:12.5ch;
    }

    .turbo-carousel--hero .turbo-carousel__slide{
        flex-basis:calc(100% - 72px);
        max-width:none;
    }

    .turbo-carousel--videos .turbo-carousel__slide{
        flex-basis:calc((100% - 1rem - 56px) / 2);
    }

    .turbo-carousel--reviews .turbo-carousel__slide{
        flex-basis:calc((100% - 1rem - 64px) / 2);
    }

    .turbo-carousel--lots .turbo-carousel__slide{
        flex-basis:calc((100% - 2rem) / 2.5);
    }
}

@media (max-width:960px){
    .turbo-hero__container,
    .turbo-about,
    .turbo-cta,
    .turbo-footer__inner,
    .turbo-market__intro{
        grid-template-columns:1fr;
    }

    .turbo-home-page .nav-desktop{
        display:none;
    }

    .turbo-home-page .mob-toggle{
        display:inline-flex;
    }

    .turbo-home-page .nav-meta{
        border-bottom:0;
    }

    .turbo-hero{
        padding-top:8.5rem;
    }

    .turbo-hero__visual{
        padding-top:0;
    }

    .turbo-hero__countries,
    .turbo-lot-grid,
    .turbo-benefits{
        grid-template-columns:1fr;
    }

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

    .turbo-carousel--hero .turbo-carousel__slide{
        flex-basis:calc(100% - 56px);
        max-width:none;
    }

    .admin-bar .turbo-hero__visual{
        padding-top:.35rem;
    }

    .turbo-carousel--videos .turbo-carousel__slide,
    .turbo-carousel--reviews .turbo-carousel__slide{
        flex-basis:calc(100% - 72px);
    }

    .turbo-carousel--lots .turbo-carousel__slide{
        flex-basis:calc(100% - 72px);
    }
}

@media (max-width:720px){
    .turbo-logo img{
        width:180px;
    }

    .turbo-hero,
    .turbo-section{
        padding:3.6rem 0;
    }

    .turbo-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .turbo-btn,
    .turbo-home-page .nav-cta{
        width:100%;
    }

    .turbo-hero__highlights{
        display:grid;
        grid-template-columns:1fr;
    }

    .turbo-carousel__chrome,
    .turbo-carousel__chrome--hero{
        gap:.65rem;
    }

    .turbo-carousel--hero .turbo-carousel__slide,
    .turbo-carousel--videos .turbo-carousel__slide,
    .turbo-carousel--reviews .turbo-carousel__slide,
    .turbo-carousel--lots .turbo-carousel__slide{
        flex-basis:calc(100% - 42px);
    }

    .turbo-carousel--hero .turbo-carousel__viewport{
        -webkit-mask-image:none;
        mask-image:none;
    }

    .turbo-carousel--hero .turbo-carousel__slide{
        flex-basis:100%;
    }

    .turbo-review-card__body{
        min-height:232px;
    }

    .turbo-video-modal__dialog{
        padding:.7rem;
        border-radius:22px;
    }

    .turbo-steps{
        grid-template-columns:1fr;
    }

    .turbo-benefit,
    .turbo-step,
    .turbo-empty-card,
    .turbo-review-card,
    .turbo-market,
    .turbo-lot-card,
    .turbo-about__content,
    .turbo-cta{
        border-radius:24px;
    }
}

@media (max-width:560px){
    .turbo-home-page .nav-meta{
        gap:.28rem .55rem;
        font-size:.68rem;
    }

    .turbo-display{
        max-width:100%;
    }

    .turbo-display{
        font-size:clamp(2.5rem,12vw,3.6rem);
    }

    .turbo-carousel__nav{
        width:42px;
        height:42px;
    }

    .turbo-carousel__dot{
        width:24px;
    }

    .turbo-carousel--hero .turbo-carousel__slide,
    .turbo-carousel--videos .turbo-carousel__slide,
    .turbo-carousel--reviews .turbo-carousel__slide,
    .turbo-carousel--lots .turbo-carousel__slide{
        flex-basis:calc(100% - 26px);
    }

    .turbo-carousel--hero .turbo-carousel__slide{
        flex-basis:100%;
    }

    .turbo-hero-lot{
        grid-template-rows:180px auto;
        min-height:340px;
    }

    .turbo-country-teaser__flag{
        width:26px;
        height:18px;
        border-radius:6px;
    }

    .turbo-review-card__body{
        min-height:214px;
    }

    .turbo-market,
    .turbo-about__content{
        padding:1.25rem;
    }

    .turbo-cta{
        padding:1.35rem;
    }
}
