:root {
    --primary_color: #4d41bd;
    --secondary_color: #868686;
    --white_color: #ffffff;
    --white_off: #ffffff;
    --black_color: #000000;
    --bg_sections: #101010;
    --dark_color: #252525;
    --deeb_dark: #181818;
    --primary_font: 'Inter', sans-serif;
    /* ================= */
    --transition: 0.3s ease;
    --raduis: 12px;
    --danger_color: #ad363b;
    --bg_danger: #5c1a12a4;
    --border_color: rgba(255, 255, 255, 0.12);
}
.about_page_section{
    min-height: 100vh;
    align-content: center;
    overflow: hidden;
}

.section11-module__XZ044a__gradientWrapper {
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: 35%;
    left: 0;
}
.blurry-gradient-module__gkYgHG__blurryGradient {
    justify-content: center;
    width: 100%;
    display: flex;
    position: absolute;
    bottom: -20.8333vw;
    left: 0;
}

.blurry-gradient-module__gkYgHG__mask {
    filter: blur(20px);
    -webkit-mask-composite: source-in, xor;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 41.6667vw;
    display: flex;
        -webkit-mask-image: radial-gradient(closest-side, #fff 0, #fff0 100%), linear-gradient(#fff 50%, #fff0 55%);
    mask-image: radial-gradient(closest-side, #fff 0, #fff0 100%), linear-gradient(#fff 50%, #fff0 55%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}
.blurry-gradient-module__gkYgHG__gradient {
    --ease-in-out-quad: cubic-bezier(.455, .03, .515, .955);
    animation: blurry-gradient-module__gkYgHG__moveInCircle 12s linear 0s infinite forwards, blurry-gradient-module__gkYgHG__alive 2.5s var(--ease-in-out-quad) 0s infinite alternate;
    aspect-ratio: 1;
    background: linear-gradient(90deg, #ff1d1d, var(--primary_color) 59.08%, var(--primary_color) 80%, #f51313);
    background: linear-gradient(90deg, #581dff, var(--primary_color) 59.08%, #f51313 80%, #00000000);
    width: 100%;
}




@keyframes blurry-gradient-module__gkYgHG__moveInCircle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
}


@keyframes blurry-gradient-module__gkYgHG__alive {
    0% {
        filter: saturate(2) hue-rotate(-20deg);
    }
    100% {
        filter: saturate() hue-rotate();
    }
}



.video_centerpage{
    border-radius: 1.04167vw;
    height: 22.9688vw;
    box-shadow: 0 5px 5px #000e;
}

.video_centerpage video {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1.04167vw;
    width: 100%;
    height: 100%;
    position: relative;
}

.right_vid{
    position: relative;
    height: 28.0208vw;
    width: 19.2188vw;
}
.section11-module__XZ044a__glassBlur {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 0;
    position: absolute;
    inset: 0;
}



.section11-module__XZ044a__glassBlurRight {
    clip-path: none;
    -webkit-mask-image: url(../img/right-mask.avif);
    mask-image: url(../img/right-mask.avif);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.img_absRight{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    color: transparent;
}

/* ==============================
   Magnetometer section (cards + video)
================================ */
.Magnetometer_section{
    padding: clamp(28px, 5vw, 70px) 0;
}

.magneto_grid{
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.25fr);
    gap: clamp(14px, 2.2vw, 22px);
    align-items: stretch;
}

.magneto_left{
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: clamp(14px, 2.2vw, 22px);
}

.magneto_card{
    position: relative;
    overflow: hidden;
    border-radius: clamp(14px, 2.2vw, 22px);
    background: #0c0f16;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    min-height: 400px;
    isolation: isolate;
}

.magneto_card::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 420px at 20% 10%, rgba(88,29,255,.28), rgba(0,0,0,0) 55%),
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
    z-index: 0;
    pointer-events: none;
}

.magneto_card__media{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.magneto_card__media img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.02);
}

.magneto_card__content{
    position: relative;
    z-index: 1;
    padding: clamp(16px, 2.2vw, 28px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}

.magneto_card__title{
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    font-size: clamp(22px, 2.2vw, 34px);
}

.magneto_card--bottom{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 10px;
}

.magneto_card--bottom .magneto_card__media{
    position: relative;
    inset: auto;
    /* border-radius: clamp(12px, 2vw, 18px); */
    overflow: hidden;
}

.magneto_card__media--portrait img{
    object-position: center;
}

.magneto_btn{
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255,255,255,.92);
    color: #0b0e14;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease;
}

.magneto_btn:hover{
    transform: translateY(-1px);
    background: #fff;
}

.magneto_card__hint{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    letter-spacing: .06em;
    font-size: 12px;
}

.magneto_right{
    position: relative;
    overflow: hidden;
    border-radius: clamp(14px, 2.2vw, 22px);
    box-shadow: 0 18px 48px rgba(0,0,0,.5);
    min-height: 520px;
    background: #0b0e14;
    isolation: isolate;
}

.magneto_right__video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
}

.magneto_right__overlay{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 20% 20%, rgba(88,29,255,.32), rgba(0,0,0,0) 55%),
        linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
    z-index: 1;
}

.magneto_right__content{
    position: relative;
    z-index: 2;
    padding: clamp(18px, 2.4vw, 34px);
    max-width: 560px;
}

