
:root{
    --g2-primary:#ff6b00;
    --g2-primary-dark:#d84d00;
    --g2-secondary:#06b6d4;
    --g2-dark:#07111f;
    --g2-dark-soft:#101d30;
    --g2-text:#172033;
    --g2-muted:#667085;
    --g2-bg:#f4f7fb;
    --g2-card:#ffffff;
    --g2-border:#e5eaf1;
    --g2-success:#16a34a;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--g2-bg);
    color:var(--g2-text);
    font-family:'Hind Siliguri',sans-serif;
}

.g2-page,
.g2-page *{
    box-sizing:border-box;
}

.g2-page{
    min-height:100vh;
    overflow:hidden;
    background:
        radial-gradient(circle at 10% 10%,rgba(6,182,212,.08),transparent 28%),
        radial-gradient(circle at 88% 24%,rgba(255,107,0,.09),transparent 30%),
        var(--g2-bg);
}

.g2-container{
    width:min(1180px,calc(100% - 32px));
    margin-inline:auto;
}

.g2-topbar{
    position:relative;
    z-index:30;
    background:rgba(255,255,255,.94);
    border-bottom:1px solid rgba(229,234,241,.9);
    backdrop-filter:blur(14px);
}

.g2-topbar-inner{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.g2-brand{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}

.g2-brand img{
    max-width:180px;
    max-height:48px;
    object-fit:contain;
}

.g2-brand-text{
    color:var(--g2-dark);
    font-size:25px;
    font-weight:900;
}

.g2-top-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.g2-top-contact{
    display:flex;
    align-items:center;
    gap:9px;
    color:var(--g2-text);
    text-decoration:none;
    font-weight:800;
}

.g2-top-contact i{
    color:var(--g2-primary);
}

.g2-top-order,
.g2-primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:0;
    border-radius:14px;
    padding:13px 21px;
    color:#fff;
    text-decoration:none;
    font-weight:900;
    background:linear-gradient(135deg,var(--g2-primary),#ff8a1f);
    box-shadow:0 12px 28px rgba(255,107,0,.24);
    transition:.25s ease;
}

.g2-top-order:hover,
.g2-primary-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(255,107,0,.31);
}

.g2-hero{
    position:relative;
    padding:84px 0 70px;
    color:#fff;
    background:
        linear-gradient(118deg,rgba(7,17,31,.98),rgba(16,29,48,.96)),
        #07111f;
}

.g2-hero::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.12;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:42px 42px;
}

.g2-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(4px);
    pointer-events:none;
}

.g2-orb-one{
    width:420px;
    height:420px;
    right:-170px;
    top:-180px;
    background:rgba(255,107,0,.18);
}

.g2-orb-two{
    width:300px;
    height:300px;
    left:-140px;
    bottom:-160px;
    background:rgba(6,182,212,.17);
}

.g2-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.92fr);
    align-items:center;
    gap:58px;
}

.g2-eyebrow,
.g2-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#9eeafa;
    text-transform:uppercase;
    letter-spacing:.09em;
    font-size:13px;
    font-weight:900;
}

.g2-live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--g2-primary);
    box-shadow:0 0 0 6px rgba(255,107,0,.18);
}

.g2-title{
    margin:20px 0 18px;
    font-size:clamp(38px,5vw,70px);
    line-height:1.02;
    font-weight:900;
    letter-spacing:-.025em;
}

.g2-title span{
    display:block;
    color:#ff8a1f;
}

.g2-subtitle{
    max-width:650px;
    margin:0 0 25px;
    color:#cbd5e1;
    font-size:19px;
    line-height:1.75;
}

.g2-price-panel{
    width:min(500px,100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:24px;
    padding:18px 20px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(10px);
}

.g2-price-panel small{
    display:block;
    color:#b8c4d4;
    font-size:13px;
}

.g2-price-panel strong{
    display:block;
    margin-top:2px;
    color:#fff;
    font-size:34px;
    line-height:1;
}

.g2-price-saving{
    text-align:right;
}

.g2-price-saving del{
    display:block;
    color:#9ba8bb;
    font-size:16px;
}

.g2-price-saving span{
    display:inline-block;
    margin-top:6px;
    padding:5px 10px;
    border-radius:999px;
    color:#ffdfc7;
    background:rgba(255,107,0,.18);
    font-size:12px;
    font-weight:800;
}

.g2-hero-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.g2-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:12px 20px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:14px;
    color:#fff;
    text-decoration:none;
    font-weight:900;
    background:rgba(255,255,255,.08);
}

