/* ---------- RESET ---------- */

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

html{
    scroll-behavior:auto;
}

body{
    font-family:'Inter',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;

    opacity:0;
    transition:opacity .25s ease;
}

body.page-loaded{
    opacity:1;
}

/* ---------- CONTAINER ---------- */

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* ---------- HEADER ---------- */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    padding:0;
    height:72px;

    background:rgba(11,11,11,.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
    transition:background .3s ease;
    transform: translateZ(0);
    will-change: transform;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:48px;
    height:72px;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    transition:transform .3s ease, opacity .3s ease, filter .3s ease;
    height:100%;
    justify-content:center;
    margin-left:10px;
}

.logo img{
    display:block;
    height:18px;
    width:auto;
    max-height:none;
    object-fit:contain;
    transition:filter .3s ease, transform .3s ease;
}

.logo:hover{
    transform:scale(1.03);
    opacity:1;
}

/* .nav-right: refactored below */
nav ul{
    display:flex;
    gap:18px;
    list-style:none;
    margin-right:48px;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:56px;
    margin-left:auto;
}
.language-switcher{
    position:relative;
}
.language-current{
    background:transparent;
    border:none;
    color:#fff;
    font:inherit;
    cursor:pointer;
    opacity:.8;
    transition:.25s;
    width:58px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.language-current:hover{
    opacity:1;
}

.language-menu{
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    min-width:140px;
    background:rgba(18,18,18,.96);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    backdrop-filter:blur(18px);
    padding:6px;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s ease;
}

.language-switcher.open .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.language-menu a{
    display:block;
    padding:8px 10px;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}

.language-menu a:hover{
    background:rgba(255,255,255,.08);
}
.divider{
    color:rgba(255,255,255,.28);
    user-select:none;
}

nav a{
    text-decoration:none;
    color:white;
    opacity:.8;
    transition:.3s;
}

nav a:hover{
    opacity:1;
}

/* ---------- HERO ---------- */

.hero{
    min-height:calc(100vh - 80px);
    padding-top:140px;
    padding-bottom:80px;

    display:flex;
    align-items:center;
    position:relative;
    isolation:isolate;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    top:-45%;
    left:-28%;
    width:900px;
    height:900px;
    background:radial-gradient(circle,
        rgba(255,255,255,.38) 0%,
        rgba(255,255,255,.16) 18%,
        rgba(255,255,255,.06) 36%,
        rgba(255,255,255,.02) 52%,
        transparent 72%);
    filter:blur(90px);
    opacity:.95;
    pointer-events:none;
    z-index:-1;
}

.hero::after{
    content:"";
    position:absolute;
    right:-24%;
    bottom:-42%;
    width:820px;
    height:820px;
    background:radial-gradient(circle,
        rgba(255,255,255,.28) 0%,
        rgba(255,255,255,.12) 20%,
        rgba(255,255,255,.045) 38%,
        rgba(255,255,255,.015) 55%,
        transparent 72%);
    filter:blur(90px);
    opacity:.9;
    pointer-events:none;
    z-index:-1;
}

.hero-content{

    display:grid;

    grid-template-columns:minmax(0,1fr) minmax(0,1fr);

    align-items:center;

    gap:80px;
}


.hero h1{

    font-size:72px;

    line-height:1.05;

    letter-spacing:-3px;

    margin-bottom:28px;
}

.hero p{

    font-size:20px;

    color:#bdbdbd;

    max-width:520px;

    line-height:1.7;

    margin-bottom:40px;
}

/* ---------- PRICE ---------- */

.price{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:48px;
}

.old-price{

    color:#777;

    text-decoration:line-through;

    font-size:28px;
}

.new-price{

    font-size:48px;

    font-weight:700;
}

/* ---------- BUTTONS ---------- */

.buttons{

    display:flex;

    gap:18px;
}

.btn-primary{

    padding:18px 34px;

    border-radius:999px;

    background:white;

    color:black;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{

    transform:translateY(-3px);

    background:#ececec;
    box-shadow:0 0 25px rgba(255,255,255,.18);
}

.btn-secondary{

    padding:18px 34px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.2);

    color:white;

    text-decoration:none;

    transition:.3s;
}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);
}

/* ---------- PRODUCT ---------- */

.hero-right{

    display:flex;

    justify-content:center;
    min-width:0;
}

.hero-left{
    min-width:0;
}


.hero-card{
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1200px;
    animation: floatCard 8s ease-in-out infinite;
    transition: transform .45s ease;
    position:relative;
    overflow:visible;
    width:470px;
}

.hero-card:hover{
    animation-play-state:paused;
    transform:scale(1.06);
}


