:root{
    --bg:#07080a;
    --panel:#12151a;
    --panel2:#1b2028;
    --text:#f7f7f7;
    --muted:#a7adb6;
    --line:#2d333d;
    --orange:#ff6a00;
    --orange2:#ff8a00;
}
*{box-sizing:border-box}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:
        radial-gradient(circle at 15% 5%, rgba(255,106,0,.20), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,138,0,.10), transparent 28%),
        var(--bg);
    color:var(--text);
}
a{text-decoration:none;color:inherit}
.site-header{
    position:sticky;
    top:0;
    z-index:20;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    padding:18px 7vw;
    background:rgba(7,8,10,.86);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}
.site-brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.site-brand span{
    width:44px;
    height:44px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
}
.site-brand b{
    display:block;
    letter-spacing:4px;
}
.site-brand small{
    display:block;
    color:var(--orange);
    letter-spacing:5px;
    font-size:10px;
}
.site-nav{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}
.site-nav a{
    color:#e5e7eb;
    font-weight:700;
    font-size:14px;
}
.nav-cta{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    padding:11px 15px;
    border-radius:12px;
    color:white!important;
}
.web-hero{
    min-height:calc(100vh - 82px);
    padding:80px 7vw;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}
.eyebrow{
    color:var(--orange);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:900;
}
.hero-copy h1,.page-hero h1{
    font-size:clamp(38px,6vw,72px);
    line-height:.98;
    margin:18px 0;
}
.hero-copy p,.page-hero p{
    color:#d6d9de;
    font-size:18px;
    line-height:1.6;
    max-width:760px;
}
.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:28px;
}
.web-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    padding:14px 20px;
    font-weight:900;
}
.web-btn.primary{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:white;
}
.web-btn.secondary{
    background:#20252d;
    border:1px solid var(--line);
}
.hero-card,.info-card,.package-card,.form-block{
    background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    border-radius:26px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.gauge{
    width:96px;
    height:96px;
    border-radius:28px;
    background:rgba(255,106,0,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}
.hero-card h2{
    font-size:38px;
    margin:24px 0 0;
    letter-spacing:4px;
}
.hero-card p{
    margin:2px 0 20px;
    color:var(--orange);
    letter-spacing:6px;
}
.hero-card li{
    margin:10px 0;
    color:#e5e7eb;
}
.web-section{
    padding:70px 7vw;
}
.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 38px;
}
.section-title h2{
    font-size:42px;
    margin:12px 0;
}
.section-title p{
    color:var(--muted);
}
.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}
.package-card small{
    color:var(--orange);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}
.package-card h3{
    font-size:24px;
    margin:12px 0;
}
.package-card p,.package-card li{
    color:#d6d9de;
    line-height:1.5;
}
.package-card b{
    display:block;
    color:var(--orange);
    font-size:22px;
    margin-top:18px;
}
.package-card span{
    display:block;
    color:var(--muted);
    margin:8px 0 18px;
}
.dark-band{
    background:rgba(255,255,255,.035);
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}
.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}
.steps div{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:22px;
    padding:24px;
}
.steps b{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--orange);
}
.steps p{color:var(--muted)}
.page-hero{
    padding:90px 7vw 40px;
}
.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}
.orange-card{
    border-color:rgba(255,106,0,.35);
    background:linear-gradient(135deg,rgba(255,106,0,.18),rgba(255,255,255,.03));
}
.web-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.form-block.full{
    grid-column:1/-1;
}
.form-block h2{
    margin-top:0;
}
.web-form label{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:14px;
    color:#d9dde3;
    font-weight:700;
}
.web-form input,.web-form select,.web-form textarea{
    width:100%;
    padding:14px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#0c0f13;
    color:var(--text);
}
.two-fields{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.web-alert{
    margin:0 7vw;
    padding:16px 20px;
    border-radius:16px;
}
.web-alert.success{
    background:rgba(34,197,94,.14);
    border:1px solid rgba(34,197,94,.4);
}
.web-alert.error{
    background:rgba(239,68,68,.14);
    border:1px solid rgba(239,68,68,.4);
}
.site-footer{
    padding:42px 7vw;
    background:#0b0d10;
    border-top:1px solid rgba(255,255,255,.08);
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:28px;
    color:#d6d9de;
}
.site-footer a{
    display:block;
    color:#ffb47b;
    margin:8px 0;
}
@media(max-width:900px){
    .site-header{
        align-items:flex-start;
        flex-direction:column;
    }
    .web-hero,.two-col,.web-form,.site-footer{
        grid-template-columns:1fr;
    }
    .hero-card{
        order:-1;
    }
    .two-fields{
        grid-template-columns:1fr;
    }
}

.ticket-result{text-align:center}
.ticket-result strong{display:block;font-size:76px;letter-spacing:3px;margin:16px 0;color:#fff}
.ticket-form{max-width:640px;margin:0 auto;grid-template-columns:1fr}
.ticket-hero{text-align:center}

.hero-slider{
    position:relative;
    height:calc(100vh - 82px);
    min-height:680px;
    overflow:hidden;
    background:#050608;
}
.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.04);
    transition:opacity 1s ease, transform 6s ease;
    display:flex;
    align-items:center;
    padding:0 7vw;
}
.hero-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.48),rgba(0,0,0,.18)),
        linear-gradient(0deg,rgba(0,0,0,.72),transparent 45%);
}
.hero-content{
    position:relative;
    z-index:3;
    max-width:860px;
}
.hero-content h1{
    font-size:clamp(46px,7vw,92px);
    line-height:.92;
    margin:16px 0 12px;
    letter-spacing:-2px;
}
.hero-content h2{
    font-size:clamp(24px,3vw,42px);
    color:#ffb47b;
    margin:0 0 18px;
}
.hero-content p{
    font-size:20px;
    line-height:1.55;
    max-width:760px;
    color:#e9edf2;
}
.hero-process-mini{
    position:absolute;
    z-index:4;
    left:7vw;
    right:7vw;
    bottom:38px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}