.magneto_right__title{
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.06;
    font-size: clamp(24px, 2.4vw, 38px);
}

.magneto_right__desc{
    margin: 0;
    color: rgba(255,255,255,.75);
    font-weight: 600;
    line-height: 1.5;
    font-size: clamp(13px, 1.15vw, 16px);
}

@media (max-width: 991.98px){
    .magneto_grid{
        grid-template-columns: 1fr;
    }
    .magneto_right{
        min-height: 420px;
    }
}

@media (max-width: 575.98px){
    .magneto_card--bottom{
        grid-template-columns: 1fr;
    }
    
}

/* ==============================
   Breadcrumb / Hero (Dynamic Light Effects)
================================ */
.breadcrump_section{
    padding: clamp(36px, 6vw, 80px) 0 clamp(26px, 4.5vw, 60px);
    background:
        radial-gradient(900px 520px at 50% 52%, rgba(255, 90, 0, .32), rgba(0,0,0,0) 58%),
        radial-gradient(800px 520px at 50% 40%, rgba(170, 30, 255, .22), rgba(0,0,0,0) 62%),
        #05060a;
    position: relative;
    overflow: hidden;
}

.breadcrump_section::before{
    content:"";
    position:absolute;
    inset:-2px;
    background: radial-gradient(700px 180px at 50% 10%, rgba(255,255,255,.10), rgba(0,0,0,0) 60%);
    pointer-events:none;
}

.bread_hero{
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.bread_hero__heading{
    margin-bottom: clamp(18px, 2.8vw, 26px);
}

.bread_hero__title{
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,.92);
    font-size: clamp(36px, 5.2vw, 70px);
    line-height: 1.02;
}

.bread_hero__subtitle{
    margin: 10px 0 0 0;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    font-size: clamp(14px, 1.4vw, 18px);
}

.bread_hero__visual{
    display: flex;
    justify-content: center;
    margin: clamp(8px, 1.8vw, 14px) auto clamp(18px, 3vw, 26px);
}

.bread_hero__img{
    width: min(980px, 100%);
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,.55));
    border-radius: 16px;
    object-fit: cover;
}

.bread_hero__controls{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(20, 22, 30, .72);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 44px rgba(0,0,0,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: fit-content;
    margin: 0 auto;
}

.bread_ctrl{
    appearance: none;
    border: 0;
    outline: none;
    background: rgba(0,0,0,0);
    color: rgba(255,255,255,.9);
    height: 46px;
    border-radius: 999px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.bread_ctrl:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.06);
}

.bread_ctrl--power{
    padding: 0 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);
}

.bread_toggle{
    width: 26px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.bread_toggle::after{
    content:"";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff4a8f, #b12cff);
    position: absolute;
    left: 2px;
    top: 2px;
    box-shadow: 0 6px 14px rgba(177,44,255,.35);
}

.bread_ctrl__text{
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.bread_ctrl:not(.bread_ctrl--power):not(.bread_ctrl--cta){
    width: 46px;
    padding: 0;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);
}

.bread_ctrl__dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.bread_ctrl__bars{
    width: 18px;
    height: 12px;
    border-radius: 4px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.22)) 0 2px / 100% 2px no-repeat,
        linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.22)) 0 8px / 100% 2px no-repeat;
}

.bread_ctrl__bars--thin{
    background:
        linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.22)) 0 3px / 100% 1px no-repeat,
        linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.22)) 0 8px / 100% 1px no-repeat;
}

.bread_ctrl__scan{
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.22), rgba(0,0,0,0) 60%),
        linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.18)) 50% 50% / 100% 2px no-repeat;
}

.bread_ctrl__glasses{
    width: 18px;
    height: 10px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 25% 50%, rgba(255,255,255,.30), rgba(0,0,0,0) 58%),
        radial-gradient(circle at 75% 50%, rgba(255,255,255,.30), rgba(0,0,0,0) 58%),
        linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.22)) 50% 50% / 40% 2px no-repeat;
}

.bread_ctrl--cta{
    padding: 0 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);
}

.bread_ctrl__arrow{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    position: relative;
}

.bread_ctrl__arrow::before{
    content:"";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,.75);
    border-top: 2px solid rgba(255,255,255,.75);
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotate(45deg);
}

@media (max-width: 767.98px){
    .bread_hero__controls{
        grid-auto-flow: row;
        border-radius: 22px;
        width: min(520px, 100%);
    }
    .bread_ctrl--cta{
        width: 100%;
        justify-content: space-between;
    }
    .bread_ctrl--power{
        width: 100%;
        justify-content: center;
    }
}

/* ==============================
   Solutions page sections (dark)
================================ */
.our_solutions_section{
    padding: clamp(40px, 6vw, 84px) 0;
    background: var(--deeb_dark);
}

.sol_choose_head{
    display: flex;
    justify-content: center;
    margin-bottom: clamp(22px, 4vw, 44px);
}

.sol_choose_title{
    margin: 0 0 20px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: rgba(255,255,255,.92);
    font-size: clamp(26px, 3.5vw, 44px);
}

.sol_choose_muted{
    color: rgba(255,255,255,.55);
    font-weight: 700;
}

.sol_choose_grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: clamp(14px, 2.2vw, 22px);
    align-items: stretch;
}

