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

body{
    font-family: Arial, sans-serif;
    background:#f5f7fb;
    color:#222;
}

/* ==========================
   CONTAINER
========================== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   TOP BAR
========================== */
.topbar{
    background:#06152e;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:14px;
}

/* ==========================
   HEADER
========================== */
.header{
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

/* ==========================
   LOGO
========================== */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color:#081d42;
}

.logo-img{
    width:190px;
    height:auto;
    object-fit:contain;
    flex:0 0 auto;
}

.logo i{
    color:#2563eb;
    margin-right:6px;
}

/* ==========================
   MENU
========================== */
.menu{
    display:flex;
    align-items:center;
    gap:44px;
    list-style:none;
}

.menu li{
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

/* hover */
.menu a:hover{
    color:#2563eb;
}

/* active */
.menu a.active{
    color:#2563eb;
}

/* ==========================
   BUTTONS
========================== */
.btn{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    transition:0.3s;
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:#0d47c7;
}

.btn-outline:hover{
    background:#0d47c7;
}

.btn-outline{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    transition:0.3s;
    border:none;
    cursor:pointer;
    margin-left:10px;
}

.btn-small{
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
}

/* ==========================
   HERO
========================== */
.hero{
    background:linear-gradient(
        90deg,
        #071a3d,
        #2563eb
    );
    padding:80px 0;
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:58px;
    line-height:1.3;
    margin-bottom:25px;
}

.hero-text p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:25px;
}

.hero-tags{
    margin-top:20px;
}

.hero-tags span{
    margin-right:20px;
}

.hero-img img{
    width:100%;
    border-radius:18px;
}

