:root{
    --bg:#050506;
    --panel:#101114;
    --panel2:#17191d;
    --text:#f7f7f7;
    --muted:#b5b6bb;
    --line:rgba(255,255,255,.12);
    --red:#d73333;
    --red2:#ff4a4a;
    --white:#fff;
    --shadow:0 30px 90px rgba(0,0,0,.45);
    --radius:28px;
    --cream:#f6f2ea;
    --ink:#0b0c0f;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Montserrat,Arial,sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

.site{overflow:hidden}

.container{
    width:min(1220px,calc(100% - 44px));
    margin:0 auto;
}

img{
    max-width:100%;
    height:auto;
}

a{
    transition:.25s ease;
}

.topbar{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.utility-bar{
    background:linear-gradient(90deg,#191919,#332020,#191919);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.utility-inner{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.utility-inner p{
    margin:0;
    color:#fff;
    opacity:.96;
}

.utility-links{
    display:flex;
    align-items:center;
    gap:14px;
    white-space:nowrap;
}

.utility-links a{
    color:#fff;
    text-decoration:none;
}

.utility-links a:hover{color:#ffb6b6}

.utility-links span{opacity:.65}

.main-nav-row{background:#fff}

.nav{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:26px;
}

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex:0 0 auto;
}

.brand img{
    width:210px;
    height:54px;
    object-fit:contain;
    object-position:left center;
    display:block;
}

.links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:26px;
    flex:1 1 auto;
}

.links a{
    color:#050506;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    letter-spacing:.01em;
    padding:12px 0;
    border-bottom:2px solid transparent;
}

.links a:hover{
    color:var(--red);
    border-color:var(--red);
}

.nav-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-icons a{
    width:34px;
    height:34px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#08090b;
    text-decoration:none;
    font-weight:900;
    border:1px solid rgba(0,0,0,.12);
}

.nav-icons a:hover{
    background:#08090b;
    color:#fff;
}

.nav-cta,.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:14px;
    padding:14px 22px;
    color:#fff;
    text-decoration:none;
    border:1px solid var(--red);
    background:linear-gradient(135deg,var(--red),#a91111);
    box-shadow:0 16px 42px rgba(215,51,51,.28);
    font-weight:950;
    letter-spacing:.01em;
    cursor:pointer;
    white-space:nowrap;
}

.btn.secondary{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.24);
    color:#fff;
    box-shadow:none;
}

.nav-cta:hover,.btn:hover{
    background:linear-gradient(135deg,#ff4747,#b60000);
    border-color:#ff4747;
    transform:translateY(-2px);
    box-shadow:0 22px 55px rgba(215,51,51,.34);
}

.mobile-toggle{
    display:none;
    background:none;
    border:0;
    color:#08090b;
    font-size:32px;
    line-height:1;
    cursor:pointer;
}

.hero{
    position:relative;
    min-height:min(920px,calc(100vh - 120px));
    padding:92px 0 82px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(90deg,rgba(5,5,6,.96) 0%,rgba(5,5,6,.88) 48%,rgba(5,5,6,.38) 100%),
        radial-gradient(circle at 74% 18%,rgba(255,74,74,.42),transparent 34%),
        radial-gradient(circle at 22% 78%,rgba(255,255,255,.08),transparent 28%),
        url('/assets/img/hero-orb.png') right 8% center/560px no-repeat,
        linear-gradient(135deg,#050506,#151015 62%,#321013);
    overflow:hidden;
}

.hero:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:80px 80px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.72),transparent 75%);
}

.hero-bg-glow{
    position:absolute;
    width:60vw;
    height:60vw;
    right:-24vw;
    top:-24vw;
    background:radial-gradient(circle,rgba(255,74,74,.24),transparent 62%);
    filter:blur(10px);
}

.hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1fr) 430px;
    align-items:center;
    gap:58px;
}

.hero-copy{max-width:880px}

.hero-kicker,
.section-kicker-visible{
    display:inline-flex;
    color:#ffb6b6;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    margin-bottom:18px;
}

.eyebrow,.section .eyebrow,.section-label,.section-pill,.badge,.tagline-pill,.kicker,.pill-label,.label-pill,.hero-label,.section-kicker{
    display:none!important;
}

.hero h1{
    font-size:clamp(54px,7.2vw,104px);
    line-height:.9;
    margin:0;
    letter-spacing:-.075em;
    color:#fff;
    max-width:940px;
}

.lead{
    font-size:clamp(18px,2vw,23px);
    color:#d8dbe2;
    max-width:860px;
    margin:30px 0 0;
    line-height:1.62;
}