.sol_plan_card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sol_plan_card::before{
    content:"";
    position:absolute;
    inset: -2px;
    background:
        radial-gradient(650px 220px at 50% 0%, rgba(88,29,255,.18), rgba(0,0,0,0) 62%),
        radial-gradient(600px 240px at 50% 110%, rgba(255,90,0,.10), rgba(0,0,0,0) 70%);
    pointer-events:none;
}

.sol_plan_card--featured{
    background: rgba(255,255,255,.06);
    border-color: rgba(88,29,255,.28);
    transform: translateY(-6px);
}

.sol_plan_title{
    margin: 2px 0 6px;
    color: rgba(255,255,255,.95);
    font-weight: 800;
    letter-spacing: -0.015em;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.sol_plan_price{
    margin: 0;
    color: rgba(255,255,255,.78);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.sol_plan_note{
    margin: 8px 0 14px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.sol_plan_bundle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 16px;
    position: relative;
    z-index: 1;
}

.sol_plan_img{
    width: 86px;
    height: 86px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}

.sol_plan_img--small{
    width: 100px;
    height: 100px;
}

.sol_plan_plus{
    color: rgba(255,255,255,.55);
    font-weight: 900;
    font-size: 18px;
}

.sol_plan_included{
    margin: 0;
    color: rgba(255,255,255,.62);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.sol_plan_desc{
    margin: 8px auto 16px;
    color: rgba(255,255,255,.50);
    font-weight: 500;
    font-size: 15px;
    max-width: 240px;
    position: relative;
    z-index: 1;
}

/* .sol_plan_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0b0e14;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, background .2s ease;
}

.sol_plan_btn:hover{
    transform: translateY(-1px);
    background: #fff;
} */

.get_5_off_section{
    padding: clamp(44px, 6.5vw, 90px) 0;
    background: #05060a;
}

.off5_head{
    max-width: 760px;
    margin: 0 auto clamp(22px, 3.2vw, 34px);
    text-align: center;
}

.off5_title{
    margin: 0 0 10px;
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,.92);
    line-height: 1.05;
}

.off5_subtitle{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.6;
    font-size: 20px;
}

.off5_banner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
    max-width: 1100px;
    margin: 0 auto clamp(18px, 3vw, 30px);
}

.off5_banner_img{
    min-height: 220px;
    position: relative;
}

.off5_banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
}

.off5_banner_content{
    padding: 22px 22px;
    background: rgba(255,255,255,.92);
    color: #0b0e14;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.off5_banner_title{
    margin: 0 0 4px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 35px;
}

.off5_banner_desc{
    margin: 0 0 12px;
    font-weight: 600;
    opacity: .75;
    font-size: 17px;
}

.off5_banner_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 25px;
    border-radius: 999px;
    background: var(--bg_sections);
    color: var(--white_color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform .2s ease;
}

.off5_banner_btn:hover{
    transform: translateY(-1px);
}

.off5_banner_small{
    margin: 10px 0 0;
    font-size: 17px;
    opacity: .65;
    font-weight: 600;
}

.off5_features{
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: clamp(12px, 2.1vw, 20px);
    max-width: 1100px;
    margin: 0 auto;
}

.off5_feature_card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    min-height: 150px;
}

.off5_feature_icon{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    margin-bottom: 50px;
    font-size: 20px;
}

.off5_feature_title{
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,.92);
    font-size: 18px;
}

.off5_feature_desc{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.55;
    font-size: 15px;
}

@media (max-width: 991.98px){
    .sol_choose_grid{
        grid-template-columns: 1fr 1fr;
        /* max-width: 520px; */
        margin: 0 auto;
    }
    .sol_plan_card--featured{
        transform: none;
    }
    /* .off5_features{
        max-width: 520px;
    } */
    .off5_features{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px){
    .sol_choose_grid{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 567px){
    .off5_features{
        grid-template-columns: 1fr ;
    }
    .off5_banner{
        grid-template-columns: 1fr;
    }
    .off5_banner_content{
        align-items: center;
        text-align: center;
    }
}

/* ==============================
   About slider (text + Swiper gallery)
================================ */
.slider_about{
    padding: clamp(44px, 6vw, 84px) 0;
    background: #ffffff;
}

.slider_about_head{
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    margin-bottom: clamp(18px, 3vw, 30px);
}

.slider_about_title{
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #101114;
    font-size: clamp(18px, 2.1vw, 30px);
}

.slider_about_texts{
    display: grid;
    gap: 10px;
}

.slider_about_texts p{
    margin: 0;
    color: rgba(16, 17, 20, .70);
    font-weight: 600;
    line-height: 1.55;
    font-size: 12px;
}

.about_gallery_swiper{
    width: 100%;
}

.about_gallery_swiper .swiper-wrapper{
    align-items: stretch;
}

.about_gallery_swiper .swiper-slide{
    overflow: hidden;
    background: #f3f4f7;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    height: auto;
}

.about_gallery_swiper .swiper-slide img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.about_gallery_swiper .swiper-pagination{
    position: static;
    margin-top: 14px;
}

.about_gallery_swiper .swiper-pagination-bullet{
    background: rgba(16, 17, 20, .25);
    opacity: 1;
}

.about_gallery_swiper .swiper-pagination-bullet-active{
    background: rgba(16, 17, 20, .75);
}

@media (max-width: 991.98px){
    .slider_about_head{
        grid-template-columns: 1fr;
    }
    /* .about_gallery_swiper .swiper-slide{
        height: 220px;
    } */
}

/* ==============================
   What we do (dark + Swiper)
================================ */
.whatwedo_section{
    padding: clamp(52px, 7vw, 92px) 0;
    background: #07080b;
    color: rgba(255,255,255,.9);
    position: relative;
}

.whatwedo_kicker{
    max-width: 700px;
    margin: 0 auto clamp(22px, 4vw, 44px);
    text-align: center;
    color: rgba(255,255,255,.85);
    font-weight: 800;
    line-height: 1.35;
    font-size: 14px;
}

.whatwedo_title{
    margin: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(36px, 6vw, 68px);
}

.whatwedo_subtitle{
    margin: 14px auto 0;
    max-width: 520px;
    text-align: center;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    line-height: 1.5;
}

.whatwedo_subtitle span{
    color: rgba(255,255,255,.9);
    font-weight: 900;
}

.whatwedo_media_card{
    max-width: 1000px;
    margin: clamp(26px, 4.2vw, 44px) auto 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0,0,0,.55);
    position: relative;
}

.whatwedo_swiper .swiper-slide{
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0d12;
}

.whatwedo_swiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
}