.hero-card .card{
    width:100%;
    max-width:470px;
    height:auto;
    filter:drop-shadow(0 35px 80px rgba(0,0,0,.55));
    transform:rotate(-12deg);
    transition:transform .45s ease, filter .45s ease;
    position:relative;
    z-index:2;
}



.hero-card:hover .card{
    transform:rotate(-8deg);
    filter:drop-shadow(0 60px 110px rgba(0,0,0,.75));
}


@keyframes floatCard{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-12px); }
    100%{ transform:translateY(0px); }
}


/* ---------- RESPONSIVE ---------- */

footer{
    border-top:1px solid rgba(255,255,255,.08);
    padding:28px 0;
    background:#0b0b0b;
    color:rgba(255,255,255,.6);
}

.footer-content{
    display:flex;
    justify-content:center;
    align-items:center;
    color:rgba(255,255,255,.55);
    font-size:14px;
    min-height:24px;
}

@media(max-width:700px){
    .footer-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

/* ================= PRODUCT PAGE ================= */

.product-hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:100px;
    padding:140px 8% 100px;
    background:#000;
}

.product-hero-content{
    max-width:620px;
}

.eyebrow{
    display:inline-block;
    margin-bottom:18px;
    color:#9b9b9b;
    font-size:14px;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.product-hero h1{
    font-size:72px;
    line-height:1.05;
    letter-spacing:-3px;
    margin-bottom:24px;
}

.product-hero p{
    font-size:20px;
    line-height:1.8;
    color:#b8b8b8;
    margin-bottom:36px;
}

.hero-price{
    font-size:56px;
    font-weight:700;
}

.product-hero-image{
    display:flex;
    justify-content:center;
}

.product-hero-image img{
    width:min(520px,100%);
    filter:drop-shadow(0 45px 90px rgba(0,0,0,.6));
    transform:rotate(-10deg);
    transition:.4s;
}

.product-hero-image img:hover{
    transform:rotate(-6deg) scale(1.03);
}

.product-section{
    background:#e9e9ec;
    padding:140px 8%;
    display:block;
}

.product-showcase{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-bottom:70px;
}

.product-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}


.product-frame{
    width:100%;
    aspect-ratio:1/1;
    background:#d7d7db;
    border:2px dashed #bcbcc2;
    border-radius:26px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    transition:.35s ease;
}

.product-image{
    width:82%;
    height:82%;
    object-fit:contain;
    transition:.35s ease;
}

.product-item span{
    color:#222;
    font-size:16px;
    font-weight:600;
}

.product-item:hover .product-frame{
    border-color:#b0b0b8;
}

.product-item:hover .product-image{
    transform:scale(1.05);
}

.product-features{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.feature{
    min-width:0;
    background:#f8f8f8;
    border:1px solid #d8d8dc;
    border-radius:26px;
    padding:42px;
    min-height:240px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    transition:.35s ease;
}

.feature:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.feature h2{
    overflow-wrap:anywhere;
    font-size:30px;
    line-height:1.15;
    margin-bottom:16px;
    color:#111;
    letter-spacing:-1px;
}

.feature p{
    overflow-wrap:anywhere;
    font-size:18px;
    line-height:1.7;
    color:#666;
}

.included{
    background:#fff;
    color:#111;
    padding:0 8% 140px;
}

.included h2{
    font-size:48px;
    letter-spacing:-2px;
    margin-bottom:48px;
}

.included-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.included-grid div{
    background:#111;
    color:#fff;
    padding:26px;
    border-radius:22px;
    font-size:18px;
    transition:.3s;
}

.included-grid div:hover{
    transform:translateY(-6px);
}

@media (max-width:1100px){

    .product-section{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:700px){

    .product-section{
        grid-template-columns:1fr;
    }

}

@media(max-width:900px){
    .product-hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:60px;
    }

    .product-hero h1{
        font-size:52px;
    }

    .product-section{
        grid-template-columns:1fr;
    }

    .included-grid{
        grid-template-columns:1fr;
    }
}


/* ===== PRODUCT SHOWCASE ===== */

.showcase{
    background:#000;
    color:#fff;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:100px;
    padding:160px 8%;
}

.new-price small {
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 6px;
    vertical-align: middle;
}

.showcase-image{
    display:flex;
    justify-content:center;
}

.showcase-image img{
    width:min(620px,100%);
    filter:drop-shadow(0 50px 100px rgba(0,0,0,.7));
    transform:rotate(-8deg);
    transition:.4s;
}

.showcase-image img:hover{
    transform:rotate(-4deg) scale(1.04);
}

.showcase-content h2{
    font-size:64px;
    line-height:1.05;
    letter-spacing:-2px;
    margin:18px 0 24px;
}

.showcase-content p{
    max-width:520px;
    color:#bdbdbd;
    font-size:20px;
    line-height:1.8;
}

.workflow{
    background:#000;
    color:#fff;
    padding:150px 8%;
    text-align:center;
}

.workflow h2{
    font-size:58px;
    letter-spacing:-2px;
    margin-bottom:70px;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.workflow-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:50px 36px;
    transition:.35s ease;
}

.workflow-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.workflow-card span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    margin:0 auto 36px;
    border-radius:50%;
    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.workflow-card h3{
    font-size:30px;
    margin-bottom:16px;
}

.workflow-card p{
    color:#a8a8a8;
    line-height:1.8;
}

.custom-solutions{
    background:#e9e9ec;
    color:#111;
    text-align:center;
    padding:170px 8%;
}

.custom-solutions h2{
    font-size:64px;
    letter-spacing:-2px;
    max-width:900px;
    margin:18px auto 30px;
}

.custom-solutions p{
    max-width:760px;
    margin:0 auto;
    color:#666;
    font-size:20px;
    line-height:1.9;
}

.contact-section{
    background:#000;
    color:#fff;
    text-align:center;
    padding:150px 8%;
}

.contact-section h2{
    font-size:58px;
    letter-spacing:-2px;
    margin-bottom:20px;
}

.contact-section p{
    color:#a8a8a8;
    font-size:20px;
    margin-bottom:60px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    max-width:900px;
    margin:0 auto;
}

.contact-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:16px 30px;
    height:110px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,.18);
}

