:root{
    --white:#ffffff;
    --black:#050505;
    --black-2:#0d0d0d;
    --red:#ff0000;
    --red-dark:#d60000;
    --text:#111111;
    --text-soft:#5a5a5a;
    --border:rgba(0,0,0,.08);
    --border-strong:rgba(0,0,0,.14);
    --soft:#f5f5f5;
    --shadow-sm:0 10px 30px rgba(0,0,0,.06);
    --shadow-md:0 18px 55px rgba(0,0,0,.10);
    --shadow-lg:0 30px 90px rgba(0,0,0,.15);
    --shadow-red:0 20px 60px rgba(255,0,0,.18);
    --radius-sm:16px;
    --radius-md:24px;
    --radius-lg:34px;
    --radius-xl:42px;
    --container:1280px;
    --transition:all .28s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Manrope', sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top right, rgba(255,0,0,.035), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:min(var(--container), calc(100% - 32px));
    margin:0 auto;
}

/* TOPBAR */
.topbar{
    background:#000;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

.topbar-inner{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.topbar a{
    color:rgba(255,255,255,.92);
    transition:var(--transition);
}

.topbar a:hover{
    color:var(--red);
}

/* HEADER */
.site-header{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:18px 0;
}

.logo-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
}

.logo-bullet{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--red);
    display:inline-block;
    flex-shrink:0;
    box-shadow:0 0 0 8px rgba(255,0,0,.06);
}

.logo-text-wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.logo-text{
    font-size:32px;
    font-weight:900;
    line-height:1;
    letter-spacing:-.03em;
    color:#000;
}

.logo-underline{
    width:52px;
    height:5px;
    background:var(--red);
    border-radius:999px;
    margin-top:8px;
}

.header-ad{
    flex-shrink:0;
}

.ad-banner{
    width:728px;
    max-width:100%;
    height:90px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:800;
    background:
        linear-gradient(135deg, #050505 0%, #111111 50%, #060606 100%);
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 20px 50px rgba(0,0,0,.16);
    position:relative;
    overflow:hidden;
}

.ad-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 40%, transparent 70%);
    transform:translateX(-100%);
    transition:transform .8s ease;
}

.ad-banner:hover::before{
    transform:translateX(100%);
}

/* NAVBAR */
.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 30px rgba(0,0,0,.12);
}

.nav-inner{
    min-height:62px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    position:relative;
}

.nav-logo-mobile{
    display:none;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-menu a{
    color:#fff;
    font-weight:700;
    padding:12px 18px;
    border-radius:999px;
    transition:var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active{
    background:var(--red);
    color:#fff;
    box-shadow:0 10px 30px rgba(255,0,0,.22);
}

.nav-toggle{
    display:none;
    border:none;
    background:transparent;
    width:44px;
    height:44px;
    cursor:pointer;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:2px;
    margin:5px auto;
    background:#fff;
    transition:var(--transition);
}

/* MAIN */
.site-main{
    position:relative;
}

/* HERO V2 */
.hero-v2{
    position:relative;
    padding:72px 0 40px;
    overflow:hidden;
}

.hero-noise{
    position:absolute;
    inset:0;
    opacity:.16;
    pointer-events:none;
    background-image:
        radial-gradient(rgba(0,0,0,.04) 0.7px, transparent 0.7px);
    background-size:16px 16px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
}

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
}

.hero-glow-1{
    width:420px;
    height:420px;
    right:-80px;
    top:80px;
    background:rgba(255,0,0,.10);
}

.hero-glow-2{
    width:260px;
    height:260px;
    left:-60px;
    bottom:30px;
    background:rgba(0,0,0,.05);
}

.hero-v2-grid{
    display:grid;
    grid-template-columns: 1.02fr .98fr;
    gap:56px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:11px 18px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(0,0,0,.08);
    border-radius:999px;
    box-shadow:var(--shadow-sm);
    font-size:14px;
    font-weight:800;
    margin-bottom:26px;
    backdrop-filter:blur(10px);
}

.hero-title{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:24px;
    line-height:.98;
    letter-spacing:-.05em;
}

.hero-title-dark{
    font-size:clamp(42px, 5.2vw, 78px);
    font-weight:900;
    color:#000;
}

.hero-title-red{
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.04em;
    font-size:clamp(40px, 5vw, 74px);
    font-weight:800;
    color:var(--red);
    max-width:780px;
}

.hero-description{
    max-width:700px;
    font-size:20px;
    color:#2f2f2f;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.btn{
    min-height:54px;
    padding:0 26px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:16px;
    transition:var(--transition);
    border:2px solid transparent;
}

.btn-primary{
    background:var(--red);
    color:#fff;
    box-shadow:var(--shadow-red);
}

.btn-primary:hover{
    background:var(--red-dark);
    transform:translateY(-2px);
}

.btn-secondary{
    background:#fff;
    color:#000;
    border-color:#111;
    box-shadow:var(--shadow-sm);
}

.btn-secondary:hover{
    background:#000;
    color:#fff;
}

.btn-white{
    background:#fff;
    color:#000;
    box-shadow:var(--shadow-sm);
}

.btn-white:hover{
    transform:translateY(-2px);
}

.btn-outline-light{
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,.35);
}