.g2-secondary-btn:hover{
    color:#fff;
    background:rgba(255,255,255,.14);
}

.g2-mini-trust{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:25px;
    color:#b9c5d6;
    font-size:13px;
    font-weight:700;
}

.g2-mini-trust span{
    display:flex;
    align-items:center;
    gap:7px;
}

.g2-mini-trust i{
    color:#67e8f9;
}

.g2-hero-visual{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.g2-product-glow{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,107,0,.28),rgba(6,182,212,.08) 48%,transparent 70%);
}

.g2-product-stage{
    position:relative;
    width:100%;
    padding:25px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:36px;
    background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.045));
    box-shadow:0 30px 70px rgba(0,0,0,.3);
    backdrop-filter:blur(14px);
}

.g2-hero-image{
    position:relative;
    z-index:2;
    width:100%;
    max-height:510px;
    object-fit:contain;
    border-radius:25px;
}

.g2-floating-chip{
    position:absolute;
    z-index:3;
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:13px;
    color:var(--g2-dark);
    background:#fff;
    box-shadow:0 15px 34px rgba(0,0,0,.18);
    font-size:13px;
    font-weight:900;
}

.g2-floating-chip i{
    color:var(--g2-primary);
}

.g2-chip-one{
    top:25px;
    left:-24px;
}

.g2-chip-two{
    right:-18px;
    bottom:34px;
}

.g2-timer-wrap{
    position:relative;
    z-index:5;
    margin-top:-31px;
}

.g2-timer-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:21px 26px;
    border-radius:22px;
    color:#fff;
    background:linear-gradient(135deg,var(--g2-primary-dark),var(--g2-primary));
    box-shadow:0 18px 45px rgba(216,77,0,.27);
}

.g2-timer-copy{
    display:flex;
    align-items:center;
    gap:15px;
}

.g2-timer-copy > i{
    width:48px;
    height:48px;
    border-radius:15px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.15);
    font-size:22px;
}

.g2-timer-copy small{
    display:block;
    color:#ffe1cc;
}

.g2-timer-copy strong{
    display:block;
    font-size:18px;
}

.g2-timer{
    display:flex;
    gap:8px;
}

.g2-timer > div{
    min-width:68px;
    padding:8px 10px;
    border-radius:13px;
    text-align:center;
    background:rgba(255,255,255,.13);
}

.g2-timer span{
    display:block;
    font-size:23px;
    font-weight:900;
    line-height:1.1;
}

.g2-timer small{
    color:#ffe5d2;
    font-size:11px;
}

.g2-benefit-strip{
    padding:55px 0 35px;
}

