/* =========================================================
   TechNovaCorp - Final Production Stylesheet
   File: assets/css/style.css
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root{

    /* COLORS */

    --color-primary:#00d4ff;
    --color-primary-dark:#0077ff;

    --color-success:#22c55e;
    --color-danger:#ef4444;
    --color-warning:#f59e0b;

    --bg-dark:#07111f;
    --bg-dark-secondary:#0d1a2b;
    --bg-card:#101d31;

    --text-heading:#ffffff;
    --text-body:#d6deea;
    --text-muted:#9ba9bd;

    --border-color:
    rgba(255,255,255,0.08);

    --border-primary:
    rgba(0,212,255,0.32);

    /* GRADIENTS */

    --gradient-primary:
    linear-gradient(
        135deg,
        #00d4ff,
        #0077ff
    );

    --gradient-dark:
    linear-gradient(
        180deg,
        #07111f,
        #0d1a2b
    );

    --gradient-card:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    /* SHADOWS */

    --shadow-sm:
    0 4px 12px rgba(0,0,0,0.12);

    --shadow-md:
    0 12px 30px rgba(0,0,0,0.18);

    --shadow-lg:
    0 20px 45px rgba(0,0,0,0.25);

    --shadow-xl:
    0 30px 60px rgba(0,0,0,0.35);

    --shadow-primary:
    0 18px 40px rgba(0,212,255,0.22);

    /* RADIUS */

    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:22px;
    --radius-xl:30px;
    --radius-round:999px;

    /* TRANSITION */

    --transition:0.3s ease;

    /* Z INDEX */

    --z-navbar:1000;
    --z-overlay:1100;
    --z-mobile:1200;
    --z-toast:1300;
}

/* =========================================================
   RESET
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;

    background:var(--bg-dark);

    color:var(--text-body);

    font-family:'Inter',sans-serif;

    line-height:1.7;
}

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

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

button,
input,
select,
textarea{
    border:none;
    outline:none;

    font:inherit;
}

button{
    background:none;
    cursor:pointer;
}

ul{
    list-style:none;
}

/* =========================================================
   GLOBAL
========================================================= */

.container{
    width:min(1200px, calc(100% - 40px));

    margin-inline:auto;
}

.section{
    padding:90px 0;
}

.section-title{
    margin-bottom:70px;

    text-align:center;
}

.section-title h2{
    margin-bottom:18px;

    font-size:56px;
    line-height:1.1;

    color:var(--text-heading);

    font-weight:800;
}

.section-title p{
    max-width:760px;

    margin:auto;

    color:var(--text-muted);

    font-size:18px;
}

.gradient-text{
    background:var(--gradient-primary);

    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:var(--radius-round);

    background:
    rgba(0,212,255,0.10);

    border:
    1px solid rgba(0,212,255,0.18);

    color:var(--color-primary);

    font-size:13px;
    font-weight:700;

    letter-spacing:0.05em;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn,
.primary-btn,
.secondary-btn,
.price-btn,
.cta-btn{
    min-height:58px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding-inline:30px;

    border-radius:18px;

    font-size:15px;
    font-weight:700;

    transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn-primary,
.primary-btn,
.price-btn{
    background:var(--gradient-primary);

    color:#07111f;

    box-shadow:var(--shadow-primary);
}

.btn-primary:hover,
.primary-btn:hover,
.price-btn:hover{
    transform:translateY(-4px);
}

.btn-outline,
.secondary-btn{
    border:
    1px solid var(--border-color);

    background:
    rgba(255,255,255,0.03);

    color:#ffffff;
}

.btn-outline:hover,
.secondary-btn:hover{
    border-color:var(--border-primary);

    background:
    rgba(0,212,255,0.08);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:var(--z-navbar);

    padding:20px 0;

    backdrop-filter:blur(18px);

    background:
    rgba(7,17,31,0.75);

    border-bottom:
    1px solid rgba(255,255,255,0.04);
}

.navbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.navbar-brand{
    display:flex;
    align-items:center;

    gap:14px;
}

.navbar-logo{
    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.navbar-logo-img{
    display:block;

    width:auto;
    height:52px;
    max-width:180px;

    object-fit:contain;
}

.navbar-brand-text{
    display:flex;
    flex-direction:column;
}

.navbar-brand-text strong{
    color:#ffffff;

    font-size:18px;
}

.navbar-brand-text span{
    color:var(--text-muted);

    font-size:12px;
}

.navbar-nav{
    display:flex;
    align-items:center;

    gap:32px;
}

.nav-link{
    position:relative;

    color:var(--text-muted);

    font-size:15px;
    font-weight:600;

    transition:color var(--transition);
}

.nav-link:hover,
.nav-link.active{
    color:#ffffff;
}

.nav-link::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--gradient-primary);

    transition:width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.navbar-actions{
    display:flex;
    align-items:center;

    gap:18px;
}

.nav-icon-btn{
    position:relative;

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    color:#ffffff;
}

.cart-count{
    position:absolute;

    top:-6px;
    right:-6px;

    width:22px;
    height:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--color-primary);

    color:#07111f;

    font-size:11px;
    font-weight:800;
}

.mobile-toggle{
    display:none;

    color:#ffffff;

    font-size:24px;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;
    align-items:center;

    padding-top:160px;
    padding-bottom:100px;

    background:
    radial-gradient(
        circle at top left,
        rgba(0,212,255,0.15),
        transparent 35%
    ),
    var(--gradient-dark);
}

.hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0.18;

    z-index:0;

    pointer-events:none;
}

.hero .container,
.hero-content,
.hero-text,
.hero-card{
    position:relative;
    z-index:1;
}

.hero-content{
    display:grid;

    grid-template-columns:
    1.1fr 0.9fr;

    gap:70px;

    align-items:center;
}

.hero-text h1{
    margin-bottom:28px;

    font-size:64px;

    line-height:1.05;

    color:#ffffff;

    font-weight:900;
}

.hero-text p{
    max-width:650px;

    margin-bottom:40px;

    color:var(--text-muted);

    font-size:18px;
}