.hero-service-media{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.hero-service-media img{
    display:block;
    min-height:330px;
    object-fit:cover;
}

.hero-service-badges{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
}

.hero-service-badges span{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 12px;
    border-radius:8px;
    background:rgba(6,21,46,0.82);
    color:#fff;
    font-size:14px;
    font-weight:700;
    backdrop-filter:blur(8px);
}

.hero-service-badges i{
    color:#93c5fd;
}


/* ==========================
   OFFER
========================== */
.offer{
    background:#2563eb;
    color:#fff;
    text-align:center;
    padding:28px 20px;
}

.offer h3{
    margin-bottom:10px;
}

.info-strip{
    background:#081d42;
    color:#fff;
    padding:28px 0;
}

.info-strip-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.info-strip h3{
    font-size:24px;
    line-height:1.25;
}

.info-strip p{
    max-width:560px;
    line-height:1.6;
    color:#dbeafe;
}

.info-label{
    display:block;
    margin-bottom:8px;
    color:#93c5fd;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
}
.server-info-section{
    background:#f8fafc !important;
    padding:22px 0 28px !important;
}

.server-info-inner{
    padding:0 16px !important;
}

.server-info-panel{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:14px;
    max-width:920px;
    margin:auto;
    padding:22px 26px;
    background:linear-gradient(135deg,#eaf2ff 0%,#ffffff 100%);
    border:1px solid #bfdbfe;
    border-left:6px solid #2563eb;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(8,29,66,0.08);
}

.server-info-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    font-size:22px;
}

.server-info-content{
    flex:1;
    min-width:0;
    width:100%;
}

.server-info-label{
    display:block;
    margin-bottom:6px;
    color:#2563eb;
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.server-info-content h3{
    color:#081d42;
    font-size:24px;
    margin-bottom:6px;
    line-height:1.3;
}

.server-info-content p{
    color:#334155;
    font-size:18px;
    line-height:1.55;
}


/* ==========================
   SECTION
========================== */

.section{
    padding:70px 0;
}

.gray{
    background:#eef2f8;
}

.title{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
}

/* ==========================
   GRID
========================== */
.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

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

/* ==========================
   CARD
========================== */
.card,
.plan{
    background:#fff;
    padding:30px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover,
.plan:hover{
    transform:translateY(-5px);
}

.card i{
    font-size:40px;
    color:#2563eb;
    margin-bottom:15px;
}

.plan h2{
    color:#2563eb;
    margin-top:15px;
}

/* ==========================
   TABLE
========================== */
.table-wrap{
    overflow-x:auto;
}

.tariff-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

.tariff-table th{
    background:#2563eb;
    color:#fff;
    padding:18px;
}

.tariff-table td{
    text-align:center;
    padding:18px;
    border-bottom:1px solid #eee;
}

.tariff-table button{
    background:#2563eb;
    border:none;
    color:#fff;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
}

/* ==========================
   SELECTED BOX
========================== */
.selected-box{
    background:#fff;
    padding:10px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin:20px 0;
}

.selected-plan-row{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:14px;
    align-items:center;
    padding:14px;
    border-bottom:1px solid #eef2f8;
}

.selected-plan-row:last-child{
    border-bottom:none;
}

.selected-plan-row span{
    display:block;
    font-weight:700;
    color:#081d42;
}

.selected-plan-row small{
    display:block;
    color:#64748b;
    margin-top:4px;
}

.selected-plan-row strong{
    color:#16a34a;
    font-size:18px;
}

.remove-plan-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#fee2e2;
    color:#dc2626;
    cursor:pointer;
    transition:0.2s;
}

.remove-plan-btn:hover{
    background:#dc2626;
    color:#fff;
}

.empty-selection{
    text-align:center;
    padding:28px 15px;
    color:#64748b;
}

.empty-selection i{
    width:48px;
    height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eef2ff;
    color:#2563eb;
    font-size:20px;
    margin-bottom:12px;
}

.empty-selection p{
    color:#081d42;
    font-weight:700;
    margin-bottom:6px;
}

/* ==========================
   FLOATING CART
========================== */
.floating-cart{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1000;
    display:flex;
    align-items:center;
    gap:8px;
    border-radius:999px;
    background:#081d42;
    color:#fff;
    padding:8px;
    box-shadow:0 12px 30px rgba(0,0,0,0.22);
    transition:0.25s;
}

.floating-cart:hover{
    transform:translateY(-3px);
}

.floating-cart.empty{
    background:#4b5563;
}

.cart-main,
.cart-proceed{
    border:none;
    color:#fff;
    cursor:pointer;
}

.cart-main{
    display:flex;
    align-items:center;
    gap:12px;
    background:transparent;
    padding:4px 6px;
}

.cart-proceed{
    background:#16a34a;
    padding:11px 16px;
    border-radius:999px;
    font-weight:700;
}

.floating-cart.empty .cart-proceed{
    background:#6b7280;
}

.cart-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2563eb;
    font-size:18px;
}

.cart-details{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.2;
    font-size:13px;
    min-width:62px;
}

.cart-details strong{
    font-size:18px;
}

.plan-btn.is-selected,
.item-add-btn.is-selected{
    background:#16a34a !important;
    box-shadow:0 0 0 3px rgba(22,163,74,0.18);
}

.plan-btn.is-selected::after{
    content:" Tap to remove";
    display:block;
    font-size:11px;
    font-weight:700;
    margin-top:3px;
}

@media(max-width:600px){

    .floating-cart{
        right:12px;
        left:12px;
        bottom:12px;
        justify-content:space-between;
        border-radius:18px;
    }

    .cart-icon{
        width:36px;
        height:36px;
    }

    .cart-proceed{
        padding:10px 13px;
    }
}


/* ==========================
   FOOTER
========================== */
.footer{
    background:#081d42;
    color:#fff;
    padding:50px 0;
}

.footer a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom{
    width:90%;
    max-width:1200px;
    margin:35px auto 0;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,0.18);
    text-align:center;
    color:rgba(255,255,255,0.82);
    font-size:14px;
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .grid-2,
    .grid-3{
        grid-template-columns:1fr;
    }

    .menu{
        gap:20px;
        flex-wrap:wrap;
    }

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

}

/* ==========================
   PAGE BANNER
========================== */
.page-banner{
    background:linear-gradient(
        90deg,
        #071a3d,
        #2563eb
    );
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:20px;
    opacity:0.9;
}

.center{
    text-align:center;
}

/* ==========================
   ABOUT GRID
========================== */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image{
    width:100%;
    border-radius:16px;
}

.about-content h2{
    font-size:36px;
    margin-bottom:20px;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

/* ==========================
   STATS
========================== */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.stat-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stat-card h3{
    color:#2563eb;
    font-size:28px;
    margin-bottom:10px;
}

/* ==========================
   FEATURES
========================== */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

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

/* ==========================
   CTA SECTION
========================== */
.cta{
    background:#2563eb;
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta p{
    font-size:18px;
    margin-bottom:25px;
}

/* ==========================
   FOOTER GRID
========================== */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:10px;
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:992px){

    .about-grid,
    .feature-grid,
    .stats-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:34px;
    }

    .about-content h2{
        font-size:30px;
    }

}

/* ==========================
   SERVICES GRID FIX
========================== */
.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

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

.service-icon{
    width:80px;
    height:80px;
    background:#eef4ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.service-icon i{
    font-size:34px;
    color:#2563eb;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width:992px){

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

}

/* ==========================
   CONTACT PAGE FIX
========================== */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:start;
}