.g2-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.g2-benefit-grid article{
    display:flex;
    align-items:center;
    gap:13px;
    padding:18px;
    border:1px solid var(--g2-border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 24px rgba(15,23,42,.045);
}

.g2-benefit-grid i{
    width:47px;
    height:47px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:14px;
    color:var(--g2-primary);
    background:#fff2e8;
    font-size:21px;
}

.g2-benefit-grid strong,
.g2-benefit-grid small{
    display:block;
}

.g2-benefit-grid strong{
    color:var(--g2-dark);
    font-size:15px;
}

.g2-benefit-grid small{
    margin-top:2px;
    color:var(--g2-muted);
    font-size:12px;
}

.g2-section{
    padding:82px 0;
}

.g2-section-heading{
    max-width:730px;
    margin:0 auto 38px;
    text-align:center;
}

.g2-section-heading > span{
    color:var(--g2-primary);
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.g2-section-heading h2,
.g2-spec-copy h2,
.g2-order-heading h2{
    margin:8px 0 10px;
    color:var(--g2-dark);
    font-size:clamp(29px,4vw,45px);
    line-height:1.12;
    font-weight:900;
}

.g2-section-heading p,
.g2-spec-copy > p,
.g2-order-heading p{
    margin:0;
    color:var(--g2-muted);
    font-size:16px;
    line-height:1.7;
}

.g2-feature-section{
    background:#fff;
}

.g2-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.g2-feature-card{
    position:relative;
    min-height:190px;
    padding:25px;
    overflow:hidden;
    border:1px solid var(--g2-border);
    border-radius:23px;
    background:linear-gradient(145deg,#fff,#f7faff);
    box-shadow:0 15px 36px rgba(15,23,42,.055);
    transition:.25s ease;
}

.g2-feature-card:hover{
    transform:translateY(-5px);
    border-color:#ffd0ae;
    box-shadow:0 20px 42px rgba(15,23,42,.09);
}

.g2-feature-number{
    position:absolute;
    right:15px;
    top:10px;
    color:#eef2f7;
    font-size:46px;
    font-weight:900;
}

.g2-feature-icon{
    position:relative;
    z-index:2;
    width:53px;
    height:53px;
    display:grid;
    place-items:center;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg,var(--g2-primary),#ff9c41);
    box-shadow:0 10px 22px rgba(255,107,0,.22);
    font-size:23px;
}

.g2-feature-card p{
    position:relative;
    z-index:2;
    margin:22px 0 0;
    color:#354052;
    line-height:1.65;
    font-size:16px;
    font-weight:700;
}

.g2-center-action{
    margin-top:34px;
    text-align:center;
}

.g2-spec-section{
    background:var(--g2-dark);
    color:#fff;
}

.g2-spec-layout{
    display:grid;
    grid-template-columns:1fr .86fr;
    align-items:center;
    gap:70px;
}

.g2-spec-copy h2{
    color:#fff;
}

.g2-spec-copy > p{
    color:#b7c2d1;
}

.g2-spec-list{
    display:grid;
    gap:12px;
    margin-top:28px;
}

.g2-spec-list > div{
    display:flex;
    align-items:flex-start;
    gap:11px;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:15px;
    color:#d9e1eb;
    background:rgba(255,255,255,.055);
}

.g2-spec-list i{
    color:#67e8f9;
    font-size:19px;
}

.g2-spec-visual{
    position:relative;
    min-height:470px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.g2-spec-ring{
    position:absolute;
    width:370px;
    height:370px;
    border:1px solid rgba(255,255,255,.17);
    border-radius:50%;
    box-shadow:
        0 0 0 35px rgba(255,255,255,.025),
        0 0 0 70px rgba(255,255,255,.018);
}

.g2-spec-visual img{
    position:relative;
    z-index:2;
    width:min(390px,90%);
    max-height:430px;
    object-fit:contain;
    filter:drop-shadow(0 28px 34px rgba(0,0,0,.36));
}

.g2-review-section{
    background:#f3f6fb;
}

.g2-text-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:30px;
}

.g2-review-card{
    padding:24px;
    border:1px solid var(--g2-border);
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 34px rgba(15,23,42,.055);
}

.g2-review-top{
    display:flex;
    align-items:center;
    gap:11px;
}

.g2-review-top > i{
    margin-left:auto;
    color:#d9e1eb;
    font-size:32px;
}

.g2-review-avatar{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(135deg,var(--g2-secondary),#2563eb);
    font-size:18px;
    font-weight:900;
}

.g2-review-top strong,
.g2-review-top small{
    display:block;
}

.g2-review-top small{
    color:var(--g2-muted);
    font-size:12px;
}

.g2-stars{
    margin:18px 0 10px;
    color:#f59e0b;
    letter-spacing:2px;
}

.g2-review-card p{
    margin:0;
    color:#4b5565;
    line-height:1.75;
}

.g2-screen-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.g2-screen-card{
    padding:8px;
    border:1px solid var(--g2-border);
    border-radius:19px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,.05);
}

.g2-screen-card img{
    width:100%;
    height:370px;
    object-fit:cover;
    border-radius:13px;
}

.g2-review-mobile{
    display:none;
}

.g2-order-section{
    padding:88px 0;
    background:
        radial-gradient(circle at top left,rgba(255,107,0,.08),transparent 30%),
        #eef3f8;
}

.g2-order-heading{
    max-width:720px;
    margin:0 auto 36px;
    text-align:center;
}

.g2-order-heading > span{
    color:var(--g2-primary);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.1em;
}

.g2-order-grid{
    display:grid;
    grid-template-columns:minmax(0,1.03fr) minmax(0,.97fr);
    gap:24px;
    align-items:start;
}

.g2-order-summary,
.g2-checkout-card{
    overflow:hidden;
    border:1px solid var(--g2-border);
    border-radius:26px;
    background:#fff;
    box-shadow:0 22px 55px rgba(15,23,42,.09);
}

.g2-card-heading{
    min-height:93px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:20px 24px;
    color:var(--g2-dark);
    background:linear-gradient(135deg,#fff7f0,#fff);
    border-bottom:1px solid var(--g2-border);
}

.g2-card-heading small,
.g2-card-heading h3{
    display:block;
}

.g2-card-heading small{
    color:var(--g2-primary);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.g2-card-heading h3{
    margin:2px 0 0;
    font-size:24px;
    font-weight:900;
}

.g2-card-heading > i{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg,var(--g2-primary),#ff9b3d);
    font-size:23px;
}

.g2-dark-heading{
    color:#fff;
    border-bottom:0;
    background:linear-gradient(135deg,var(--g2-dark),var(--g2-dark-soft));
}

.g2-dark-heading small{
    color:#8fe9f7;
}

.g2-selected-product{
    display:flex;
    gap:17px;
    margin:22px;
    padding:16px;
    border:1px solid var(--g2-border);
    border-radius:20px;
    background:#f9fbfe;
}

.g2-selected-image{
    width:115px;
    height:115px;
    flex:0 0 auto;
    padding:7px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--g2-border);
}

.g2-selected-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:13px;
}

.g2-selected-info{
    min-width:0;
    flex:1;
}

.g2-selected-info h4{
    margin:0 0 7px;
    color:var(--g2-dark);
    font-size:18px;
    line-height:1.35;
    font-weight:900;
}

.g2-selected-price{
    display:flex;
    align-items:center;
    gap:10px;
}

.g2-selected-price strong{
    color:var(--g2-primary);
    font-size:22px;
}

.g2-selected-price del{
    color:#98a2b3;
}

.g2-qty{
    width:max-content;
    display:flex;
    align-items:center;
    margin-top:12px;
    overflow:hidden;
    border:1px solid #dce3ec;
    border-radius:12px;
    background:#fff;
}

.g2-qty button{
    width:35px;
    height:35px;
    border:0;
    color:var(--g2-primary);
    background:#fff4eb;
    font-size:20px;
    font-weight:900;
}

.g2-qty input{
    width:42px;
    height:35px;
    border:0;
    outline:0;
    text-align:center;
    font-weight:900;
}

.g2-upsell{
    margin:0 22px 20px;
    padding:15px;
    border:1px dashed #ffb57d;
    border-radius:18px;
    background:#fff9f4;
}

.g2-upsell-heading{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:11px;
    color:var(--g2-primary-dark);
    font-weight:900;
}

.g2-upsell-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px;
    border:1px solid #ffd8bd;
    border-radius:15px;
    cursor:pointer;
    background:#fff;
}

.g2-upsell-item + .g2-upsell-item{
    margin-top:9px;
}

.g2-upsell-item > input{
    position:absolute;
    opacity:0;
}

.g2-custom-check{
    width:23px;
    height:23px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border:2px solid #ffb17a;
    border-radius:7px;
    color:transparent;
}

.g2-upsell-item > input:checked + .g2-custom-check{
    color:#fff;
    border-color:var(--g2-primary);
    background:var(--g2-primary);
}

.g2-upsell-item img{
    width:55px;
    height:55px;
    object-fit:contain;
    border-radius:10px;
    border:1px solid var(--g2-border);
}

.g2-upsell-copy{
    min-width:0;
    display:block;
}

.g2-upsell-copy small,
.g2-upsell-copy strong,
.g2-upsell-copy b{
    display:block;
}

.g2-upsell-copy small{
    color:var(--g2-primary);
    font-size:11px;
    font-weight:900;
}

.g2-upsell-copy strong{
    color:var(--g2-dark);
    line-height:1.3;
}

.g2-upsell-copy b{
    color:#dc2626;
}

.g2-bill{
    margin:0 22px 22px;
    padding:17px;
    border-radius:18px;
    background:#f7f9fc;
}

.g2-bill > div{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:9px 0;
    color:#667085;
    border-bottom:1px dashed #dce3ec;
}

.g2-bill > div:last-child{
    border-bottom:0;
}

.g2-bill strong{
    color:var(--g2-dark);
}

.g2-discount-row,
.g2-discount-row strong{
    color:var(--g2-success)!important;
}

.g2-grand-total{
    margin-top:4px;
    padding-top:14px!important;
    color:var(--g2-dark)!important;
    font-size:20px;
    font-weight:900;
}

.g2-grand-total strong{
    color:var(--g2-primary);
    font-size:27px;
}

.g2-form-body{
    padding:22px;
}

.g2-field{
    display:block;
    margin-bottom:16px;
}

.g2-field > span,
.g2-input-title{
    display:flex;
    align-items:center;
    gap:7px;
    margin-bottom:7px;
    color:#344054;
    font-size:14px;
    font-weight:900;
}

.g2-field > span i,
.g2-input-title i{
    color:var(--g2-primary);
}

.g2-field input,
.g2-field textarea,
.g2-coupon-row input{
    width:100%;
    border:1px solid #d9e1eb;
    border-radius:14px;
    outline:0;
    background:#fff;
    transition:.2s ease;
}

.g2-field input{
    height:51px;
    padding:0 15px;
}

.g2-field textarea{
    min-height:108px;
    padding:13px 15px;
    resize:vertical;
}

.g2-field input:focus,
.g2-field textarea:focus,
.g2-coupon-row input:focus{
    border-color:var(--g2-primary);
    box-shadow:0 0 0 4px rgba(255,107,0,.09);
}

.field-error{
    display:none;
    margin-top:5px;
    color:#dc2626;
    font-size:12px;
    font-weight:700;
}

.g2-delivery{
    margin-bottom:16px;
}

.g2-delivery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.g2-delivery-grid label{
    display:block;
    cursor:pointer;
}

.g2-delivery-grid input{
    position:absolute;
    opacity:0;
}

.g2-delivery-grid label > span{
    min-height:73px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:12px 14px;
    border:1px solid #d9e1eb;
    border-radius:14px;
    background:#fff;
    transition:.2s ease;
}

.g2-delivery-grid input:checked + span{
    border-color:var(--g2-primary);
    background:#fff4eb;
    box-shadow:0 0 0 3px rgba(255,107,0,.08);
}

.g2-delivery-grid b,
.g2-delivery-grid strong{
    display:block;
}

.g2-delivery-grid b{
    color:#344054;
}

.g2-delivery-grid strong{
    margin-top:2px;
    color:var(--g2-primary);
}

.g2-hidden-option{
    display:none!important;
}

.g2-coupon{
    margin:19px 0;
    padding:14px;
    border:1px dashed #b8c3d1;
    border-radius:16px;
    background:#f8fafc;
}

.g2-coupon-row{
    display:flex;
}

.g2-coupon-row input{
    height:48px;
    padding:0 14px;
    border-radius:13px 0 0 13px;
}

.g2-coupon-row button{
    min-width:94px;
    border:0;
    border-radius:0 13px 13px 0;
    color:#fff;
    background:var(--g2-dark);
    font-weight:900;
}

.g2-coupon-message{
    margin-top:7px;
    min-height:17px;
    font-size:12px;
    font-weight:800;
}

.g2-submit-btn{
    width:100%;
    min-height:62px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:11px 18px;
    border:0;
    border-radius:17px;
    color:#fff;
    background:linear-gradient(135deg,var(--g2-primary),#ff8e2c);
    box-shadow:0 14px 31px rgba(255,107,0,.25);
    font-size:17px;
    font-weight:900;
}

.g2-submit-btn span{
    text-align:left;
}

.g2-submit-btn small{
    display:block;
    color:#ffe5d2;
    font-size:11px;
}

.g2-submit-btn i{
    font-size:25px;
}

.g2-secure-note{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin:14px 0 0;
    color:#667085;
    font-size:12px;
    font-weight:700;
}

.g2-secure-note i{
    color:var(--g2-success);
}

.g2-footer{
    padding:55px 0 25px;
    color:#d6deea;
    background:var(--g2-dark);
}

.g2-footer-grid{
    display:grid;
    grid-template-columns:1fr auto auto;
    align-items:center;
    gap:40px;
}

.g2-footer-logo{
    max-width:170px;
    max-height:48px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

.g2-footer h3{
    margin:13px 0 5px;
    color:#fff;
    font-size:21px;
}

.g2-footer p{
    margin:0;
    color:#9eabbc;
}

.g2-footer-contact{
    display:grid;
    gap:8px;
}

.g2-footer-contact strong{
    color:#fff;
}

.g2-footer-contact a{
    color:#cbd5e1;
    text-decoration:none;
}

.g2-footer-contact i{
    margin-right:6px;
    color:#67e8f9;
}

.g2-socials{
    display:flex;
    gap:8px;
}

.g2-socials a{
    width:39px;
    height:39px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.14);
    border-radius:12px;
    color:#fff;
    background:rgba(255,255,255,.06);
}

.g2-footer-bottom{
    margin-top:31px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#8492a6;
    font-size:13px;
    text-align:center;
}

.g2-mobile-order{
    display:none;
}

@media(max-width:991px){
    .g2-hero{
        padding:62px 0 55px;
    }

    .g2-hero-grid,
    .g2-spec-layout,
    .g2-order-grid{
        grid-template-columns:1fr;
    }

    .g2-hero-grid{
        gap:38px;
    }

    .g2-hero-copy{
        text-align:center;
    }

    .g2-eyebrow{
        justify-content:center;
    }

    .g2-subtitle,
    .g2-price-panel{
        margin-inline:auto;
    }

    .g2-hero-actions,
    .g2-mini-trust{
        justify-content:center;
    }

    .g2-hero-visual{
        min-height:auto;
    }

    .g2-product-stage{
        max-width:650px;
    }

    .g2-benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .g2-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .g2-spec-layout{
        gap:35px;
    }

    .g2-spec-copy{
        text-align:center;
    }

    .g2-spec-list{
        text-align:left;
    }

    .g2-spec-visual{
        min-height:390px;
    }

    .g2-text-review-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .g2-footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .g2-socials{
        grid-column:1/-1;
    }
}

@media(max-width:767px){
    body{
        padding-bottom:74px;
    }

    .g2-container{
        width:min(100% - 22px,1180px);
    }

    .g2-topbar-inner{
        min-height:65px;
    }

    .g2-brand img{
        max-width:132px;
        max-height:39px;
    }

    .g2-top-contact{
        display:none;
    }

    .g2-top-order{
        padding:10px 14px;
        font-size:13px;
    }

    .g2-hero{
        padding:48px 0 44px;
    }

    .g2-title{
        font-size:38px;
    }

    .g2-subtitle{
        font-size:16px;
    }

    .g2-price-panel{
        align-items:flex-start;
        padding:15px;
    }

    .g2-price-panel strong{
        font-size:28px;
    }

    .g2-hero-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .g2-primary-btn,
    .g2-secondary-btn{
        padding:12px 10px;
        font-size:13px;
    }

    .g2-mini-trust{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        text-align:left;
    }

    .g2-product-stage{
        padding:12px;
        border-radius:25px;
    }

    .g2-floating-chip{
        padding:7px 9px;
        font-size:10px;
    }

    .g2-chip-one{
        left:-4px;
    }

    .g2-chip-two{
        right:-3px;
        bottom:18px;
    }

    .g2-timer-wrap{
        margin-top:0;
        padding-top:13px;
        background:var(--g2-dark);
    }

    .g2-timer-card{
        display:block;
        padding:17px;
    }

    .g2-timer-copy{
        justify-content:center;
        margin-bottom:13px;
        text-align:left;
    }

    .g2-timer{
        justify-content:center;
    }

    .g2-timer > div{
        min-width:0;
        flex:1;
        padding:7px 4px;
    }

    .g2-benefit-strip{
        padding:25px 0;
    }

    .g2-benefit-grid{
        grid-template-columns:1fr 1fr;
        gap:9px;
    }

    .g2-benefit-grid article{
        align-items:flex-start;
        padding:12px;
    }

    .g2-benefit-grid i{
        width:37px;
        height:37px;
        border-radius:11px;
        font-size:17px;
    }

    .g2-benefit-grid strong{
        font-size:12px;
    }

    .g2-benefit-grid small{
        font-size:10px;
    }

    .g2-section,
    .g2-order-section{
        padding:55px 0;
    }

    .g2-section-heading{
        margin-bottom:27px;
    }

    .g2-section-heading h2,
    .g2-spec-copy h2,
    .g2-order-heading h2{
        font-size:30px;
    }

    .g2-feature-grid,
    .g2-text-review-grid{
        grid-template-columns:1fr;
    }

    .g2-feature-card{
        min-height:auto;
        padding:20px;
    }

    .g2-spec-visual{
        min-height:320px;
    }

    .g2-spec-ring{
        width:255px;
        height:255px;
    }

    .g2-review-desktop{
        display:none;
    }

    .g2-review-mobile{
        display:block;
    }

    .g2-screen-grid{
        grid-template-columns:repeat(2,1fr);
        gap:9px;
    }

    .g2-screen-card{
        padding:5px;
        border-radius:14px;
    }

    .g2-screen-card img{
        height:265px;
        border-radius:10px;
    }

    .g2-card-heading{
        min-height:81px;
        padding:16px 18px;
    }

    .g2-card-heading h3{
        font-size:21px;
    }

    .g2-selected-product{
        margin:15px;
        padding:12px;
    }

    .g2-selected-image{
        width:85px;
        height:85px;
    }

    .g2-selected-info h4{
        font-size:15px;
    }

    .g2-selected-price strong{
        font-size:18px;
    }

    .g2-upsell{
        margin:0 15px 15px;
    }

    .g2-bill{
        margin:0 15px 15px;
    }

    .g2-form-body{
        padding:16px;
    }

    .g2-delivery-grid{
        grid-template-columns:1fr;
    }

    .g2-footer{
        padding-bottom:35px;
    }

    .g2-footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .g2-socials{
        justify-content:center;
    }

    .g2-mobile-order{
        position:fixed;
        left:10px;
        right:10px;
        bottom:9px;
        z-index:9999;
        min-height:57px;
        display:grid;
        grid-template-columns:auto 1fr auto;
        align-items:center;
        gap:10px;
        padding:9px 15px;
        border:1px solid rgba(255,255,255,.18);
        border-radius:17px;
        color:#fff;
        text-decoration:none;
        background:linear-gradient(135deg,var(--g2-primary-dark),var(--g2-primary));
        box-shadow:0 12px 32px rgba(0,0,0,.24);
    }

    .g2-mobile-order i{
        font-size:21px;
    }

    .g2-mobile-order span{
        font-weight:900;
    }

    .g2-mobile-order strong{
        padding-left:10px;
        border-left:1px solid rgba(255,255,255,.25);
    }
}

@media(max-width:420px){
    .g2-title{
        font-size:33px;
    }

    .g2-price-panel{
        display:block;
    }

    .g2-price-saving{
        margin-top:10px;
        text-align:left;
    }

    .g2-hero-actions{
        grid-template-columns:1fr;
    }

    .g2-mini-trust{
        grid-template-columns:1fr;
    }

    .g2-benefit-grid{
        grid-template-columns:1fr;
    }

    .g2-screen-card img{
        height:235px;
    }
}