.hero-buttons{
    display:flex;
    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

/* =========================================================
   HERO CARD
========================================================= */

.hero-card{
    padding:36px;

    border-radius:32px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    box-shadow:var(--shadow-xl);
}

.stat-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:22px;
}

.stat-box{
    min-height:180px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:28px;

    border-radius:24px;

    background:#0d1a2b;

    border:
    1px solid rgba(255,255,255,0.05);

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.stat-box::before,
.stat-box::after{
    content:'';
    position:absolute;
    inset:-2px;
    border-radius:26px;
    padding:2px;
    background:linear-gradient(135deg, rgba(0,212,255,0.35), rgba(124,58,237,0.35), rgba(0,212,255,0.15));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:opacity var(--transition), transform var(--transition);
    pointer-events:none;
}

.stat-box::after{
    transform:scale(0.96);
    filter:blur(4px);
}

.stat-box:hover{
    transform:translateY(-6px);
    background:#10253b;
    border-color:rgba(0,212,255,0.35);
    box-shadow:0 18px 40px rgba(0,212,255,0.12);
}

.stat-box:hover::before,
.stat-box:hover::after{
    opacity:1;
}

.stat-box:hover::after{
    transform:scale(1);
}

.stat-box h3{
    margin-bottom:12px;

    color:var(--color-primary);

    font-size:42px;

    font-weight:800;
}

.stat-box p{
    max-width:140px;

    color:var(--text-muted);

    font-size:15px;
}

/* =========================================================
   SERVICES
========================================================= */

.services-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.service-card{
    padding:40px;

    border-radius:30px;

    background:var(--gradient-card);

    border:
    1px solid rgba(255,255,255,0.08);

    transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:var(--border-primary);

    box-shadow:var(--shadow-lg);
}

.service-icon{
    width:78px;
    height:78px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    border-radius:22px;

    background:var(--gradient-primary);

    color:#07111f;

    font-size:32px;
    font-weight:800;
}

.service-icon i{
    font-size:32px;
    line-height:1;
}

.service-card h3{
    margin-bottom:16px;

    color:#ffffff;

    font-size:26px;
}

.service-card p{
    color:var(--text-muted);
}

/* =========================================================
   PRICING
========================================================= */

.pricing{
    background:#091524;
}

.pricing-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.price-card{
    position:relative;

    padding:42px;

    border-radius:30px;

    background:#0f1d2f;

    border:
    1px solid rgba(255,255,255,0.08);

    transition:
    transform var(--transition),
    border-color var(--transition);
}

.price-card:hover{
    transform:translateY(-8px);

    border-color:var(--border-primary);
}

.price-card.popular{
    border:
    2px solid var(--color-primary);

    transform:scale(1.03);
}

.price{
    display:flex;
    justify-content: flex-start;
    gap:6px;

    margin:20px 0;

    font-size:42px;
    font-weight:800;
    line-height:1;

    color:#00d4f9;

    letter-spacing:-1px;

    flex-wrap:nowrap;
}
.price span{

    font-size:15px;
    font-weight:500;

    color:rgba(255,255,255,0.65);

    margin-bottom:6px;

    white-space:nowrap;
}

.features{
    margin-bottom:34px;
}

.features li{
    position:relative;

    padding-left:28px;

    margin-bottom:16px;

    color:var(--text-body);
}

.features li::before{
    content:'✓';

    position:absolute;

    left:0;

    color:var(--color-primary);
}

/* =========================================================
   CALCULATOR
========================================================= */

.calculator{
    background:var(--bg-dark);
}

.calc-wrapper{
    max-width:1050px;

    margin:auto;

    padding:55px;

    border-radius:34px;

    background:#0d1a2b;

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:var(--shadow-xl);
}

.calc-grid{
    display:grid;

    grid-template-columns:
    1fr 0.9fr;

    gap:60px;
}

.calc-group{
    margin-bottom:26px;
}

.calc-group label{
    display:block;

    margin-bottom:12px;

    color:#ffffff;

    font-weight:700;
}

.calc-group select,
.calc-group input{
    width:100%;

    height:62px;

    padding-inline:20px;

    border-radius:16px;

    background:#13263d;

    border:
    1px solid rgba(255,255,255,0.06);

    color:#ffffff;
}

.result-box{
    padding:44px;

    border-radius:28px;

    background:#091524;

    text-align:center;
}

.total{
    margin:20px 0;

    color:var(--color-primary);

    font-size:72px;

    font-weight:900;
}

/* =========================================================
   CTA
========================================================= */

.cta{
    padding:90px 0;

    text-align:center;

    position:relative;

    overflow:hidden;

    background: linear-gradient(rgb(0 142 255), #07111fe3), url(../images/bottom-banner.jpg) center / cover no-repeat;

    color:#07111f;
}

.cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
    pointer-events:none;
}

.cta .container,
.cta h2,
.cta p,
.cta a{
    position:relative;
    z-index:1;
}

.cta h2{
    margin-bottom:24px;

    font-size:52px;

    font-weight:900;
}

.cta p{
    max-width:760px;

    margin:auto auto 40px;

    font-size:20px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    padding-top:100px;

    background:#06101c;
}

.footer-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:50px;
}

.footer-col h4{
    margin-bottom:24px;

    color:#ffffff;
}

.footer-col a{
    display:block;

    margin-bottom:14px;

    color:var(--text-muted);

    transition:color var(--transition);
}

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

.bottom{
    margin-top:70px;

    padding:28px 0;

    border-top:
    1px solid rgba(255,255,255,0.06);

    text-align:center;

    color:var(--text-muted);

    font-size:14px;
}

/* =========================================================
   TOAST
========================================================= */

.toast-container{
    position:fixed;

    top:30px;
    right:30px;

    z-index:var(--z-toast);
}