/* LEFT INFO BOX */
.contact-info{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h2{
    font-size:34px;
    margin-bottom:15px;
}

.contact-info > p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* INFO ITEM */
.info-box{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

.info-box:last-child{
    border-bottom:none;
}

.info-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#eef4ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.info-box h4{
    margin-bottom:6px;
    color:#111;
}

.info-box p{
    color:#666;
}

/* RIGHT FORM */
.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-box h2{
    margin-bottom:25px;
}

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

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    transition:0.3s;
    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#2563eb;
}

.form-group textarea{
    resize:none;
}

/* BUTTON FULL */
.btn-full{
    width:100%;
    border:none;
    background:#2563eb;
    color:#fff;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.btn-full:hover{
    background:#114ed4;
}

/* MAP */
.map-box{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ==========================
   MOBILE
========================== */
@media(max-width:992px){

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

    .contact-info,
    .contact-form-box{
        padding:25px;
    }

}

/* ==========================
   ACTIVATION PAGE
========================== */
.activation-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
    align-items:start;
}

/* LEFT SIDE */
.activation-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.summary-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.summary-card h3{
    margin-bottom:20px;
}

#selectedPlans{
    color:#555;
    line-height:1.8;
    min-height:80px;
}

.activation-total{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #eee;
    font-size:28px;
    font-weight:700;
    color:#2563eb;
}

/* HELP BOX */
.help-box{
    background:#2563eb;
    color:#fff;
    padding:30px;
    border-radius:18px;
}

.help-box h3{
    margin-bottom:15px;
}

.help-box p{
    line-height:1.8;
    margin-bottom:10px;
}

/* RIGHT FORM */
.activation-form-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.activation-form-box h2{
    margin-bottom:25px;
}

/* FORM */
.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    transition:0.3s;
    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#2563eb;
}

.form-group textarea{
    resize:none;
}

/* FULL BUTTON */
.btn-full{
    width:100%;
    border:none;
    background:#2563eb;
    color:#fff;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.btn-full:hover{
    background:#114ed4;
}

/* ==========================
   MOBILE
========================== */
@media(max-width:992px){

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

    .activation-form-box,
    .summary-card,
    .help-box{
        padding:25px;
    }

}


/* PLAN BUTTON */
.plan-btn{
    width:100%;
    border:none;
    border-radius:12px;
    padding:12px 8px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    background:#0d6efd;
    color:#fff;
    transition:.3s;
}

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

/* DISCOUNT PLAN */
.discount-plan{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #0047ab
    );
}

/* OLD PRICE */
.old-price{
    text-decoration:line-through;
    color:#ffb3b3;
    font-size:12px;
    font-weight:500;
}

/* NEW PRICE */
.new-price{
    font-size:20px;
    font-weight:700;
    color:#fff;
}

/* DISCOUNT BADGE */
.discount-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:1px 6px;
    border-radius:10px;
    font-size:9px;
    font-weight:600;
}

/* DISABLED CELL */
.plan-disabled{
    color:#999;
    font-weight:600;
}






/* ==========================
   MOBILE POLISH
========================== */
.page-hero{
    background:#f8fafc;
    padding:60px 0 35px;
    text-align:center;
}

.page-hero h1{
    font-size:42px;
    line-height:1.18;
    margin-bottom:10px;
}

.page-hero p{
    font-size:20px;
}

@media(max-width:768px){

    .hero-service-media img{
        min-height:260px;
    }

    .hero-service-badges{
        grid-template-columns:1fr;
        left:12px;
        right:12px;
        bottom:12px;
    }

    .server-info-section{
        padding:18px 0 22px !important;
    }

    .server-info-panel{
        padding:18px 16px;
        gap:12px;
    }

    .server-info-icon{
        width:40px;
        height:40px;
        font-size:18px;
    }

    .server-info-content h3{
        font-size:19px;
    }

    .server-info-content p{
        font-size:16px;
    }

    .info-strip-inner{
        display:block;
        text-align:center;
    }

    .info-strip p{
        margin:14px auto 0;
    }

    body{
        overflow-x:hidden;
    }

    .container{
        width:100%;
        padding-left:16px;
        padding-right:16px;
    }

    .topbar{
        padding:10px 14px;
        font-size:14px;
        line-height:1.35;
    }

    .nav{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
        justify-items:center;
        padding:14px 0;
        text-align:center;
    }

    .logo{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        max-width:100%;
        font-size:24px;
        line-height:1.18;
    }

    .logo i{
        margin-right:0;
        flex:0 0 auto;
    }

    .menu{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
        align-items:center;
    }

    .menu a{
        display:block;
        padding:8px 6px;
        font-size:18px;
    }

    .btn-small{
        width:100%;
        max-width:220px;
        padding:12px 18px;
        border-radius:10px;
        text-align:center;
        font-size:17px;
        font-weight:700;
    }

    .page-hero,
    .page-banner{
        padding:34px 0 28px;
        text-align:left;
    }

    .page-hero h1,
    .page-banner h1{
        font-size:34px;
        line-height:1.2;
        margin-bottom:8px;
    }

    .page-hero p,
    .page-banner p{
        font-size:17px;
        line-height:1.45;
    }

    .section{
        padding:42px 0;
    }

    .title,
    .section-title h2{
        font-size:32px;
        line-height:1.18;
        margin-bottom:26px;
    }

    .table-wrap{
        width:100%;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        border-radius:12px;
        box-shadow:0 5px 18px rgba(0,0,0,0.08);
    }

    .tariff-table{
        min-width:560px;
        table-layout:fixed;
        border-radius:0;
    }

    .tariff-table th,
    .tariff-table td{
        padding:13px 10px;
        font-size:15px;
        white-space:normal;
    }

    .tariff-table th:first-child,
    .tariff-table td:first-child{
        width:96px;
    }

    .plan-btn{
        min-height:52px;
        padding:10px 8px;
        font-size:16px;
        line-height:1.15;
    }

    .discount-plan{
        min-height:66px;
    }

    .new-price{
        font-size:17px;
    }

    .selected-plan-row{
        grid-template-columns:1fr auto;
    }

    .remove-plan-btn{
        grid-column:2;
    }

    .footer{
        padding-bottom:96px;
    }
}