.contact-card span{
    display:block;
    color:#8f8f8f;
    margin-bottom:10px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.15em;
}

.contact-card strong{
    font-size:22px;
    font-weight:600;
    line-height:1.25;
    word-break:normal;
    overflow-wrap:anywhere;
}

@media(max-width:900px){
    .showcase{
        grid-template-columns:1fr;
        text-align:center;
        gap:60px;
    }

    .showcase-content h2,
    .custom-solutions h2{
        font-size:46px;
    }

    .workflow-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-section h2{
        font-size:46px;
    }
}

@media (max-width:768px){

html,
body{
    overflow-x:hidden;
    width:100%;
}

html{
    overflow-x:clip;
}

body{
    min-width:0;
    touch-action:pan-y;
}

*,
*::before,
*::after{
    max-width:100%;
}

body{
    position:relative;
}

header{
    padding:0 18px;
}

nav{
    gap:0;
}

.logo{
    margin-left:0;
}

.hero{
    padding:110px 20px 40px;
    overflow:hidden;
}

.hero::before,
.hero::after{
    display:none;
}

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:24px;
}

.hero-right{
    display:none;
}

.hero h1{
    font-size:46px;
    letter-spacing:-2px;
}

.hero p{
    margin:auto;
    font-size:18px;
}

.price{
    justify-content:center;
    flex-wrap:wrap;
}

.buttons{
    display:flex;
    flex-direction:column;
    width:100%;
    align-items:center;
}

.btn-primary,
.btn-secondary{
    width:100%;
    max-width:320px;
}

.hero-card{
    width:min(280px,80vw);
    margin:auto;
    overflow:hidden;
}

.hero-card .card{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
}

.showcase,
.product-hero{
    display:grid;
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
    justify-items:center;
}

.showcase-image img,
.product-hero-image img{
    width:280px;
}

.product-section,
.workflow,
.custom-solutions,
.contact-section{
    padding:70px 20px;
}

.product-showcase{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.product-item{
    width:100%;
    max-width:none;
}

.product-frame{
    width:100%;
    aspect-ratio:1/1;
    margin:0 0 12px;
}

.product-image{
    width:90%;
    height:90%;
}

    .product-features{
        display:flex;
        flex-direction:column;
        gap:18px;
        width:100%;
    }

    .feature{
        width:100%;
        min-width:100%;
        min-height:auto;
        padding:30px;
        box-sizing:border-box;
    }

.workflow-grid{

    grid-template-columns:1fr;

}

.workflow-card{

    padding:32px 24px;

}

.contact-grid{

    grid-template-columns:1fr;

}

.contact-card{

    width:100%;

}

img{

    max-width:100%;

    height:auto;

}

section{

    overflow:hidden;

}

.nav-right{
    gap:12px;
}

nav ul{
    gap:12px;
    margin-right:0;
}

.divider{
    display:inline;
    color:rgba(255,255,255,.28);
}

.language-switcher{
    margin-right:8px;
}

}