.toast{
    min-width:320px;

    margin-bottom:16px;

    padding:18px 22px;

    border-radius:18px;

    background:#0f1d2f;

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    box-shadow:var(--shadow-lg);

    transform:translateX(120%);

    opacity:0;

    transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.toast.active{
    transform:translateX(0);

    opacity:1;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu{
    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    height:100vh;

    z-index:var(--z-mobile);

    padding:40px 30px;

    background:#07111f;

    transition:right 0.4s ease;
}

.mobile-menu.active{
    right:0;
}

.mobile-overlay{
    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,0.6);

    opacity:0;
    visibility:hidden;

    z-index:var(--z-overlay);

    transition:0.3s ease;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .hero-text h1{
        font-size:64px;
    }

}

@media(max-width:991px){

    .navbar-nav,
    .navbar-actions .btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero-content,
    .calc-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-text h1{
        font-size:54px;
    }

    .section-title h2{
        font-size:44px;
    }

    .cta h2{
        font-size:46px;
    }

    .price-card.popular{
        transform:none;
    }

}

@media(max-width:768px){

    .section{
        padding:90px 0;
    }

    .hero{
        padding-top:140px;
    }

    .hero-text h1{
        font-size:44px;
    }

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

    .calc-wrapper{
        padding:36px;
    }

    .cta h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .hero-text h1{
        font-size:36px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn,
    .price-btn{
        width:100%;
    }

    .section-title h2{
        font-size:34px;
    }

    .price{
        font-size:48px;
    }

    .total{
        font-size:56px;
    }

    .toast{
        min-width:100%;
    }

}
/* =========================================================
   UTILITIES
========================================================= */

.w-100{
    width:100%;
}

/* =========================================================
   SMALL HERO
========================================================= */

.small-hero{
    position:relative;

    overflow:hidden;

    min-height:38vh;

    padding-top:150px;
    padding-bottom:50px;

    background:
    radial-gradient(circle at top right, rgba(0,212,255,0.12), transparent 28%),
    linear-gradient(135deg, rgba(3,10,18,0.95), rgba(7,17,31,0.98));
}

.small-hero::before,
.small-hero::after{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
}

.small-hero::before{
    background-image:
    linear-gradient(rgba(0,212,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.08) 1px, transparent 1px);
    background-size:80px 80px;
    opacity:0.25;
    animation: smallHeroGrid 6s linear infinite;
}

.small-hero::after{
    background:
    radial-gradient(circle at 20% 20%, rgba(0,212,255,0.14), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(124,58,237,0.16), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(0,212,255,0.10), transparent 16%);
    filter:blur(2px);
    animation:smallHeroPulse 8s ease-in-out infinite;
}

.small-hero .container,
.small-hero h1,
.small-hero p,
.small-hero .btn,
.small-hero .primary-btn,
.small-hero .secondary-btn{
    position:relative;
    z-index:1;
}


/* =========================================================
   FINAL CART PAGE FIX
========================================================= */

.w-100{
    width:100%;
}

/* =========================================================
   SMALL HERO
========================================================= */

.small-hero{
    position:relative;

    overflow:hidden;

    min-height:50vh;

    padding-top:180px;
    padding-bottom:80px;

    background:
    radial-gradient(circle at top right, rgba(0,212,255,0.12), transparent 28%),
    linear-gradient(135deg, rgba(3,10,18,0.95), rgba(7,17,31,0.98));
}

.small-hero::before,
.small-hero::after{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
}

.small-hero::before{
    background-image:
    linear-gradient(rgba(0,212,255,0.33) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.33) 1px, transparent 1px);
    background-size:80px 80px;
    opacity:0.25;
    animation: smallHeroGrid 6s linear infinite;
}

.small-hero::after{
    background:
    radial-gradient(circle at 20% 20%, rgba(0,212,255,0.14), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(124,58,237,0.16), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(0,212,255,0.10), transparent 16%);
    filter:blur(2px);
    animation:smallHeroPulse 8s ease-in-out infinite;
}

.small-hero .container,
.small-hero h1,
.small-hero p,
.small-hero .btn,
.small-hero .primary-btn,
.small-hero .secondary-btn{
    position:relative;
    z-index:1;
}

@keyframes smallHeroGrid{
    from{
        transform:translate3d(0, 0, 0);
    }

    to{
        transform:translate3d(-40px, -40px, 0);
    }
}

@keyframes smallHeroPulse{
    0%,
    100%{
        transform:scale(1);
        opacity:0.55;
    }

    50%{
        transform:scale(1.06);
        opacity:0.85;
    }
}

/* =========================================================
   CART LAYOUT
========================================================= */

.cart-layout{
    display:grid;

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

    gap:40px;

    align-items:start;
}

.cart-main{
    min-width:0;
}

.cart-items{
    display:flex;
    flex-direction:column;

    gap:24px;
}

/* =========================================================
   CART ITEM
========================================================= */

.cart-item{
    display:flex;

    align-items:flex-start;

    gap:24px;

    padding:28px;

    overflow:hidden;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.18);
}

/* =========================================================
   CART CONFIGURATION
========================================================= */

.cart-config{

    margin-top:18px;

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);
}

.cart-config p{

    margin-bottom:10px;

    color:var(--text-muted);

    font-size:14px;

    line-height:1.6;
}

.cart-config p:last-child{

    margin-bottom:0;
}

.cart-config strong{

    color:#ffffff;

    font-weight:600;
}


/* =========================================================
   IMAGE
========================================================= */

.cart-item-image{
    width:150px;
    height:150px;

    overflow:hidden;

    flex-shrink:0;

    border-radius:22px;

    background:#091524;
}

.cart-item-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* =========================================================
   CONTENT
========================================================= */

.cart-item-content{
    flex:1;

    min-width:0;

    display:flex;
    flex-direction:column;
}

.cart-item-top{
    display:flex;

    align-items:flex-start;
    justify-content:space-between;

    gap:20px;

    margin-bottom:20px;
}

.cart-category{
    display:inline-flex;

    margin-bottom:12px;

    color:var(--color-primary);

    font-size:12px;
    font-weight:700;

    letter-spacing:0.08em;

    text-transform:uppercase;
}

.cart-item-title{
    margin:0;

    color:#ffffff;

    font-size:26px;

    line-height:1.2;

    font-weight:800;
}