.whatwedo_swiper .swiper-pagination{
    bottom: 10px !important;
}

.whatwedo_swiper .swiper-pagination-bullet{
    background: rgba(255,255,255,.30);
    opacity: 1;
}

.whatwedo_swiper .swiper-pagination-bullet-active{
    background: rgba(255,255,255,.85);
}

.whatwedo_media_labels{
    position: absolute;
    top: 14px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    z-index: 2;
    pointer-events: none;
}

.whatwedo_label{
    display: grid;
    gap: 2px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.whatwedo_label_title{
    font-weight: 900;
    font-size: 12px;
    color: rgba(255,255,255,.92);
}

.whatwedo_label_desc{
    font-weight: 700;
    font-size: 11px;
    color: rgba(255,255,255,.65);
}

.whatwedo_bottom{
    max-width: 1000px;
    margin: clamp(20px, 4vw, 44px) auto 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.whatwedo_bottom_left p{
    margin: 0 0 12px 0;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    line-height: 1.75;
    font-size: 15px;
}

.whatwedo_bottom_right{
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-size: clamp(18px, 2.1vw, 26px);
    color: rgba(255,255,255,.92);
}

.whatwedo_footer_img{
    max-width: 600px;
    position: relative;
    margin: clamp(26px, 5vw, 62px) auto 0;
    z-index: 9;
}

.whatwedo_footer_img img{
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 34px 70px rgba(0,0,0,.65));
    opacity: .95;
}

@media (max-width: 991.98px){
    .whatwedo_swiper .swiper-slide{
        height: 280px;
    }
    .whatwedo_bottom{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px){
    .whatwedo_swiper .swiper-slide{
        height: 240px;
    }
}

/* ==============================
   Trade show page
================================ */
.tradeshow_page{
    padding: clamp(34px, 5vw, 64px) 0 clamp(44px, 6vw, 86px);
    background: #05060a;
    color: rgba(255,255,255,.9);
    padding-top: 120px;
}

.tradeshow_hero{
    margin: 0 auto clamp(26px, 4.2vw, 44px);
    position: relative;
}

.tradeshow_hero_media{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: #0b0d12;
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.tradeshow_hero_media img ,
.tradeshow_hero_media video{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    /* z-index: 9; */
}

.tradeshow_hero_overlay{
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(900px 420px at 50% 55%, rgba(0, 170, 255, .28), rgba(0,0,0,0) 55%),
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)); */
    pointer-events: none;
}

.tradeshow_hero_content{
    text-align: center;
    padding: 16px 10px 0;
}

.tradeshow_hero_kicker{
    margin: 0 0 6px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    font-size: 15px;
}

.tradeshow_hero_title{
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(34px, 5.2vw, 62px);
}

.tradeshow_hero_desc{
    margin: 14px auto 0;
    max-width: 780px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.7;
    font-size: 14px;
}

.tradeshow_list{
    margin: 0 auto clamp(28px, 4.2vw, 46px);
    border-top: 1px solid rgba(255,255,255,.10);
}

.tradeshow_row{
    display: grid;
    grid-template-columns: 170px 1.5fr 1fr 90px;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.tradeshow_date{
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: -0.01em;
    font-size: 16px;
}

.tradeshow_event{
    font-weight: 500;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.tradeshow_place{
    color: var(--white_off);
    font-weight: 650;
    font-size: 14px;
}

.tradeshow_action{
    display: flex;
    justify-content: flex-end;
}

.tradeshow_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4d41bd, #4d41bd);
    color: var(--white_color);
    text-decoration: none;
    font-weight: 900;
    font-size: 11px;
    box-shadow: 0 14px 30px rgba(0, 166, 255, .25);
    transition: transform .18s ease;
}

.tradeshow_btn:hover{
    transform: translateY(-1px);
}

.tradeshow_request{
    margin: 0 auto clamp(34px, 5vw, 62px);
    padding-top: 10px;
}

.tradeshow_request_title{
    margin: 0 0 4px;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 30px;
    color: rgba(255,255,255,.9);
}

.tradeshow_request_desc{
    margin: 0 0 14px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    font-size: 20px;
}


.tradeshow_bottom{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 54px);
    padding-top: clamp(22px, 4vw, 40px);
}

.tradeshow_bottom_col h3{
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 30px;
    color: rgba(255,255,255,.9);
}

.tradeshow_bottom_col p{
    margin: 0 0 10px;
    color: rgba(255,255,255,.50);
    font-weight: 500;
    line-height: 1.75;
    font-size: 20px;
}

.tradeshow_bottom_strong{
    color: rgba(255,255,255,.9) !important;
    font-weight: 900 !important;
    margin-top: 14px !important;
}

.tradeshow_bottom_muted{
    color: rgba(255,255,255,.40) !important;
    font-weight: 700 !important;
}

@media (max-width: 991.98px){
    .tradeshow_row{
        grid-template-columns: 150px 1.2fr 1fr 90px;
    }
}

@media (max-width: 767.98px){
    .tradeshow_row{
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }
    .tradeshow_action{
        justify-content: flex-start;
    }
    .tradeshow_bottom{
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Contact page (dark)
================================ */
.contact_page{
    padding: 100px 0;
    background: #05060a;
    color: rgba(255,255,255,.9);
}

.contact_hero{
    text-align: center;
    padding: clamp(10px, 2.5vw, 18px) 0 clamp(18px, 3.2vw, 30px);
}

.contact_hero_title{
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(28px, 4.5vw, 48px);
}

.contact_intro{
    text-align: center;
    max-width: 1000px;
    margin: 0 auto clamp(22px, 4vw, 44px);
    padding: clamp(18px, 3.5vw, 32px);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.contact_intro_title{
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-size: clamp(22px, 3.2vw, 36px);
}

.contact_intro_desc{
    margin: 0 auto 16px;
    max-width: 640px;
    color: rgba(255,255,255,.55);
    font-weight: 400;
    line-height: 1.7;
    font-size: 20px;
}

.contact_chat_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4d41bd, #4d41bd);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 14px 30px rgba(0, 166, 255, .22);
}

.contact_offices{
    max-width: 1000px;
    margin: 0 auto clamp(22px, 4vw, 44px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2.4vw, 22px);
    align-items: start;
}

.contact_card{
    padding: clamp(18px, 3vw, 26px);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.contact_card_kicker{
    margin: 0 0 8px;
    color: rgba(255,255,255,.45);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact_card_title{
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 18px;
}

.contact_actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px 0 14px;
}

.contact_action{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.10);
    text-decoration: none;
    color: rgba(255,255,255,.9);
    transition: transform .18s ease, background .18s ease;
}

.contact_action:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.06);
}

.contact_action_icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4d41bd, #4d41bd);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: none;
    box-shadow: 0 14px 30px rgba(0, 166, 255, .22);
}