.hero-process-mini div{
    background:rgba(10,12,15,.72);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(16px);
    border-radius:18px;
    padding:16px;
}
.hero-process-mini b{
    color:var(--orange);
    display:block;
    font-size:14px;
    margin-bottom:6px;
}
.hero-process-mini span{
    font-weight:900;
    color:#fff;
}
.hero-dots{
    position:absolute;
    z-index:6;
    right:7vw;
    bottom:160px;
    display:flex;
    gap:8px;
}
.hero-dots button{
    width:12px;
    height:12px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
}
.hero-dots button.active{
    width:34px;
    border-radius:99px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
}
.process-photo-section{
    padding-top:90px;
}
.process-photo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.process-photo-grid article{
    position:relative;
    min-height:420px;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
    box-shadow:0 20px 60px rgba(0,0,0,.30);
}
.process-photo-grid img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s ease;
}
.process-photo-grid article:hover img{
    transform:scale(1.06);
}
.process-photo-grid article:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.86),rgba(0,0,0,.05));
}
.process-photo-grid article div{
    position:absolute;
    z-index:2;
    left:22px;
    right:22px;
    bottom:22px;
}
.process-photo-grid b{
    display:inline-flex;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    padding:9px 12px;
    border-radius:12px;
    margin-bottom:12px;
}
.process-photo-grid h3{
    margin:0 0 8px;
    font-size:26px;
}
.process-photo-grid p{
    margin:0;
    color:#e5e7eb;
    line-height:1.45;
}
@media(max-width:1050px){
    .hero-process-mini,.process-photo-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .hero-dots{
        bottom:250px;
    }
}
@media(max-width:700px){
    .hero-slider{
        min-height:820px;
        height:auto;
    }
    .hero-slide{
        position:relative;
        min-height:820px;
        padding:80px 24px 250px;
    }
    .hero-process-mini{
        left:24px;
        right:24px;
        grid-template-columns:1fr 1fr;
    }
    .hero-dots{
        right:24px;
        bottom:210px;
    }
    .process-photo-grid{
        grid-template-columns:1fr;
    }
}

.shop-hero{
    background:
        linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.4)),
        url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80') center/cover;
    min-height:560px;
}
.tool-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:16px;
}
.tool-grid a{
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:22px;
    display:block;
}
.tool-grid b{
    display:block;
    font-size:20px;
    margin-bottom:8px;
}
.tool-grid span{
    color:var(--muted);
}
.shop-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    margin-bottom:28px;
}
.shop-filter a{
    padding:10px 14px;
    border-radius:999px;
    background:#1b2028;
    border:1px solid var(--line);
    font-weight:800;
}
.shop-filter a.active{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:white;
}
.shop-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}
.shop-card{
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    border-radius:26px;
    overflow:hidden;
}
.shop-img{
    height:210px;
    background-size:cover;
    background-position:center;
}
.shop-body{
    padding:22px;
}
.shop-body small{
    color:var(--orange);
    font-weight:900;
}
.shop-body h3{
    font-size:24px;
    margin:10px 0;
}
.shop-body p{
    color:#d6d9de;
    line-height:1.45;
}
.shop-price{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin:18px 0;
}
.shop-price b{
    color:var(--orange);
    font-size:22px;
}
.shop-price span{
    color:var(--muted);
}
.shop-card form{
    display:flex;
    gap:10px;
}
.shop-card input{
    width:80px;
    padding:12px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#0c0f13;
    color:white;
}
.cart-layout{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:22px;
}
.cart-items{
    display:grid;
    gap:12px;
}
.cart-row{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:14px;
    align-items:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:16px;
}
.cart-row span{
    display:block;
    color:var(--muted);
    margin-top:4px;
}
.cart-row button{
    border:0;
    border-radius:12px;
    padding:10px 12px;
    background:#2a3038;
    color:white;
    cursor:pointer;
}
.cart-summary{
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:24px;
    height:max-content;
}
.cart-total{
    font-size:26px;
    color:var(--orange);
}
.service-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:16px;
}
.service-actions form{
    margin:0;
}
.service-actions button{
    border:0;
    cursor:pointer;
}
@media(max-width:900px){
    .cart-layout{
        grid-template-columns:1fr;
    }
    .cart-row{
        grid-template-columns:1fr;
    }
}