.hero-proof{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:0;
    margin-top:44px;
    border-top:1px solid rgba(255,255,255,.20);
    border-bottom:1px solid rgba(255,255,255,.20);
    align-items:stretch;
}

.hero-proof div{
    padding:24px 22px 24px 0;
    border-right:1px solid rgba(255,255,255,.16);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    min-height:150px;
}

.hero-proof div:last-child{border-right:0}

.hero-proof strong{
    display:flex;
    align-items:flex-start;
    color:#fff;
    font-size:clamp(25px,3vw,42px);
    line-height:1;
    letter-spacing:-.045em;
    min-height:92px;
    word-break:normal;
    overflow-wrap:normal;
    hyphens:none;
}

.hero-proof span{
    display:block;
    color:#c7ccd7;
    margin-top:10px;
    font-size:14px;
    line-height:1.45;
    max-width:180px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:36px;
}

.visual{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:430px;
}

.visual-card{
    width:100%;
    aspect-ratio:1;
    border-radius:42px;
    border:1px solid rgba(255,255,255,.20);
    background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.025));
    backdrop-filter:blur(14px);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    box-shadow:0 40px 90px rgba(0,0,0,.36);
}

.visual-card img{
    width:92%;
    height:92%;
    object-fit:contain;
    opacity:.94;
}

.metric-float{display:none}

.brand-strip{
    background:#0f151f;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.brand-strip-inner{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:14px 34px;
    padding:18px 0;
}

.brand-strip span{
    color:#e9edf5;
    font-weight:900;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.stats{display:none}

.buy-tires-section{
    padding:72px 0;
    background:#f7f7f4;
    color:#08090b;
}

.buy-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:38px;
    align-items:center;
}

.buy-grid h2{
    color:#08090b;
    font-size:clamp(36px,5vw,64px);
    line-height:1;
    letter-spacing:-.055em;
    margin:0 0 16px;
}

.buy-grid p{
    color:#3d4048;
    font-size:18px;
    line-height:1.75;
}

.buy-card{
    padding:34px;
    border-radius:28px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 30px 70px rgba(0,0,0,.10);
}

.buy-card h3{
    margin:0 0 12px;
    color:#08090b;
    font-size:28px;
}

.buy-card p{
    font-size:16px;
    margin-bottom:24px;
}

.buy-card .btn.secondary,
.buy-card .btn{color:#fff}

.section{
    padding:88px 0;
    background:
        radial-gradient(circle at 80% 5%,rgba(215,51,51,.12),transparent 32%),
        #080b12;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:68px;
    align-items:center;
}

.section h2,.page-hero h1{
    font-size:clamp(38px,5vw,72px);
    line-height:.98;
    letter-spacing:-.06em;
    margin:0 0 20px;
    color:#fff;
}

.section p,.page-hero p{
    color:#c8cbd2;
    font-size:18px;
    line-height:1.76;
}

.image-panel{
    border-radius:34px;
    border:1px solid var(--line);
    background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
    padding:18px;
    box-shadow:var(--shadow);
}

.image-panel img{
    width:100%;
    border-radius:24px;
    display:block;
}

.capability-section{background:#101722}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:34px;
}

.card{
    background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid var(--line);
    border-radius:24px;
    padding:26px;
    box-shadow:none;
}

.card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,74,74,.34);
    box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.card h3{
    margin:0 0 10px;
    font-size:20px;
    color:#fff;
}

.card p{
    margin:0;
    color:var(--muted);
}

.cta{
    margin:70px auto 0;
    background:
        radial-gradient(circle at 85% 10%,rgba(255,255,255,.20),transparent 30%),
        linear-gradient(135deg,#d73333,#530808);
    border:1px solid rgba(255,255,255,.18);
    border-radius:34px;
    padding:48px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
    box-shadow:var(--shadow);
}

.cta h2{
    margin:0;
    font-size:38px;
    color:#fff;
}

.cta p{
    color:#ffe1e1;
    max-width:640px;
}

.trusted-section,
.review-section{
    padding:86px 0;
    text-align:center;
    overflow:hidden;
    background:#080b12;
}

.trusted-section h2,
.review-section h2{
    color:#fff;
    font-size:clamp(36px,5vw,64px);
    margin:0 0 14px;
    font-weight:950;
    letter-spacing:-.055em;
}

.trusted-section p,
.review-section p{
    color:#cdd2dc;
    max-width:900px;
    margin:0 auto 44px;
    font-size:clamp(15px,2vw,18px);
    line-height:1.72;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    align-items:center;
    justify-items:center;
    max-width:1180px;
    margin:0 auto;
}

.partner-logo-box{
    width:100%;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s ease;
    overflow:hidden;
}

.partner-logo-box:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 65px rgba(0,0,0,.22);
}