.btn-outline-light:hover{
    background:#fff;
    color:#000;
}

.hero-mini-cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
}

.mini-card{
    background:rgba(255,255,255,.75);
    border:1px solid rgba(0,0,0,.08);
    border-radius:22px;
    padding:20px 18px;
    box-shadow:var(--shadow-sm);
    backdrop-filter:blur(10px);
}

.mini-card strong{
    display:block;
    font-size:18px;
    margin-bottom:8px;
    line-height:1.2;
}

.mini-card span{
    display:block;
    color:var(--text-soft);
    font-size:14px;
    line-height:1.5;
}

/* HERO VISUAL */
.hero-v2-visual{
    position:relative;
    min-height:640px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.visual-frame{
    position:relative;
    width:100%;
    max-width:600px;
    min-height:620px;
}

.visual-card{
    position:absolute;
    inset:80px 10px 20px 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(248,248,248,.92));
    border:1px solid rgba(0,0,0,.08);
    border-radius:38px;
    box-shadow:0 35px 100px rgba(0,0,0,.13);
    backdrop-filter:blur(14px);
    overflow:hidden;
}

.visual-card::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,0,0,.10);
    filter:blur(40px);
    left:50%;
    top:46%;
    transform:translate(-50%, -50%);
}

.visual-card-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    padding:24px 26px 0;
}

.visual-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--red);
    display:inline-block;
}

.visual-label{
    font-size:18px;
    font-weight:700;
    color:#111;
}

.visual-image-wrap{
    position:relative;
    z-index:2;
    height:100%;
    min-height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px 26px 34px;
}

.hero-main-image{
    max-height:470px;
    width:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 55px rgba(0,0,0,.18));
}

.visual-badge{
    position:absolute;
    z-index:5;
    padding:14px 20px;
    border-radius:999px;
    font-weight:900;
    font-size:16px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.badge-top{
    top:10px;
    right:10px;
    background:#000;
    color:#fff;
}

.badge-left{
    left:0;
    bottom:110px;
    background:var(--red);
    color:#fff;
}

.badge-bottom{
    right:0;
    bottom:40px;
    background:#000;
    color:#fff;
}

/* TRUST STRIP */
.trust-strip{
    padding:10px 0 24px;
}

.trust-strip-box{
    background:#0a0a0a;
    color:#fff;
    border-radius:24px;
    min-height:84px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:18px 24px;
    box-shadow:var(--shadow-md);
    flex-wrap:wrap;
}

.trust-item{
    font-weight:800;
    font-size:16px;
}

.trust-sep{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--red);
    flex-shrink:0;
}

/* SECTION GENERIC */
.section-head{
    max-width:840px;
    margin-bottom:44px;
}

.section-head.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.section-tag{
    display:inline-block;
    margin-bottom:12px;
    color:var(--red);
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:13px;
    font-weight:900;
}

.section-tag-light{
    color:#ffd5d5;
}