.network-search{
    display:grid;
    grid-template-columns:1fr 260px auto;
    gap:12px;
    max-width:980px;
    margin:0 auto;
}
.network-search input,
.network-search select{
    padding:14px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#0c0f13;
    color:white;
}
.network-store-badge{
    background:rgba(255,106,0,.10);
    border:1px solid rgba(255,106,0,.24);
    border-radius:14px;
    padding:12px;
    margin:14px 0;
}
.network-store-badge b{
    display:block;
    color:#ffb47b;
}
.network-store-badge span{
    color:var(--muted);
    font-size:13px;
    word-break:break-all;
}
.network-card{
    border-color:rgba(255,106,0,.18);
}
@media(max-width:800px){
    .network-search{
        grid-template-columns:1fr;
    }
}

.virtual-warning{
    max-width:980px;
    margin:0 auto 24px;
    background:rgba(255,106,0,.12);
    border:1px solid rgba(255,106,0,.32);
    border-radius:20px;
    padding:18px 22px;
}
.virtual-warning b{
    display:block;
    color:#ffb47b;
    font-size:20px;
    margin-bottom:6px;
}
.virtual-warning p{
    margin:0;
    color:#e7e7e7;
    line-height:1.5;
}

.virtual-tool{
    border-color:rgba(255,106,0,.45) !important;
    background:
        linear-gradient(135deg,rgba(255,106,0,.18),rgba(255,255,255,.035)) !important;
}
.virtual-tool b{
    color:#ffb47b;
}

.services-hero{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    padding:90px 7vw;
    background:url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80') center/cover;
    overflow:hidden;
}
.services-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.52),rgba(0,0,0,.20)),
        linear-gradient(0deg,rgba(0,0,0,.70),transparent 55%);
}
.services-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}
.services-hero h1{
    font-size:clamp(42px,6vw,76px);
    line-height:.95;
    margin:16px 0;
}
.services-hero p{
    color:#e7e7e7;
    font-size:20px;
    line-height:1.55;
    max-width:760px;
}
.service-process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
}
.service-process-grid div{
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    padding:24px;
}
.service-process-grid b{
    display:flex;
    width:58px;
    height:58px;
    align-items:center;
    justify-content:center;
    background:rgba(255,106,0,.14);
    border:1px solid rgba(255,106,0,.30);
    border-radius:18px;
    font-size:28px;
    margin-bottom:16px;
}
.service-process-grid h3{
    margin:0 0 8px;
    font-size:24px;
}
.service-process-grid p{
    color:var(--muted);
    margin:0;
    line-height:1.45;
}
.service-filter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:30px;
}
.service-filter a{
    padding:11px 15px;
    border-radius:999px;
    background:#1b2028;
    border:1px solid var(--line);
    font-weight:900;
}
.service-filter a.active{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(310px,1fr));
    gap:22px;
}
.service-card-pro{
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 55px rgba(0,0,0,.26);
    transition:.18s ease;
}
.service-card-pro:hover{
    transform:translateY(-4px);
    border-color:rgba(255,106,0,.42);
}
.service-card-pro.featured{
    border-color:rgba(255,106,0,.45);
}
.service-photo{
    position:relative;
    height:220px;
    background-size:cover;
    background-position:center;
}
.service-photo:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.72),transparent);
}
.service-photo span{
    position:absolute;
    z-index:2;
    left:18px;
    bottom:18px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    border-radius:18px;
    font-size:28px;
}
.service-photo b{
    position:absolute;
    z-index:2;
    top:16px;
    right:16px;
    background:rgba(255,106,0,.95);
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}
.service-card-body{
    padding:24px;
}
.service-card-body small{
    color:#ffb47b;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:900;
}
.service-card-body h3{
    margin:10px 0;
    font-size:26px;
}
.service-card-body p{
    color:#d7dbe0;
    line-height:1.5;
}
.service-meta{
    display:grid;
    gap:8px;
    margin:16px 0;
}
.service-meta span{
    color:#cbd0d6;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    padding:10px;
    border-radius:12px;
}
.service-includes{
    list-style:none;
    padding:0;
    margin:16px 0;
    display:grid;
    gap:8px;
}
.service-includes li{
    color:#e6e8eb;
    padding-left:24px;
    position:relative;
}
.service-includes li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--orange);
    font-weight:900;
}
.service-note{
    background:rgba(255,106,0,.12);
    border:1px solid rgba(255,106,0,.25);
    color:#ffcfaa;
    border-radius:14px;
    padding:12px;
    margin:16px 0;
}
.service-bottom{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:18px;
}
.service-bottom strong{
    color:var(--orange);
    font-size:25px;
}
.center-buttons{
    justify-content:center;
}
@media(max-width:700px){
    .services-grid{
        grid-template-columns:1fr;
    }
    .services-hero{
        min-height:720px;
        padding:80px 24px;
    }
}