.partner-logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.partner-logo-box span{
    color:#111;
    font-weight:900;
    font-size:16px;
}

.bbb-partner-logo{
    background:#fff!important;
    border-radius:18px!important;
    padding:14px!important;
}

.bbb-partner-logo a{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    height:100%!important;
}

.bbb-partner-logo img{
    width:150px!important;
    max-width:150px!important;
    height:auto!important;
    max-height:none!important;
    object-fit:contain!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    transform:none!important;
    position:relative!important;
    top:0!important;
    left:0!important;
}

.review-section{
    background:linear-gradient(180deg,#080b12,#0c111c);
}

.review-badge{
    display:flex;
    align-items:center;
    justify-content:center;
}

.review-badge img{
    max-width:330px;
    width:100%;
    height:auto;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
}

.page-hero{
    padding:96px 0 54px;
    background:
        radial-gradient(circle at 75% 5%,rgba(215,51,51,.24),transparent 34%),
        linear-gradient(135deg,#080b12,#050506);
}

.page-hero h1{
    margin-bottom:22px;
}

.page-hero p,
.page-content,
.legal-content{
    max-width:980px;
}

.page-content,
.legal-content,
.page-content p,
.legal-content p,
.page-hero p{
    white-space:pre-line;
}

.blocks{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:36px 0 70px;
}

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:28px;
    align-items:start;
}

.freshdesk-form{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--line);
}

.director{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:34px;
    align-items:center;
    background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid var(--line);
    border-radius:30px;
    padding:28px;
    margin-bottom:60px;
}

.director img{
    width:100%;
    border-radius:22px;
}