.cart-remove{
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:14px;

    background:
    rgba(239,68,68,0.12);

    color:var(--color-danger);

    transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.cart-remove:hover{
    transform:scale(1.08);

    background:
    rgba(239,68,68,0.18);
}

/* =========================================================
   CONFIGURATION
========================================================= */

.cart-config{
    margin-bottom:22px;

    padding:20px 22px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);
}

.cart-config p{
    margin-bottom:10px;

    color:var(--text-muted);

    font-size:14px;

    line-height:1.7;
}

.cart-config p:last-child{
    margin-bottom:0;
}

.cart-config strong{
    color:#ffffff;
}

/* =========================================================
   BOTTOM
========================================================= */

.cart-item-bottom{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-top:auto;
}

/* =========================================================
   QUANTITY
========================================================= */

.cart-quantity{
    display:flex;

    align-items:center;

    gap:14px;
}

 qty-btn{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
    rgba(255,255,255,0.06);

    color:#ffffff;

    font-size:18px;
    font-weight:700;

    transition:
    transform 0.3s ease,
    background 0.3s ease;
}

 qty-btn:hover{
    transform:translateY(-2px);

    background:
    rgba(0,212,255,0.12);
}

.cart-quantity span{
    min-width:24px;

    text-align:center;

    color:#ffffff;

    font-size:16px;
    font-weight:700;
}

/* =========================================================
   PRICE
========================================================= */

.cart-price{
    color:var(--color-primary);

    font-size:30px;

    line-height:1;

    font-weight:900;
}

/* =========================================================
   SUMMARY
========================================================= */

.cart-summary{
    position:relative;
}

.summary-card{
    position:sticky;

    top:120px;

    padding:34px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.08);
}

.summary-card h3{
    margin-bottom:30px;

    color:#ffffff;

    font-size:30px;

    font-weight:800;
}

.summary-row,
.summary-total{
    display:flex;

    align-items:center;
    justify-content:space-between;

    margin-bottom:18px;

    color:var(--text-muted);
}

.summary-total{
    margin-top:20px;

    color:#ffffff;

    font-size:22px;

    font-weight:800;
}

.summary-divider{
    height:1px;

    margin:24px 0;

    background:
    rgba(255,255,255,0.08);
}

.summary-actions{
    display:flex;
    flex-direction:column;

    gap:16px;

    margin-top:30px;
}

/* =========================================================
   EMPTY CART
========================================================= */

.empty-cart{
    padding:90px 40px;

    border-radius:32px;

    text-align:center;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.08);
}

.empty-cart-icon{
    margin-bottom:26px;

    font-size:74px;
}

.empty-cart h3{
    margin-bottom:16px;

    color:#ffffff;

    font-size:34px;

    font-weight:800;
}

.empty-cart p{
    margin-bottom:34px;

    color:var(--text-muted);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:40px;
}

.mobile-close{
    color:#ffffff;

    font-size:28px;
}

.mobile-nav{
    display:flex;
    flex-direction:column;

    gap:20px;
}

.mobile-nav-link{
    padding:18px 20px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    color:#ffffff;

    font-weight:600;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .cart-layout{
        grid-template-columns:1fr;
    }

    .summary-card{
        position:relative;

        top:0;
    }

}

@media(max-width:768px){

    .cart-item{
        flex-direction:column;
    }

    .cart-item-image{
        width:100%;
        height:240px;
    }

    .cart-item-bottom{
        flex-direction:column;

        align-items:flex-start;
    }

}

@media(max-width:576px){

    .summary-card{
        padding:26px;
    }

    .cart-item{
        padding:22px;
    }

    .cart-item-title{
        font-size:22px;
    }

    .cart-price{
        font-size:26px;
    }

}
/* =========================================================
   TECH STACK (GRID — LEGACY)
========================================================= */

.tech-stack{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:22px;

    margin-top:40px;
}

.tech-item{
    min-height:110px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:24px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:18px;
    font-weight:700;

    transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.tech-item:hover{
    transform:translateY(-5px);

    border-color:
    rgba(0,212,255,0.25);

    background:
    rgba(0,212,255,0.05);
}

/* =========================================================
   TECH SLIDER
========================================================= */

.tech-slider-section{
    overflow:hidden;
}

.tech-slider-section .section-title{
    margin-bottom:48px;
}

.tech-slider-wrap{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
}

.tech-slider{
    display:flex;
    gap:20px;
    flex:1;
    min-width:0;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    padding:12px 4px 20px;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.tech-slider::-webkit-scrollbar{
    display:none;
}

.tech-slider-nav{
    flex-shrink:0;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(0,212,255,0.28);
    background:rgba(7,17,31,0.92);
    color:var(--color-primary);
    cursor:pointer;
    transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.tech-slider-nav:hover{
    background:rgba(0,212,255,0.12);
    border-color:rgba(0,212,255,0.5);
    box-shadow:0 0 24px rgba(0,212,255,0.18);
}

.tech-slider-nav:active{
    transform:scale(0.96);
}

.tech-slider-card{
    flex:0 0 min(300px, 82vw);
    scroll-snap-align:start;
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:28px 26px;
    border-radius:22px;
    background:
    linear-gradient(145deg, rgba(16,29,49,0.95), rgba(7,17,31,0.98));
    border:1px solid rgba(255,255,255,0.08);
    transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.tech-slider-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,212,255,0.32);
    box-shadow:0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,212,255,0.08);
}

.tech-slider-card-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(0,212,255,0.1);
    border:1px solid rgba(0,212,255,0.22);
    color:var(--color-primary);
}

.tech-slider-card-icon i{
    font-size:26px;
    line-height:1;
}

.tech-slider-card h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

.tech-slider-card p{
    margin:0;
    font-size:14px;
    line-height:1.65;
    color:var(--text-muted);
}