@media(max-width:420px){

    .logo-img{
        width:150px;
    }

    .menu{
        grid-template-columns:1fr;
        gap:8px;
    }

    .logo{
        font-size:22px;
    }

    .page-hero h1,
    .page-banner h1{
        font-size:31px;
    }

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

    .tariff-table{
        min-width:520px;
    }

    .tariff-table th,
    .tariff-table td{
        padding:12px 8px;
    }
}

/* ==========================
   CONSUMER INFORMATION
========================== */
.consumer-hero{
    background:#f8fafc;
}

.consumer-info-section{
    background:#f8fafc;
}

.consumer-info-card{
    max-width:900px;
    margin:0 auto;
    padding:42px 48px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:8px;
    box-shadow:0 18px 45px rgba(8,29,66,0.08);
}

.consumer-info-heading{
    text-align:center;
    margin-bottom:28px;
}

.consumer-info-heading span{
    display:block;
    font-size:22px;
    font-weight:800;
    color:#081d42;
}

.consumer-info-heading h2{
    font-size:40px;
    line-height:1.1;
    color:#111827;
}

.consumer-info-list{
    display:grid;
    gap:18px;
    padding-left:28px;
    font-size:20px;
    line-height:1.65;
    color:#1f2937;
    font-weight:700;
}

.consumer-info-list li::marker{
    color:#081d42;
    font-weight:800;
}

@media(max-width:768px){
    .consumer-info-card{
        padding:28px 20px;
    }

    .consumer-info-heading span{
        font-size:18px;
    }

    .consumer-info-heading h2{
        font-size:32px;
    }

    .consumer-info-list{
        font-size:16px;
        line-height:1.55;
        padding-left:22px;
    }
}

.service-tariff-table td:nth-child(2){
    min-width:220px;
    font-size:15px;
    line-height:1.45;
}

.service-discount{
    display:block;
    margin-top:6px;
    color:#16a34a;
    font-weight:800;
}

/* ==========================
   HOME SERVICE/USP OVERVIEW
========================== */
.services-overview-section,
.usp-overview-section{
    background:#f1f5f9;
}

.service-overview-grid,
.usp-overview-grid{
    gap:14px 22px;
}

.service-overview-card,
.usp-overview-card{
    min-height:124px;
    padding:24px 22px;
    border-radius:8px;
    box-shadow:0 4px 16px rgba(8,29,66,0.07);
}

.service-overview-card i{
    color:#2563eb;
    font-size:36px;
    margin-bottom:10px;
}

.service-overview-card h3,
.usp-overview-card h3{
    color:#1f2937;
    font-size:20px;
    font-weight:700;
    line-height:1.16;
}

.service-overview-card p,
.usp-overview-card p{
    color:#111827;
    line-height:1.25;
}

.service-text-card span{
    display:block;
    margin-bottom:6px;
    font-size:16px;
    color:#1f2937;
}

.service-text-card h3{
    font-family:inherit;
}

.service-text-card p{
    font-family:inherit;
    font-size:16px;
    font-weight:400;
}

.usp-overview-section{
    border-top:16px solid #e2e8f0;
}

.usp-overview-card{
    min-height:86px;
    padding:22px 18px;
}

.usp-overview-card h3{
    font-size:17px;
    margin-bottom:4px;
}

.usp-overview-card p{
    font-size:16px;
}

@media(max-width:768px){
    .service-overview-card,
    .usp-overview-card{
        min-height:auto;
    }
}