.dark-on-light{
    color:var(--red);
}

.section-head h2,
.showcase-v2-content h2,
.single-cta-text h2,
.final-cta-box h2{
    font-size:clamp(34px, 4.4vw, 58px);
    line-height:1.05;
    letter-spacing:-.04em;
    margin-bottom:16px;
    font-weight:900;
}

.section-head p,
.showcase-v2-content p,
.single-cta-text p,
.final-cta-box p{
    font-size:18px;
    color:#555;
}

/* CARDS V2 */
.cards-v2-section{
    padding:74px 0 70px;
}

.cards-v2-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.card-v2{
    position:relative;
    background:linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border:1px solid rgba(0,0,0,.08);
    border-radius:30px;
    padding:30px 26px;
    box-shadow:var(--shadow-sm);
    overflow:hidden;
    transition:var(--transition);
}

.card-v2::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg, #000 0%, var(--red) 100%);
}

.card-v2:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.card-v2.featured{
    background:
        radial-gradient(circle at top right, rgba(255,0,0,.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-color:rgba(255,0,0,.16);
    box-shadow:0 20px 60px rgba(255,0,0,.10);
}

.card-v2-number{
    width:64px;
    height:64px;
    border-radius:20px;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:18px;
    margin-bottom:18px;
}

.card-v2.featured .card-v2-number{
    background:var(--red);
}

.card-v2 h3{
    font-size:28px;
    line-height:1.12;
    margin-bottom:14px;
    font-weight:900;
    letter-spacing:-.03em;
}

.card-v2 p{
    color:#555;
    margin-bottom:18px;
    font-size:16px;
}

.card-points{
    list-style:none;
    display:grid;
    gap:10px;
}

.card-points li{
    position:relative;
    padding-left:20px;
    font-weight:700;
    color:#222;
}

.card-points li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--red);
}

/* SHOWCASE */
.showcase-v2{
    padding:10px 0 76px;
}

.showcase-v2-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:44px;
    align-items:center;
}

.showcase-image-frame{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:var(--shadow-lg);
    background:#fff;
}

.showcase-image-frame::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-40px;
    top:-40px;
    border-radius:50%;
    background:rgba(255,0,0,.12);
    filter:blur(12px);
    z-index:1;
}

.showcase-image-frame img{
    position:relative;
    z-index:2;
    width:100%;
    height:auto;
    display:block;
}

.showcase-v2-content p + p{
    margin-top:14px;
}

.showcase-stats{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
    margin:26px 0 28px;
}

.showcase-stat{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:18px 16px;
    box-shadow:var(--shadow-sm);
    text-align:center;
}

.showcase-stat strong{
    display:block;
    font-size:20px;
    margin-bottom:6px;
    font-weight:900;
}

.showcase-stat span{
    font-size:14px;
    color:#666;
}

/* SINGLE CTA LINE */
.single-cta-band{
    padding:0 0 80px;
}

.single-cta-line{
    display:grid;
    grid-template-columns: 1.2fr .3fr;
    gap:20px;
    align-items:center;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:30px;
    padding:34px 30px;
    box-shadow:var(--shadow-md);
    position:relative;
    overflow:hidden;
}

.single-cta-line::before{
    content:"";
    position:absolute;
    left:-40px;
    top:50%;
    transform:translateY(-50%);
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,0,0,.08);
    filter:blur(16px);
}

.single-cta-action{
    display:flex;
    justify-content:flex-end;
}

/* FINAL CTA */
.final-cta-v2{
    padding:0 0 84px;
}

.final-cta-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg, #030303 0%, #0d0d0d 52%, #230000 100%);
    color:#fff;
    border-radius:40px;
    padding:58px 32px;
    text-align:center;
    box-shadow:0 35px 100px rgba(0,0,0,.22);
}

.final-cta-bg{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.final-cta-bg::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,0,0,.20);
    top:-70px;
    right:-60px;
    filter:blur(20px);
}

.final-cta-bg::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-60px;
    left:-60px;
    filter:blur(12px);
}