@media(max-width:768px){

    .tech-slider-wrap{
        gap:10px;
    }

    .tech-slider-nav{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .tech-slider-card{
        flex:0 0 min(260px, 78vw);
        padding:24px 22px;
    }

}
/* =========================================================
   FAQ
========================================================= */

.faq-wrapper{
    max-width:950px;

    margin:auto;

    display:flex;
    flex-direction:column;

    gap:20px;
}

.faq-item{
    overflow:hidden;

    border-radius:24px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);
}

.faq-question{
    width:100%;

    min-height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:24px 30px;

    color:#ffffff;

    font-size:18px;
    font-weight:700;

    text-align:left;
}

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:max-height 0.4s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-answer p{
    padding:
    0 30px 28px;

    color:var(--text-muted);

    line-height:1.9;
}
/* =========================================================
   CONTACT PAGE FIX
========================================================= */

.contact-layout{
    display:grid;

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

    gap:40px;

    align-items:start;
}

/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper{
    min-width:0;
}

.contact-form-wrapper .summary-card{
    position:relative;

    top:0;
}

.contact-form-wrapper h3{
    margin-bottom:30px;

    color:#ffffff;

    font-size:32px;

    font-weight:800;
}

/* =========================================================
   FORM GROUP
========================================================= */

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;

    margin-bottom:12px;

    color:#ffffff;

    font-size:15px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:18px 20px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:15px;

    transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.form-group textarea{
    resize:vertical;

    min-height:140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:
    rgba(0,212,255,0.35);

    background:
    rgba(255,255,255,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:
    rgba(255,255,255,0.45);
}

/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info{
    display:flex;
    flex-direction:column;

    gap:24px;
}

.contact-info .service-card{
    min-height:unset;

    padding:30px;
}

.contact-info .service-icon{
    width:70px;
    height:70px;

    margin-bottom:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:
    rgba(0,212,255,0.12);

    font-size:30px;
}

.contact-info h3{
    margin-bottom:14px;

    color:#ffffff;

    font-size:24px;

    font-weight:700;
}

.contact-info p{
    color:var(--text-muted);

    line-height:1.8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

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

}

@media(max-width:576px){

    .contact-form-wrapper h3{
        font-size:28px;
    }

    .contact-info .service-card{
        padding:24px;
    }

}
/* =========================================================
   SELECT DROPDOWN FIX
========================================================= */

.form-group select{
    appearance:none;

    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    background:
    rgba(255,255,255,0.04);

    color:#ffffff;

    background-image:
    linear-gradient(
        45deg,
        transparent 50%,
        rgba(255,255,255,0.7) 50%
    ),
    linear-gradient(
        135deg,
        rgba(255,255,255,0.7) 50%,
        transparent 50%
    );

    background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);

    background-size:
    6px 6px,
    6px 6px;

    background-repeat:no-repeat;
}

/* =========================================================
   OPTION COLORS
========================================================= */

.form-group select option{
    background:#0f172a;

    color:#ffffff;
}

/* =========================================================
   SELECT HOVER
========================================================= */

.form-group select:hover{
    border-color:
    rgba(0,212,255,0.25);
}

/* =========================================================
   SELECT FOCUS
========================================================= */

.form-group select:focus{
    outline:none;

    border-color:
    rgba(0,212,255,0.4);

    box-shadow:
    0 0 0 4px rgba(0,212,255,0.08);
}
/* =========================================================
   AUTH PAGE
========================================================= */

.auth-page{

    padding-top:140px;
    padding-bottom:80px;
}

.auth-page .container{

    max-width:1400px;
}

.auth-layout{

    min-height:700px;
}

/* =========================================================
   AUTH LAYOUT
========================================================= */

.auth-layout{
    display:grid;

    grid-template-columns:
    1.1fr
    520px;

    min-height:
    calc(100vh - 170px);

    overflow:hidden;

    border-radius:36px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.08);
}

/* =========================================================
   LEFT PANEL
========================================================= */

.auth-left{
    position:relative;

    overflow:hidden;

    padding:50px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    background:
    radial-gradient(
        circle at top left,
        rgba(0,212,255,0.22),
        transparent 45%
    ),
    linear-gradient(
        135deg,
        #081120,
        #111827
    );
}

.auth-overlay{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0)
    );
}

.auth-left-content{
    position:relative;

    z-index:2;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    height:100%;

    padding-top:40px;
}

/* =========================================================
   LOGO
========================================================= */

.auth-logo{
    display:flex;
    align-items:center;

    gap:14px;
}

.footer-col a.footer-logo{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:14px;

    margin-bottom:20px;

    text-decoration:none;
}

.footer-logo-img{
    display:block;

    width:52px;
    height:52px;

    object-fit:contain;

    flex-shrink:0;
}

.footer-brand-text{
    display:flex;
    flex-direction:column;
    gap:2px;

    flex:1;
    min-width:0;
}