.director h2{color:#fff}

.footer{
    border-top:1px solid var(--line);
    padding:48px 0;
    color:var(--muted);
    background:#05070d;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:30px;
}

.footer img{
    width:190px;
    height:58px;
    object-fit:contain;
    object-position:left center;
}

.footer a{
    color:#fff;
    text-decoration:none;
}

.footer a:hover{color:#ffb6b6}

.footer h3{
    color:#fff;
    margin-top:0;
}

.admin-link{opacity:.55}

.footer-credit{
    margin-top:10px;
    font-size:14px;
    color:#bdbdbd;
}

.footer-credit a{
    color:#fff;
    text-decoration:none;
    font-weight:800;
}

.login,.admin-wrap{
    min-height:100vh;
    background:#08090b;
    color:#fff;
}

.login-card,.admin-card{
    width:min(480px,calc(100% - 40px));
    margin:80px auto;
    background:#111318;
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.admin-shell{
    display:grid;
    grid-template-columns:280px 1fr;
    min-height:100vh;
}

.admin-side{
    background:#0d0e11;
    border-right:1px solid var(--line);
    padding:22px;
}

.admin-main{padding:28px}

.admin-side a{
    display:block;
    color:#d9d9d9;
    text-decoration:none;
    padding:12px;
    border-radius:12px;
}

.admin-side a:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

input,textarea,select{
    width:100%;
    background:#0b0c10;
    color:#fff;
    border:1px solid rgba(255,255,255,.16);
    border-radius:14px;
    padding:13px 14px;
    font:inherit;
    outline:none;
}

input:focus,textarea:focus,select:focus{
    border-color:rgba(255,74,74,.72);
    box-shadow:0 0 0 4px rgba(215,51,51,.14);
}

textarea{
    min-height:120px;
    resize:vertical;
}

.field{margin:0 0 16px}

.admin-form{
    display:grid;
    gap:16px;
    max-width:980px;
}

.notice{
    padding:14px 16px;
    background:rgba(63,185,80,.14);
    border:1px solid rgba(63,185,80,.4);
    border-radius:14px;
    margin-bottom:18px;
}

.danger{background:#c72c2c}

.editor-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.item-box{
    border:1px solid var(--line);
    padding:16px;
    border-radius:18px;
    background:#101116;
    margin-bottom:14px;
}

body.menu-open{overflow:hidden}

@media(max-width:1180px){
    .trusted-grid{grid-template-columns:repeat(4,1fr);max-width:900px}
    .cards{grid-template-columns:repeat(2,1fr)}
    .hero-proof{grid-template-columns:repeat(2,1fr)}
    .hero-proof div:nth-child(2){border-right:0}
    .hero-proof strong{min-height:58px}
}

@media(max-width:980px){
    .container{width:min(100% - 32px,1220px)}
    .utility-inner{
        min-height:auto;
        padding:10px 0;
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
    .utility-links{gap:10px;font-size:12px}
    .nav{
        min-height:68px;
        gap:12px;
    }
    .brand img{
        width:150px;
        height:44px;
    }
    .mobile-toggle{
        display:block;
        margin-left:auto;
    }
    .nav-icons,.nav-cta{display:none}
    .links{
        position:fixed;
        top:calc(68px + 62px);
        left:16px;
        right:16px;
        display:grid;
        grid-template-columns:1fr;
        gap:0;
        padding:10px;
        background:#fff;
        border:1px solid rgba(0,0,0,.10);
        border-radius:22px;
        box-shadow:0 30px 90px rgba(0,0,0,.24);
        transform:translateY(-18px);
        opacity:0;
        pointer-events:none;
        max-height:calc(100vh - 105px);
        overflow:auto;
        z-index:1000;
    }
    .links.open{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }
    .links a{
        display:flex;
        align-items:center;
        min-height:50px;
        padding:0 14px;
        border-bottom:1px solid rgba(0,0,0,.06);
        font-size:15px;
    }
    .hero{
        min-height:auto;
        padding:70px 0 52px;
        background:
            linear-gradient(180deg,rgba(5,5,6,.96),rgba(5,5,6,.88)),
            radial-gradient(circle at 80% 20%,rgba(215,51,51,.35),transparent 34%),
            #050506;
    }
    .hero-grid{grid-template-columns:1fr}
    .visual{display:none}
    .hero h1{font-size:clamp(44px,12vw,76px)}
    .lead{font-size:18px}
    .buy-grid,.split,.contact-grid,.footer-grid,.director,.admin-shell{
        grid-template-columns:1fr;
    }
    .trusted-grid{grid-template-columns:repeat(3,1fr)}
    .blocks{grid-template-columns:1fr}
}

@media(max-width:640px){
    .container{width:calc(100% - 28px)}
    .utility-inner p{font-size:12px}
    .utility-links{flex-wrap:wrap;justify-content:center}
    .links{top:118px}
    .hero{padding:52px 0 42px}
    .hero h1{
        font-size:clamp(40px,14vw,58px);
        line-height:.96;
    }
    .lead{
        margin-top:22px;
        font-size:16.5px;
    }
    .hero-proof{
        grid-template-columns:1fr;
        margin-top:32px;
    }
    .hero-proof div{
        border-right:0!important;
        border-bottom:1px solid rgba(255,255,255,.14);
        padding:20px 0;
        min-height:auto;
    }
    .hero-proof div:last-child{border-bottom:0}
    .hero-proof strong{
        min-height:auto;
        font-size:34px;
    }
    .hero-actions{
        display:grid;
        grid-template-columns:1fr;
    }
    .hero-actions .btn{width:100%}
    .buy-tires-section,.section,.trusted-section,.review-section{
        padding:58px 0;
    }
    .cards{grid-template-columns:1fr}
    .cta{
        display:block;
        padding:28px;
        border-radius:24px;
    }
    .trusted-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
    .partner-logo-box{
        height:78px;
        border-radius:16px;
        padding:14px;
    }
    .bbb-partner-logo img{
        width:128px!important;
        max-width:128px!important;
    }
    .footer-grid{gap:18px}
    .admin-main{padding:16px}
    .editor-grid{grid-template-columns:1fr}
}

@media(max-width:430px){
    .trusted-grid{grid-template-columns:1fr}
    .partner-logo-box{
        width:min(245px,100%);
        height:88px;
    }
    .bbb-partner-logo img{
        width:145px!important;
        max-width:145px!important;
    }
}

@media(max-width:360px){
    .hero h1{font-size:38px}
}

/* === FIX: Desktop hero metric cards spacing === */

.hero-proof{
    grid-template-columns:repeat(4,minmax(180px,1fr));
    gap:14px;
    border-top:0;
    border-bottom:0;
    margin-top:42px;
}

.hero-proof div{
    min-height:150px;
    padding:24px 22px;
    border:1px solid rgba(255,255,255,.14)!important;
    border-radius:18px;
    background:rgba(255,255,255,.035);
}

.hero-proof strong{
    min-height:auto;
    font-size:clamp(26px,2.2vw,38px);
    line-height:1.02;
    letter-spacing:-.055em;
    white-space:normal;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
}

.hero-proof span{
    max-width:none;
    font-size:14px;
    line-height:1.45;
}

@media(max-width:1180px){
    .hero-proof{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:640px){
    .hero-proof{
        grid-template-columns:1fr;
        gap:12px;
    }

    .hero-proof div{
        padding:20px;
        border-radius:16px;
    }

    .hero-proof strong{
        font-size:32px;
    }
}