.final-cta-box h2,
.final-cta-box p,
.final-cta-actions,
.final-cta-box .section-tag{
    position:relative;
    z-index:2;
}

.final-cta-box p{
    color:#ededed;
    max-width:780px;
    margin:0 auto 26px;
}

.final-cta-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

/* FOOTER */
.site-footer{
    background:#000;
    color:#fff;
}

.footer-inner{
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:30px;
    padding:58px 0 34px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:14px;
    font-size:22px;
    font-weight:900;
}

.footer-col p,
.footer-col li,
.footer-col a{
    color:rgba(255,255,255,.82);
}

.footer-col ul{
    list-style:none;
}

.footer-col li + li{
    margin-top:10px;
}

.footer-col a:hover{
    color:var(--red);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:18px 0;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.62);
    font-size:14px;
}

/* RESPONSIVE */
@media (max-width: 1180px){
    .hero-v2-grid,
    .showcase-v2-grid{
        grid-template-columns:1fr;
    }

    .hero-v2-visual{
        min-height:auto;
    }

    .visual-frame{
        min-height:560px;
        max-width:720px;
        margin:0 auto;
    }

    .cards-v2-grid,
    .hero-mini-cards,
    .showcase-stats,
    .footer-inner{
        grid-template-columns:1fr 1fr;
    }

    .single-cta-line{
        grid-template-columns:1fr;
    }

    .single-cta-action{
        justify-content:flex-start;
    }

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width: 768px){
    .container{
        width:min(var(--container), calc(100% - 24px));
    }
    
    .header-inner{
    align-items:center;
}

.header-ad{
    width:100%;
    display:flex;
    justify-content:center;
}

.ad-banner{
    margin:0 auto;
}

    .topbar-inner{
        flex-direction:column;
        justify-content:center;
        gap:8px;
        padding:10px 0;
    }

    .topbar-left,
    .topbar-right{
        justify-content:center;
    }

    .nav-logo-mobile{
        display:block;
    }

    .nav-toggle{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#000;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        box-shadow:0 18px 40px rgba(0,0,0,.22);
        border-top:1px solid rgba(255,255,255,.08);
    }

    .nav-menu.open{
        display:flex;
    }

    .nav-menu a{
        border-radius:14px;
        text-align:left;
    }

    .hero-v2{
        padding:46px 0 28px;
    }

   .hero-title-dark{
    font-size:clamp(34px, 8vw, 52px);
}

.hero-title-red{
    font-size:clamp(30px, 7.6vw, 46px);
}

    .hero-description{
        font-size:17px;
    }

    .hero-mini-cards,
    .cards-v2-grid,
    .showcase-stats,
    .footer-inner{
        grid-template-columns:1fr;
    }

    .hero-v2-visual{
        margin-top:10px;
    }

    .visual-frame{
        min-height:480px;
    }

    .visual-card{
        inset:50px 0 0 0;
        border-radius:28px;
    }

    .visual-image-wrap{
        min-height:390px;
        padding:18px;
    }

    .hero-main-image{
        max-height:330px;
    }

    .visual-badge{
        font-size:14px;
        padding:11px 15px;
    }

    .badge-top{
        top:0;
        right:6px;
    }

    .badge-left{
        left:0;
        bottom:72px;
    }

    .badge-bottom{
        right:0;
        bottom:10px;
    }

    .section-head h2,
    .showcase-v2-content h2,
    .single-cta-text h2,
    .final-cta-box h2{
        font-size:clamp(30px, 8vw, 44px);
    }

    .single-cta-line,
    .final-cta-box{
        padding:28px 20px;
    }

    .logo-text{
        font-size:28px;
    }

    .ad-banner{
        width:100%;
        height:90px;
    }
}

@media (max-width: 480px){
    .hero-actions,
    .final-cta-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .btn{
        width:100%;
    }

    .hero-chip{
        font-size:13px;
        padding:10px 14px;
    }

    .mini-card{
        padding:18px 16px;
    }

    .trust-strip-box{
        justify-content:flex-start;
        gap:12px;
    }

    .trust-sep{
        display:none;
    }
}