.footer-brand-text strong{
    color:#ffffff;

    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.footer-brand-text span{
    color:var(--text-muted);

    font-size:12px;
    line-height:1.3;
}

/* =========================================================
   HERO
========================================================= */

.auth-hero{
    max-width:560px;
    margin-bottom:60;
}

.auth-hero h1{
    margin:
    24px 0;

    color:#ffffff;

    font-size:52px;

    line-height:1.1;

    font-weight:900;
}

.auth-hero p{
    color:var(--text-muted);

    font-size:18px;

    line-height:1.9;
}

/* =========================================================
   STATS
========================================================= */

.auth-stats{
    max-width:620px;
    display:grid;
    margin-top:auto;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.auth-stat-card{
    padding:24px;

    border-radius:24px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);
}

.auth-stat-card h3{
    margin-bottom:10px;

    color:#ffffff;

    font-size:34px;

    font-weight:900;
}

.auth-stat-card p{
    color:var(--text-muted);

    font-size:14px;
}

/* =========================================================
   RIGHT PANEL
========================================================= */

.auth-right{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

/* =========================================================
   AUTH CARD
========================================================= */

.auth-card{
    width:100%;

    max-width:420px;
}

.auth-header{
    margin-bottom:28px;
}

.auth-header h2{
    margin-bottom:12px;

    color:#ffffff;

    font-size:42px;

    font-weight:900;
}

.auth-header p{
    color:var(--text-muted);

    line-height:1.8;
}



/* =========================================================
   AUTH FORM
========================================================= */

.auth-form{
    width:100%;
}

.auth-form .form-group{
    margin-bottom:18px;
}

/* =========================================================
   INPUT WRAPPER
========================================================= */

.input-wrapper{
    position:relative;
}

.input-wrapper i{
    position:absolute;

    top:50%;
    left:20px;

    transform:translateY(-50%);

    color:
    rgba(255,255,255,0.4);
}

.input-wrapper input{
    width:100%;

    height:60px;

    padding:
     0 60px 0 55px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:15px;
}

.input-wrapper input:focus{
    border-color:
    rgba(0,212,255,0.3);
}

/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.password-toggle{
    position:absolute;

    top:0;
    right:0;

    width:60px;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;

    background:transparent;

    color:
    rgba(255,255,255,0.5);

    cursor:pointer;

    transition:
    color 0.3s ease;
}

.password-toggle:hover{
    color:#ffffff;
}

/* =========================================================
   OPTIONS
========================================================= */

.auth-options{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-bottom:30px;
}

.remember-me{
    display:flex;
    align-items:center;

    gap:10px;

    color:var(--text-muted);

    font-size:14px;
}

.auth-link{
    color:var(--color-primary);

    font-size:14px;
    font-weight:600;
}

/* =========================================================
   FOOTER
========================================================= */

.auth-footer{
    margin-top:30px;

    text-align:center;

    color:var(--text-muted);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .auth-layout{
        grid-template-columns:1fr;
    }

    .auth-left{
        display:none;
    }

}

@media(max-width:768px){

    .auth-right{
        padding:30px;
    }

    .auth-header h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .social-auth{
        grid-template-columns:1fr;
    }

    .auth-options{
        flex-direction:column;

        align-items:flex-start;
    }

    .auth-right{
        padding:24px;
    }

}
/* =========================================================
   SIGNUP PAGE BALANCE FIX
========================================================= */

.auth-layout{
    align-items:stretch;
}

.auth-right{
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-card{
    width:100%;

    max-width:440px;
}

/* =========================================================
   SIGNUP FORM DENSITY
========================================================= */

.password-strength{
    margin-top:-6px;

    margin-bottom:20px;
}

.strength-bar{
    height:8px;

    overflow:hidden;

    border-radius:999px;

    background:
    rgba(255,255,255,0.08);
}

.strength-fill{
    width:0;

    height:100%;

    border-radius:999px;

    transition:
    width 0.3s ease,
    background 0.3s ease;
}

#strength-text{
    display:block;

    margin-top:10px;

    color:var(--text-muted);

    font-size:13px;
}
/* =========================================================
   AUTH FEATURES
========================================================= */

.auth-features{
    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:34px;
}

.auth-feature{
    display:flex;
    align-items:center;

    gap:10px;

    padding:
    14px 18px;

    border-radius:16px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;

    font-size:14px;
    font-weight:600;

    transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.auth-feature i{
    color:var(--color-primary);

    font-size:15px;
}

.auth-feature:hover{
    transform:translateY(-3px);

    background:
    rgba(255,255,255,0.08);
}
/* =========================================================
   POLICY HERO
========================================================= */

.policy-hero{
    position:relative;

    overflow:hidden;
}

.policy-hero::before{
    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(0,212,255,0.15),
        transparent 40%
    );
}

.policy-hero .section-title{
    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

/* =========================================================
   POLICY HIGHLIGHTS
========================================================= */

.policy-highlights{
    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin-top:40px;
}

.policy-highlight{
    display:flex;
    align-items:center;

    gap:12px;

    padding:
    14px 22px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    color:#ffffff;

    font-size:14px;
    font-weight:600;

    transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.policy-highlight i{
    color:var(--color-primary);

    font-size:15px;
}

.policy-highlight:hover{
    transform:translateY(-4px);

    background:
    rgba(255,255,255,0.08);
}

/* =========================================================
   POLICY CONTENT STYLING
========================================================= */

.policy-wrapper{
    display:flex;
    flex-direction:column;

    gap:28px;
}

.policy-card{
    padding:40px;

    border-radius:28px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.policy-card:hover{
    transform:translateY(-4px);

    border-color:
    rgba(0,212,255,0.25);
}

.policy-card h2{
    margin-bottom:24px;

    color:#ffffff;

    font-size:30px;

    font-weight:800;
}

.policy-card h3{
    margin-top:30px;
    margin-bottom:16px;

    color:#ffffff;

    font-size:20px;

    font-weight:700;
}

.policy-card p{
    margin-bottom:18px;

    color:var(--text-muted);

    line-height:1.9;

    font-size:16px;
}

.policy-card ul{
    margin:
    20px 0 24px 24px;
}

.policy-card ul li{
    margin-bottom:14px;

    color:var(--text-muted);

    line-height:1.8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

    .policy-card{
        padding:28px;
    }

    .policy-card h2{
        font-size:24px;
    }

    .policy-highlights{
        gap:14px;
    }

}

@media(max-width:576px){

    .policy-highlights{
        flex-direction:column;
    }

    .policy-highlight{
        justify-content:center;
    }

}

/* =========================================================
   COOKIE POPUP
========================================================= */

.cookie-popup{

    position:fixed;

    left:30px;
    right:30px;
    bottom:30px;

    z-index:9999;

    max-width:1100px;

    margin:auto;

    padding:24px 28px;

    border-radius:24px;

    background:
    rgba(7,17,31,0.96);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 24px 60px rgba(0,0,0,0.35);

    transform:
    translateY(120px);

    opacity:0;
    visibility:hidden;

    transition:
    all 0.4s ease;
}

.cookie-popup.active{

    transform:
    translateY(0);

    opacity:1;
    visibility:visible;
}

.cookie-content{

    display:flex;

    align-items:center;

    gap:24px;
}

.cookie-icon{

    width:64px;
    height:64px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:
    rgba(0,212,255,0.12);

    color:var(--color-primary);

    font-size:28px;
}

.cookie-text{

    flex:1;
}

.cookie-text h4{

    margin-bottom:8px;

    color:#ffffff;

    font-size:20px;
    font-weight:700;
}

.cookie-text p{

    color:var(--text-muted);

    font-size:14px;

    line-height:1.8;
}

.cookie-text a{

    color:var(--color-primary);

    font-weight:600;
}

.cookie-actions{

    display:flex;
    align-items:center;

    gap:14px;
}

.cookie-btn{

    min-width:150px;
    height:52px;

    border-radius:16px;

    font-size:14px;
    font-weight:700;

    transition:all 0.3s ease;
}

.cookie-btn.primary{

    background:var(--gradient-primary);

    color:#07111f;
}

.cookie-btn.primary:hover{

    transform:translateY(-2px);
}

.cookie-btn.secondary{

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#ffffff;
}

.cookie-btn.secondary:hover{

    background:
    rgba(255,255,255,0.08);
}

/* =========================================================
   COOKIE RESPONSIVE
========================================================= */

@media(max-width:768px){

    .cookie-popup{

        left:16px;
        right:16px;
        bottom:16px;

        padding:22px;
    }

    .cookie-content{

        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-actions{

        width:100%;

        flex-direction:column;
    }

    .cookie-btn{

        width:100%;
    }
}

/* =========================================================
   CONFIGURATOR PREVIEW
========================================================= */

.calculator-preview{

    position:relative;

    overflow:hidden;
}

.preview-wrapper{

    display:grid;

    grid-template-columns:
    1.1fr 0.9fr;

    gap:60px;

    align-items:center;
}

.preview-content h2{

    margin-bottom:24px;

    font-size:clamp(2.4rem,5vw,4rem);

    line-height:1.15;
}

.preview-content p{

    max-width:680px;

    margin-bottom:34px;

    color:var(--text-muted);

    font-size:1.05rem;

    line-height:1.9;
}

.preview-features{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;
}

.preview-feature{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);

    color:#ffffff;

    font-size:15px;

    font-weight:500;
}

.preview-feature i{

    color:var(--color-primary);

    font-size:18px;
}

.preview-card{

    padding:40px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(0,212,255,0.08),
        rgba(255,255,255,0.03)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(16px);
}

.preview-stat-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:22px;
}

.preview-stat{

    padding:28px 20px;

    border-radius:20px;

    text-align:center;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);
}

.preview-stat h3{

    margin-bottom:12px;

    color:#ffffff;

    font-size:1.8rem;

    font-weight:700;
}

.preview-stat p{

    color:var(--text-muted);

    font-size:14px;
}

@media(max-width:992px){

    .preview-wrapper{

        grid-template-columns:1fr;
    }

    .preview-features{

        grid-template-columns:1fr;
    }

}

/* =========================================================
   SOLUTIONS PREVIEW
========================================================= */

/* =========================================================
   SOLUTIONS SHOWCASE (HOME)
========================================================= */

.solutions-preview{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    border-top:1px solid rgba(0,212,255,0.12);
    border-bottom:1px solid rgba(0,212,255,0.12);
    background:
    linear-gradient(180deg, #050d18 0%, #0a1628 50%, #050d18 100%);
}

.solutions-preview-bg{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(0,212,255,0.10), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(0,119,255,0.08), transparent 50%);
}

.solutions-preview-bg::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.solutions-preview-inner{
    position:relative;
    z-index:1;
}

.solutions-preview-header{
    max-width:640px;
    margin-bottom:56px;
    text-align:left;
}

.solutions-preview-header .badge{
    margin-bottom:20px;
}

.solutions-preview-header h2{
    margin-bottom:18px;
    font-size:clamp(36px, 5vw, 52px);
    line-height:1.12;
    font-weight:800;
    color:var(--text-heading);
}

.solutions-preview-header p{
    margin:0;
    max-width:560px;
    color:var(--text-muted);
    font-size:18px;
    line-height:1.75;
}

.solutions-showcase{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.solution-showcase-card{
    position:relative;
    display:grid;
    grid-template-columns:auto auto 1fr;
    align-items:center;
    gap:28px;
    padding:32px 36px;
    border-radius:20px;
    background:rgba(7,17,31,0.72);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.solution-showcase-card::before{
    content:'';
    position:absolute;
    left:0;
    top:20%;
    bottom:20%;
    width:3px;
    border-radius:0 4px 4px 0;
    background:var(--gradient-primary);
    opacity:0;
    transition:opacity var(--transition);
}

.solution-showcase-card:hover{
    transform:translateX(8px);
    border-color:rgba(0,212,255,0.28);
    box-shadow:0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,212,255,0.06);
}

.solution-showcase-card:hover::before{
    opacity:1;
}

.solution-showcase-index{
    font-size:13px;
    font-weight:800;
    letter-spacing:0.12em;
    color:rgba(0,212,255,0.45);
    min-width:32px;
}

.solution-showcase-icon{
    width:64px;
    height:64px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(0,212,255,0.08);
    border:1px solid rgba(0,212,255,0.22);
    color:var(--color-primary);
}

.solution-showcase-icon i{
    font-size:26px;
    line-height:1;
}

.solution-showcase-body{
    min-width:0;
}

.solution-showcase-body h3{
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
    color:#ffffff;
}

.solution-showcase-body p{
    margin-bottom:16px;
    max-width:720px;
    color:var(--text-muted);
    font-size:15px;
    line-height:1.75;
}

.solution-showcase-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:600;
    color:var(--color-primary);
    transition:gap var(--transition);
}

.solution-showcase-link i{
    font-size:12px;
    transition:transform var(--transition);
}

.solution-showcase-card:hover .solution-showcase-link{
    gap:14px;
}

.solution-showcase-card:hover .solution-showcase-link i{
    transform:translateX(4px);
}

.solutions-preview .solutions-cta{
    margin-top:48px;
    padding-top:48px;
    border-top:1px solid rgba(255,255,255,0.06);
    display:flex;
    justify-content:flex-start;
    gap:16px;
    flex-wrap:wrap;
}

@media(max-width:992px){

    .solution-showcase-card{
        grid-template-columns:auto 1fr;
        grid-template-rows:auto auto;
        gap:20px 24px;
        padding:28px;
    }

    .solution-showcase-index{
        grid-column:1;
        grid-row:1;
    }

    .solution-showcase-icon{
        grid-column:1;
        grid-row:2;
    }

    .solution-showcase-body{
        grid-column:2;
        grid-row:1 / span 2;
    }

}

@media(max-width:576px){

    .solutions-preview{
        padding:80px 0;
    }

    .solutions-preview-header h2{
        font-size:32px;
    }

    .solution-showcase-card{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .solution-showcase-index,
    .solution-showcase-icon,
    .solution-showcase-body{
        grid-column:1;
        grid-row:auto;
    }

    .solutions-preview .solutions-cta{
        flex-direction:column;
    }

    .solutions-preview .solutions-cta .primary-btn,
    .solutions-preview .solutions-cta .secondary-btn{
        width:100%;
        justify-content:center;
    }

}


/* =========================================================
   CHECKOUT PAGE
========================================================= */

.checkout-layout{

    display:grid;

    grid-template-columns:
    1.2fr 0.8fr;

    gap:40px;

    align-items:start;
}

.checkout-card{

    padding:40px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(16px);
}

.checkout-card-header{

    margin-bottom:32px;
}

.checkout-card-header h2{

    margin-bottom:12px;

    color:#ffffff;

    font-size:2rem;
}

.checkout-card-header p{

    color:var(--text-muted);

    line-height:1.8;
}

.checkout-form .form-row{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;
}

.checkout-form .form-group{

    margin-bottom:24px;
}

.checkout-form label{

    display:block;

    margin-bottom:12px;

    color:#ffffff;

    font-weight:600;
}

.checkout-form textarea{

    min-height:130px;

    resize:vertical;
}

.checkout-form .input-wrapper.textarea{

    align-items:flex-start;
}

.checkout-form .input-wrapper.textarea i{

    margin-top:18px;
}

.checkout-terms{

    margin:20px 0 30px;
}

.checkbox-wrapper{

    display:flex;

    align-items:flex-start;

    gap:14px;

    color:var(--text-muted);

    line-height:1.7;
}

.checkbox-wrapper input{

    margin-top:5px;

    accent-color:
    var(--color-primary);
}

.checkbox-wrapper a{

    color:var(--color-primary);

    font-weight:600;
}

/* =========================================================
   CHECKOUT SUMMARY
========================================================= */

.sticky-card{

    position:sticky;

    top:120px;
}

.checkout-items{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin-bottom:30px;
}

.checkout-item{

    padding:22px;

    border-radius:22px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);
}

.checkout-item-top{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-bottom:14px;
}

.checkout-item-top h4{

    margin-top:8px;

    color:#ffffff;

    font-size:1.05rem;
}

.checkout-category{

    display:inline-flex;

    padding:6px 12px;

    border-radius:30px;

    background:
    rgba(0,212,255,0.08);

    color:var(--color-primary);

    font-size:12px;

    font-weight:600;
}

.checkout-meta{

    color:var(--text-muted);

    font-size:14px;
}

.checkout-totals{

    margin-top:24px;

    padding-top:24px;

    border-top:
    1px solid rgba(255,255,255,0.08);
}

.summary-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:18px;

    color:var(--text-muted);
}

.summary-row strong{

    color:#ffffff;
}

.summary-row.total{

    margin-top:24px;

    padding-top:24px;

    border-top:
    1px solid rgba(255,255,255,0.08);

    font-size:1.15rem;

    font-weight:700;
}

.summary-row.total strong{

    color:var(--color-primary);

    font-size:1.4rem;
}

/* =========================================================
   SECURITY
========================================================= */

.checkout-security{

    margin-top:30px;

    display:flex;

    flex-direction:column;

    gap:16px;
}

.security-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    color:#ffffff;

    font-size:14px;

    font-weight:500;
}

.security-item i{

    color:var(--color-primary);
}

/* =========================================================
   CHECKOUT RESPONSIVE
========================================================= */

@media(max-width:992px){

    .checkout-layout{

        grid-template-columns:1fr;
    }

    .sticky-card{

        position:relative;

        top:0;
    }

}

@media(max-width:768px){

    .checkout-card{

        padding:28px;
    }

    .checkout-form .form-row{

        grid-template-columns:1fr;
    }

    .checkout-item-top{

        flex-direction:column;
    }

}

/* =========================================================
   REGION DROPDOWN (DESKTOP)
========================================================= */

.region-dropdown {
    position: relative;
    display: inline-block;
}

.region-dropdown-btn {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.region-dropdown-btn:hover {
    border-color: var(--border-primary);
    background: rgba(0, 212, 255, 0.08);
}

.region-dropdown-btn i:first-child {
    font-size: 16px;
    color: var(--color-primary);
}

.region-dropdown-btn .fa-chevron-down {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.region-dropdown.open .region-dropdown-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.region-dropdown.open .region-dropdown-btn {
    border-color: var(--border-primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.region-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 240px;
    background: #0d1a2b; /* matches var(--bg-dark-secondary) */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

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

.region-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
}

.region-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.region-item.active {
    color: var(--color-primary);
    background: rgba(0, 212, 255, 0.06);
    font-weight: 600;
}

.region-item i {
    font-size: 15px;
    width: 18px;
    text-align: center;
}

/* =========================================================
   REGION DROPDOWN (MOBILE)
========================================================= */

.mobile-region-selector {
    margin: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-region-selector label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-select-wrapper {
    position: relative;
    width: 100%;
}

.mobile-region-select {
    width: 100%;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    color: #ffffff;
    padding: 0 44px;
    font-size: 15px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
}

.mobile-region-select:focus {
    border-color: var(--border-primary);
    background: rgba(0, 212, 255, 0.04);
}

.mobile-select-wrapper .select-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--color-primary);
    pointer-events: none;
}

.mobile-select-wrapper .caret-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-muted);
    pointer-events: none;
}