.contact_action_label{
    display: block;
    font-weight: 800;
    font-size: 11px;
    color: rgba(255,255,255,.75);
}

.contact_action_value{
    display: block;
    font-weight: 900;
    font-size: 12px;
    color: rgba(255,255,255,.95);
}

.contact_address{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    line-height: 1.65;
    font-size: 12px;
}

.contact_map{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
    min-height: 420px;
    height: 420px;
}

.contact_map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(1) ;
}
.contact_map iframe:hover{
    filter: none;
}
.contact_faq{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 8px;
    padding-bottom: 0;
}

.contact_faq_title{
    margin: 0 0 14px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 30px;
}

.contact_accordion .accordion-item{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}

.contact_accordion .accordion-button{
    background: transparent;
    color: rgba(255,255,255,.9);
    font-weight: 400;
    padding: 16px 18px;
    font-size: 20px;
    box-shadow: none;
}

.contact_accordion .accordion-button::after{
    filter: invert(1);
}

.contact_accordion .accordion-body{
    color: rgba(255,255,255,.55);
    font-weight: 400;
    line-height: 1.7;
    font-size: 20px;
    padding: 0 18px 16px;
}

@media (max-width: 991.98px){
    .contact_offices{
        grid-template-columns: 1fr;
    }
    .contact_map{
        min-height: 320px;
    }
}

@media (max-width: 575.98px){
    .contact_actions{
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Gift cards page (dark)
================================ */
.gift_page_dark{
    padding: clamp(34px, 5vw, 64px) 0 clamp(44px, 6vw, 86px);
    background: #05060a;
    color: rgba(255,255,255,.9);
}

.gift_intro_dark{
    max-width: 820px;
    margin: 0 auto clamp(28px, 4.4vw, 46px);
    text-align: center;
    padding: clamp(22px, 4vw, 40px) 16px;
}

.gift_intro_title{
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-size: clamp(30px, 4.8vw, 56px);
}

.gift_intro_desc{
    margin: 0 auto;
    max-width: 540px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.7;
    font-size: 20px;
}

.gift_intro_icon{
    margin-top: 18px;
}

.gift_intro_icon img{
    max-width: 70%;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}

.gift_how_dark{
    max-width: 980px;
    margin: 0 auto clamp(30px, 4.5vw, 52px);
    padding: clamp(20px, 3.4vw, 32px);
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.gift_how_title{
    margin: 0 0 16px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(24px, 3.4vw, 40px);
}

.gift_how_text{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.gift_how_text p{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.7;
    font-size: 20px;
}

.gift_cards_grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: clamp(12px, 2vw, 20px);
}

.gift_value_card{
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.10);
}

.gift_value_card img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}

.gift_value_card h3{
    margin: 15px 0 10px;
    font-size: 17px;
    font-weight: 600;
}

.gift_value_card a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0b0e14;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.gift_social_dark{
    max-width: 980px;
    margin: 0 auto clamp(26px, 4vw, 44px);
    text-align: center;
}

.gift_social_title{
    margin: 0 0 16px;
    font-size: clamp(24px, 3.6vw, 42px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gift_social_swiper{
    position: relative;
    padding: 0 28px;
}

.gift_social_card{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: #0b0d12;
    min-height: 420px;
}

.gift_social_card video{
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    background: #000;
}


.gift_social_nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.gift_social_prev{ left: -4px; }
.gift_social_next{ right: -4px; }

.gift_social_sub{
    margin: 14px 0 0;
    color: rgba(255,255,255,.65);
    font-weight: 700;
}

.gift_bottom_dark{
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 54px);
}

.gift_bottom_col h3{
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.gift_bottom_col p{
    margin: 0 0 10px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    line-height: 1.7;
    font-size: 17px;
}

.gift_bottom_strong{
    color: rgba(255,255,255,.9) !important;
    font-weight: 900 !important;
}

.gift_bottom_muted{
    color: rgba(255,255,255,.4) !important;
    font-weight: 700 !important;
}

@media (max-width: 991.98px){
    .gift_how_text{
        grid-template-columns: 1fr;
    }
    .gift_cards_grid{
        grid-template-columns: 1fr 1fr;
    }
    .gift_social_swiper{
        padding: 0 24px;
    }
}

@media (max-width: 767.98px){
    .gift_cards_grid{
        grid-template-columns: 1fr;
    }
    .gift_social_card,
    .gift_social_card video{
        min-height: 360px;
    }
    .gift_bottom_dark{
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Cart page (dark)
================================ */
.cart_page_dark{
    padding: 100px 0;
    background: #05060a;
    color: rgba(255,255,255,.9);
}

.cart_head{
    text-align: center;
    margin-bottom: clamp(20px, 3.4vw, 34px);
}

.cart_title{
    margin: 0 0 8px;
    font-size: clamp(30px, 4.8vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.cart_subtitle{
    margin: 0 auto;
    max-width: 620px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.cart_layout{
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: clamp(14px, 2.5vw, 24px);
    align-items: start;
}

.cart_items,
.cart_summary{
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.cart_items{
    padding: 8px 18px;
}

.cart_item{
    display: grid;
    grid-template-columns: 94px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: center;
}

.cart_item:last-child{
    border-bottom: 0;
}

.cart_item_img{
    width: 94px;
    height: 94px;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(0,0,0,.35);
}

.cart_item_title{
    margin: 0 0 4px;
    font-size: 18px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.cart_item_meta{
    margin: 0 0 10px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 500;
}

.cart_item_controls{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qty_box{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.12);
}

.qty_box button{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 600;
}

.qty_box span{
    min-width: 14px;
    text-align: center;
    font-weight: 600;
}

.cart_remove_btn{
    border: 0;
    background: transparent;
    color: #ff7a7a;
    font-size: 12px;
    font-weight: 500;
}

.cart_item_price{
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.cart_summary{
    padding: 18px;
}

.cart_summary_title{
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.cart_summary_line,
.cart_summary_total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.cart_summary_line strong{
    color: rgba(255,255,255,.9);
    font-weight: 500;
}

.cart_summary_total{
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 4px;
    padding-top: 12px;
    font-size: 15px;
}

.cart_summary_total strong{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.coupon_label{
    display: block;
    margin: 10px 0 8px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.coupon_box{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 12px;
}

.coupon_box input{
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.28);
    color: #fff;
    padding: 0 12px;
    outline: none;
}

.coupon_box button,
.cart_checkout_btn{
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
    color: #fff;
    font-weight: 600;
}

.coupon_box button{
    padding: 0 14px;
}

.cart_checkout_btn{
    width: 100%;
    height: 42px;
    margin: 4px 0 10px;
}

.cart_continue_link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 991.98px){
    .cart_layout{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px){
    .cart_item{
        grid-template-columns: 1fr;
    }
    .cart_item_img{
        width: 100%;
        height: 180px;
    }
    .cart_item_price{
        justify-self: start;
    }
}

/* ==============================
   Checkout page (dark)
================================ */
.checkout_page_dark{
    padding: 100px 0;
    background: #05060a;
    color: rgba(255,255,255,.9);
}

.checkout_head{
    text-align: center;
    margin-bottom: clamp(20px, 3.4vw, 34px);
}

.checkout_title{
    margin: 0 0 8px;
    font-size: clamp(30px, 4.8vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.checkout_subtitle{
    margin: 0 auto;
    max-width: 620px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.checkout_layout{
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: clamp(14px, 2.5vw, 24px);
    align-items: start;
}

.checkout_form_card,
.checkout_summary_card{
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
    padding: 18px;
}

.checkout_section_title{
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.checkout_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout_field_full{
    grid-column: 1 / -1;
}

.checkout_field label{
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.checkout_field input,
.checkout_field select{
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.28);
    color: #fff;
    padding: 0 12px;
    outline: none;
}

.checkout_payment_methods{
    display: grid;
    gap: 8px;
}

.checkout_pay_option{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(0,0,0,.26);
    font-weight: 500;
}

.checkout_pay_option input{
    accent-color: var(--primary_color);
}

.checkout_summary_line,
.checkout_summary_total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.checkout_summary_line strong{
    color: rgba(255,255,255,.9);
    font-weight: 500;
}

.checkout_summary_total{
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 4px;
    padding-top: 12px;
    font-size: 15px;
}

.checkout_summary_total strong{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.checkout_back_link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 500;
}

/* ==============================
   Orders page (dark)
================================ */
.orders_page_dark{
    padding: 100px 0;
    background: #05060a;
    color: rgba(255,255,255,.9);
}

.orders_head{
    text-align: center;
    margin-bottom: 16px;
}

.orders_title{
    margin: 0 0 8px;
    font-size: clamp(30px, 4.8vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.orders_subtitle{
    margin: 0 auto;
    max-width: 620px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.orders_filters{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.orders_filter_btn{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.78);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
}

.orders_filter_btn.is_active{
    color: #fff;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
    border-color: transparent;
}

.orders_list{
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.order_card{
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
    padding: 16px;
}

.order_card_top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.order_id{
    margin: 0 0 4px;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.order_date{
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    font-weight: 500;
}

.order_status{
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
}

.order_status_processing{ background: rgba(255,191,0,.18); color: #ffd35f; }
.order_status_shipped{ background: rgba(0,166,255,.18); color: #79d5ff; }
.order_status_delivered{ background: rgba(0,200,128,.18); color: #72f0bf; }

.order_item_row{
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.order_item_row img{
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
}

.order_item_row h3{
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.order_item_row p{
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    font-weight: 500;
}

.order_item_row strong{
    font-weight: 600;
}

.order_card_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.order_card_footer strong{
    color: #fff;
    font-weight: 600;
}

.order_action_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    height: 30px;
    padding: 0 14px;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 991.98px){
    .checkout_layout{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px){
    .checkout_grid{
        grid-template-columns: 1fr;
    }
    .order_item_row{
        grid-template-columns: 1fr;
    }
    .order_item_row img{
        width: 100%;
        height: 170px;
    }
    .order_card_footer{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==============================
   Reviews reels + map sections
================================ */
.reviews_reels_section{
    padding: clamp(44px, 6vw, 84px) 0;
    background: #07080b;
}

.reviews_reels_title{
    margin: 0 0 20px;
    text-align: center;
    color: rgba(255,255,255,.92);
    font-size: clamp(28px, 4.4vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 600;
}

.reviews_reels_grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 10px;
}

.reviews_reel_card{
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: #0c0e14;
    height: 190px;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.reviews_reel_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .22s ease;
}

.reviews_reel_card:hover img{
    transform: scale(1.03);
}

.reviews_reels_cta{
    text-align: center;
    margin-top: 18px;
}

.reviews_reels_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0b0e14;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.reviews_map_section{
    padding: clamp(44px, 6vw, 84px) 0;
    background: #05060a;
}

.reviews_map_head{
    text-align: center;
    margin-bottom: 14px;
}

.reviews_map_title{
    margin: 0;
    color: rgba(255,255,255,.95);
    font-size: clamp(30px, 4.8vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 600;
}

.reviews_map_subtitle{
    margin: 8px 0 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 500;
}

.reviews_map_tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.reviews_map_tabs button{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.75);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
}

.reviews_map_tabs button.active{
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
}

.reviews_map_content{
    max-width: 1100px;
    margin: 0 auto;
}

.reviews_map_content .tab-pane{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: #0b0e14;
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.reviews_map_content img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px){
    .reviews_reels_grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px){
    .reviews_reels_grid{
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Design services - refractives
================================ */
.refractive_why_section{
    padding: clamp(44px, 6vw, 84px) 0;
    background: #05060a;
}

.refractive_why_title{
    margin: 0 0 18px;
    text-align: center;
    color: rgba(255,255,255,.95);
    font-size: clamp(30px, 4.8vw, 56px);
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-weight: 600;
}

.refractive_swiper{
    position: relative;
    padding: 0 36px;
}

.refractive_slide{
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.refractive_slide_text{
    padding: clamp(18px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.refractive_slide_text h3{
    margin: 0 0 10px;
    color: rgba(255,255,255,.93);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.refractive_slide_text p{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.refractive_slide_media{
    background: #0b0d12;
}

.refractive_slide_media img{
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.refractive_swiper_prev,
.refractive_swiper_next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
}

.refractive_swiper_prev{ left: 0; }
.refractive_swiper_next{ right: 0; }

.refractive_faq_section{
    padding: clamp(38px, 5.5vw, 74px) 0 clamp(46px, 6.2vw, 90px);
    background: #05060a;
}

.refractive_faq_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.refractive_faq_head h2{
    margin: 0;
    color: rgba(255,255,255,.95);
    font-size: clamp(28px, 4.4vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 600;
}

.refractive_help_link{
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.refractive_faq_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.refractive_faq_item{
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    padding: 16px;
}

.refractive_faq_item h3{
    margin: 0 0 8px;
    color: rgba(255,255,255,.9);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
}

.refractive_faq_item p{
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 991.98px){
    .refractive_slide{
        grid-template-columns: 1fr;
    }
    .refractive_slide_media img{
        min-height: 260px;
    }
}

@media (max-width: 767.98px){
    .refractive_faq_head{
        flex-direction: column;
        align-items: flex-start;
    }
    .refractive_faq_grid{
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Auth + profile pages (dark)
================================ */
.auth_page_dark,
.profile_page_dark{
    min-height: 100vh;
    align-content: center;
    padding: clamp(40px, 7vw, 90px) 0;
    background: radial-gradient(900px 500px at 50% 0%, rgba(47,107,255,.18), rgba(0,0,0,0) 60%), #05060a;
}

.auth_card{
    max-width: 520px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
    padding: 24px;
}

.auth_title{
    margin: 0 0 8px;
    color: rgba(255,255,255,.95);
    font-size: clamp(30px, 4.6vw, 44px);
    letter-spacing: -0.02em;
    line-height: 1.06;
    font-weight: 600;
}

.auth_subtitle{
    margin: 0 0 16px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    font-weight: 500;
}

.auth_form{
    display: grid;
    gap: 12px;
}

.auth_field label{
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 500;
}

.auth_field input{
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.26);
    color: #fff;
    padding: 0 12px;
    outline: none;
}

.auth_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.auth_row a,
.auth_switch a{
    color: #6fc2ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.auth_check{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 500;
}

.auth_btn{
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
    color: #fff;
    font-weight: 600;
}

.auth_switch{
    margin: 12px 0 0;
    color: rgba(255,255,255,.55);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.profile_head_card{
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
    padding: 16px;
    margin-bottom: 16px;
}

.profile_avatar{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary_color), var(--primary_color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.profile_name{
    margin: 0;
    color: rgba(255,255,255,.95);
    font-size: 26px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.profile_email{
    margin: 2px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    font-weight: 500;
}

.profile_edit_btn{
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    height: 36px;
    padding: 0 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.profile_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.profile_info_card{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 16px;
}

.profile_info_card h2{
    margin: 0 0 10px;
    color: rgba(255,255,255,.9);
    font-size: 20px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.profile_info_card ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.profile_info_card li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 8px;
}

.profile_info_card li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.profile_info_card span{
    color: rgba(255,255,255,.58);
    font-size: 13px;
    font-weight: 500;
}

.profile_info_card strong{
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 767.98px){
    .profile_head_card{
        flex-wrap: wrap;
    }
    .profile_edit_btn{
        margin-left: 0;
    }
    .profile_grid{
        grid-template-columns: 1fr;
    }
}

















.very_highSection{
    min-height: 500vh;
    overflow: visible;
}
.stikcy_video{
    height: 100vh;
}
.high_con{
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    color: var(--white_off);
}
.high_tit{
    font-size: 20px;
    font-weight: 500;
    color: var(--white_color);
}
.high_very_content_hight{
    position: relative;
    height: 100vh;
    z-index: 9999;
} 

.high_very_content_hight{
    max-width: 1000px;
}





.solution_page{
    min-height: 100vh;
    align-content: center;
}
.solution_page_content{
    position: relative;
    z-index: 1;
}
.features-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    padding: 30px 0;
    width: 90%;
}
.feature {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
    width: 45%;
    font-weight: normal;
}
.feature span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 550;
}
.features-list::after {
    position: absolute;
    content: '';
    top: 30px;
    bottom: 30px;
    left: 34%;
    width: 1px;
    background-color: #868686;
}


.solution_badge {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary_color);
}
.solution_title_page {
    font-size: 40px;
    line-height: 1;
    font-weight: 550;
    color: var(--white_color);
    margin-bottom: 15px;
}
.solution_page_con{
    font-size: 25px;
    line-height: 1.2;
    color: var(--white_off);
}
.reiew_images_stars{
    margin: 10px 0;
    max-width: 70%;
}
.reiew_images_stars img{
    max-width: 40%;
    width: 100%;
}
.hero-video {
    position: absolute;
    top: 0;
    right: -25px;
}
.hero-video-mobile {
    display: none;
}
@media (max-width: 1300px) {
    .feature span {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .features-list {
        gap: 20px 0;
        justify-content: flex-end;
        width: 70%;
        margin: auto;
        padding: 15px 0;
    }
    .features-list::after {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
    .hero-video-desktop {
        display: none;
    }
    .hero-video {
        right: 0;
    }
    .solution_page {
        padding: 250px 0 50px;
        text-align: center;
    }
    .solution_title_page{
        font-size: 26px;
    }
    .solution_page_con{
        font-size: 20px;
    }
    .reiew_images_stars{
        max-width: 80%;
        margin: 10px auto;
    }
}
@media (max-width: 650px) {
    .feature {
        font-size: 14px;
    }
    .feature span {
        font-size: 18px;
    }
   
}




.discover_section {
    padding-bottom: 0;
    background: var(--dark_color);
}
.section_wrapper2{
    padding: 40px;
    background: var(--bg_sections);
    border-radius: 20px 20px 0 0;
}
.section_content2 {
    border-radius: clamp(24px, 19.4286px + 0.4464vw, 28px);
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 4px 25px 0 #00000040,
        0 4px 4px 0 #00000036;
    color: #fcf5ee;
    font-size: 21px;
    padding: clamp(32px, 3.125vw, 60px);
    background: #181818;
}
.discover_section_image {
    width: 100%;
    border-radius: clamp(24px, 19.4286px + 0.4464vw, 28px);
    overflow: hidden;
}
.discover_section_image img{
    width: 100%;
}