/* =========================================================
   BHOLA VPS — CUSTOM HOME PAGE
   Scoped to .home-page so the existing header/footer remain unchanged.
========================================================= */

.home-page{
    --home-ink:#0b1220;
    --home-muted:#5f6b7a;
    --home-line:#dfe5ee;
    --home-soft:#f6f8fb;
    --home-white:#ffffff;
    --home-blue:#3157d5;
    --home-blue-dark:#17359a;
    --home-blue-soft:#eaf0ff;
    --home-cyan:#36c5d8;
    --home-green:#1fa56b;
    --home-orange:#ff9f43;
    --home-shadow:0 24px 70px rgba(22,38,72,.10);
    color:var(--home-ink);
    background:var(--home-white);
    overflow:hidden;
    padding-top:var(--header-height);
}

.home-page *{
    box-sizing:border-box;
    min-width:0;
}

.home-page img,
.home-page svg{
    max-width:100%;
}

.home-page a{
    color:inherit;
}

.home-shell{
    width:var(--site-container);
    margin:0 auto;
}

.home-section{
    position:relative;
    padding:105px 0;
}

.home-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:18px;
    color:var(--home-blue);
    font-size:13px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.home-kicker::before{
    content:"";
    width:24px;
    height:2px;
    background:currentColor;
    border-radius:99px;
}

.home-title{
    margin:0;
    max-width:760px;
    font-size:clamp(38px,5vw,64px);
    line-height:1.04;
    letter-spacing:-.045em;
    color:var(--home-ink);
}

.home-copy{
    margin:22px 0 0;
    max-width:650px;
    color:var(--home-muted);
    font-size:17px;
    line-height:1.75;
}

.home-btn{
    min-height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:0 24px;
    border:1px solid transparent;
    border-radius:12px;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
}

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

.home-btn-primary{
    color:#fff!important;
    background:var(--home-blue);
    box-shadow:0 14px 26px rgba(49,87,213,.24);
}

.home-btn-primary:hover{
    background:var(--home-blue-dark);
    box-shadow:0 17px 35px rgba(49,87,213,.29);
}

.home-btn-secondary{
    background:#fff;
    color:var(--home-ink)!important;
    border-color:var(--home-line);
}

.home-btn-secondary:hover{
    border-color:#b8c5d8;
    box-shadow:0 12px 26px rgba(22,38,72,.08);
}

/* =========================
   HERO
========================= */
.home-hero{
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    padding:105px 0 115px;
    background:
        radial-gradient(circle at 8% 22%,rgba(49,87,213,.12),transparent 27%),
        radial-gradient(circle at 84% 12%,rgba(54,197,216,.14),transparent 25%),
        linear-gradient(180deg,#fbfcff 0%,#fff 82%);
}

.home-hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--home-line),transparent);
}

.home-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(440px,.92fr);
    gap:72px;
    align-items:center;
}

.home-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:24px;
    padding:8px 12px 8px 9px;
    border:1px solid #dce4f6;
    border-radius:999px;
    background:rgba(255,255,255,.82);
    color:#3a4860;
    font-size:13px;
    font-weight:750;
    box-shadow:0 8px 25px rgba(31,51,92,.06);
    backdrop-filter:blur(10px);
}

.home-hero-badge-dot{
    width:20px;
    height:20px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:var(--home-green);
}

.home-hero h1{
    margin:0;
    max-width:720px;
    font-size:clamp(50px,6.4vw,82px);
    line-height:.98;
    letter-spacing:-.06em;
    color:var(--home-ink);
}

.home-hero h1 span{
    position:relative;
    color:var(--home-blue);
    white-space:nowrap;
}

.home-hero h1 span::after{
    content:"";
    position:absolute;
    left:3%;
    right:1%;
    bottom:2px;
    height:9px;
    z-index:-1;
    border-radius:99px;
    background:rgba(54,197,216,.24);
    transform:rotate(-1.2deg);
}

.home-hero-copy{
    max-width:635px;
    margin:26px 0 0;
    color:#4e5d70;
    font-size:18px;
    line-height:1.75;
}

.home-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:13px;
    margin-top:34px;
}

.home-trust-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:34px;
    color:#526075;
    font-size:13px;
    font-weight:700;
}

.home-trust-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.home-trust-item svg{
    width:18px;
    height:18px;
    color:var(--home-green);
}

/* Custom server illustration */
.home-server-stage{
    position:relative;
    min-height:510px;
    display:grid;
    place-items:center;
    isolation:isolate;
}

.home-server-stage::before{
    content:"";
    position:absolute;
    width:390px;
    height:390px;
    border:1px solid rgba(49,87,213,.13);
    border-radius:50%;
    box-shadow:
        0 0 0 38px rgba(49,87,213,.035),
        0 0 0 88px rgba(54,197,216,.025);
}

.home-server-visual{
    position:relative;
    z-index:3;
    width:min(100%,470px);
    filter:drop-shadow(0 36px 36px rgba(27,49,94,.14));
}

.home-server-visual .server-led{
    animation:homePulseLed 1.8s ease-in-out infinite;
}

.home-server-visual .signal-line{
    stroke-dasharray:7 10;
    animation:homeSignal 7s linear infinite;
}

.home-floating-chip{
    position:absolute;
    z-index:5;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border:1px solid rgba(211,220,235,.9);
    border-radius:13px;
    background:rgba(255,255,255,.9);
    color:#26354c;
    font-size:12px;
    font-weight:800;
    box-shadow:0 14px 32px rgba(28,48,86,.12);
    backdrop-filter:blur(12px);
}

.home-floating-chip svg{
    width:22px;
    height:22px;
}

.home-chip-one{top:52px;right:2px;animation:homeFloatOne 5.7s ease-in-out infinite;}
.home-chip-two{left:0;bottom:82px;animation:homeFloatTwo 6.3s ease-in-out infinite;}
.home-chip-three{right:10px;bottom:34px;animation:homeFloatOne 7s ease-in-out infinite reverse;}

.home-status-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--home-green);
    box-shadow:0 0 0 5px rgba(31,165,107,.12);
}

@keyframes homePulseLed{
    0%,100%{opacity:.38}
    50%{opacity:1}
}

@keyframes homeSignal{
    to{stroke-dashoffset:-120}
}

@keyframes homeFloatOne{
    0%,100%{transform:translate3d(0,0,0)}
    50%{transform:translate3d(0,-10px,0)}
}

@keyframes homeFloatTwo{
    0%,100%{transform:translate3d(0,0,0)}
    50%{transform:translate3d(8px,-8px,0)}
}

/* =========================
   DOMAIN SEARCH
========================= */
.home-domain-wrap{
    position:relative;
    z-index:8;
    margin-top:-58px;
}

.home-domain-card{
    display:grid;
    grid-template-columns:.74fr 1.4fr;
    gap:38px;
    align-items:center;
    padding:30px 32px;
    border:1px solid rgba(215,224,238,.9);
    border-radius:22px;
    background:rgba(255,255,255,.93);
    box-shadow:var(--home-shadow);
    backdrop-filter:blur(18px);
}

.home-domain-intro small{
    color:var(--home-blue);
    font-size:12px;
    font-weight:850;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.home-domain-intro h2{
    margin:8px 0 0;
    font-size:27px;
    letter-spacing:-.03em;
}

.home-domain-form{
    display:flex;
    min-height:60px;
    padding:5px;
    border:1px solid #dce3ee;
    border-radius:14px;
    background:#f8faff;
}

.home-domain-form input{
    min-width:0;
    flex:1;
    border:0;
    outline:0;
    padding:0 17px;
    background:transparent;
    color:var(--home-ink);
    font-size:15px;
}

.home-domain-form button{
    min-width:150px;
    border:0;
    border-radius:10px;
    color:#fff;
    background:var(--home-blue);
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    transition:background .2s ease,transform .2s ease;
}

.home-domain-form button:hover{
    background:var(--home-blue-dark);
}

.home-tld-list{
    display:flex;
    flex-wrap:wrap;
    gap:9px 15px;
    margin-top:13px;
    color:#59667a;
    font-size:12px;
}

.home-tld-list b{
    color:var(--home-ink);
}

/* =========================
   LOCAL PERFORMANCE STORY
========================= */
.home-performance{
    padding:88px 0 44px;
}

.home-performance-card{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,.88fr) minmax(420px,1.12fr);
    gap:54px;
    align-items:center;
    padding:52px;
    border-radius:28px;
    color:#fff;
    background:
        radial-gradient(circle at 94% 4%,rgba(54,197,216,.24),transparent 28%),
        linear-gradient(135deg,#101a2c 0%,#17294b 100%);
    box-shadow:0 30px 75px rgba(16,31,63,.18);
    overflow:hidden;
}

.home-performance-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-120px;
    bottom:-150px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:50%;
    box-shadow:0 0 0 40px rgba(255,255,255,.025),0 0 0 82px rgba(255,255,255,.018);
}

.home-performance-copy{
    position:relative;
    z-index:2;
}

.home-performance-copy .home-kicker{
    color:#7edce8;
}

.home-performance-copy h2{
    margin:0;
    max-width:520px;
    font-size:clamp(35px,4.6vw,56px);
    line-height:1.04;
    letter-spacing:-.05em;
}

.home-performance-copy p{
    margin:20px 0 0;
    max-width:530px;
    color:#c4cfdf;
    font-size:15px;
    line-height:1.75;
}

.home-performance-tags{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:25px;
}

.home-performance-tags span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:35px;
    padding:0 12px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:999px;
    color:#e7edf7;
    background:rgba(255,255,255,.055);
    font-size:11px;
    font-weight:750;
}

.home-performance-tags i{
    color:#65d5e4;
}

.home-performance-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:27px;
    color:#fff!important;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
}

.home-performance-link i{
    transition:transform .2s ease;
}

.home-performance-link:hover i{
    transform:translateX(4px);
}

.home-route-board{
    position:relative;
    min-height:355px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:23px;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        rgba(7,16,31,.34);
    background-size:28px 28px;
    overflow:hidden;
}

.home-route-board::after{
    content:"Live route";
    position:absolute;
    top:16px;
    right:16px;
    padding:7px 10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    color:#c9d5e5;
    background:rgba(5,13,25,.35);
    font-size:10px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.home-route-svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.home-route-svg path{
    fill:none;
    stroke-linecap:round;
}

.home-route-main{
    stroke:url(#routeGradient);
    stroke-width:4;
    stroke-dasharray:10 12;
    animation:homeRouteFlow 5.5s linear infinite;
}

.home-route-soft{
    stroke:rgba(255,255,255,.1);
    stroke-width:1.5;
}

.home-route-node{
    position:absolute;
    z-index:3;
    width:138px;
    min-height:92px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:7px;
    padding:15px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:16px;
    background:rgba(15,29,52,.92);
    box-shadow:0 18px 38px rgba(0,0,0,.18);
    backdrop-filter:blur(10px);
}

.home-route-node i{
    color:#67d8e6;
    font-size:18px;
}

.home-route-node strong{
    font-size:13px;
}

.home-route-node span{
    color:#9fadc1;
    font-size:10px;
    line-height:1.4;
}

.home-route-user{left:7%;top:calc(50% - 46px);}
.home-route-bdix{left:calc(50% - 69px);top:calc(50% - 46px);}
.home-route-server{right:7%;top:calc(50% - 46px);}

.home-route-pulse{
    position:absolute;
    z-index:4;
    width:12px;
    height:12px;
    left:22%;
    top:calc(50% - 6px);
    border-radius:50%;
    background:#6fe1ee;
    box-shadow:0 0 0 7px rgba(111,225,238,.12),0 0 20px rgba(111,225,238,.8);
    animation:homeRoutePulse 3.8s ease-in-out infinite;
}

@keyframes homeRouteFlow{
    to{stroke-dashoffset:-176;}
}

@keyframes homeRoutePulse{
    0%{left:22%;opacity:0;}
    10%{opacity:1;}
    50%{opacity:1;}
    90%{opacity:1;}
    100%{left:77%;opacity:0;}
}

/* =========================
   SERVICE EXPERIENCE
========================= */
.home-services{
    background:var(--home-soft);
}

.home-services-head{
    display:flex;
    justify-content:space-between;
    gap:45px;
    align-items:flex-end;
    margin-bottom:52px;
}

.home-services-head .home-copy{
    max-width:470px;
    margin:0;
}

.home-service-layout{
    display:grid;
    grid-template-columns:330px minmax(0,1fr);
    gap:30px;
}

.home-service-tabs{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.home-service-tab{
    width:100%;
    display:grid;
    grid-template-columns:46px 1fr 20px;
    gap:14px;
    align-items:center;
    padding:15px;
    border:1px solid transparent;
    border-radius:14px;
    background:transparent;
    color:#344257;
    text-align:left;
    cursor:pointer;
    transition:background .2s ease,border-color .2s ease,transform .2s ease;
}

.home-service-tab:hover{
    transform:translateX(3px);
}

.home-service-tab.is-active{
    border-color:#dce4f2;
    background:#fff;
    box-shadow:0 10px 26px rgba(24,44,82,.07);
}

.home-service-tab-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#e9efff;
    color:var(--home-blue);
}

.home-service-tab-icon svg{
    width:23px;
    height:23px;
}

.home-service-tab strong{
    display:block;
    font-size:15px;
}

.home-service-tab small{
    display:block;
    margin-top:3px;
    color:#7b8797;
    font-size:11px;
}

.home-service-arrow{
    color:#9da9ba;
    font-size:17px;
}

.home-service-panel{
    position:relative;
    min-height:510px;
    overflow:hidden;
    border:1px solid #dbe3ef;
    border-radius:24px;
    background:#fff;
    box-shadow:0 24px 60px rgba(24,44,82,.08);
}

.home-panel-item{
    position:absolute;
    inset:0;
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:35px;
    align-items:center;
    padding:48px;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:opacity .28s ease,transform .28s ease,visibility .28s;
}

.home-panel-item.is-active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.home-panel-copy h3{
    margin:0;
    font-size:35px;
    line-height:1.12;
    letter-spacing:-.04em;
}

.home-panel-copy p{
    margin:17px 0 0;
    color:var(--home-muted);
    line-height:1.75;
}

.home-check-list{
    display:grid;
    gap:11px;
    margin:25px 0 0;
    padding:0;
    list-style:none;
}

.home-check-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#314057;
    font-size:14px;
    font-weight:700;
}

.home-check-list svg{
    flex:0 0 auto;
    width:18px;
    height:18px;
    color:var(--home-green);
}

.home-panel-art{
    position:relative;
    min-height:360px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:
        linear-gradient(rgba(49,87,213,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(49,87,213,.045) 1px,transparent 1px),
        #f8faff;
    background-size:24px 24px;
}

.home-panel-art svg{
    width:86%;
    max-height:320px;
}

/* =========================
   INFRASTRUCTURE FLOW
========================= */
.home-network{
    background:#0c1525;
    color:#fff;
}

.home-network .home-title,
.home-network .home-kicker{
    color:#fff;
}

.home-network .home-kicker::before{
    background:var(--home-cyan);
}

.home-network .home-copy{
    color:#aebad0;
}

.home-network-head{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:70px;
    align-items:end;
    margin-bottom:55px;
}

.home-network-board{
    position:relative;
    min-height:530px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.09);
    border-radius:26px;
    background:
        radial-gradient(circle at 50% 50%,rgba(49,87,213,.22),transparent 40%),
        linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
}

.home-network-svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.home-network-path{
    fill:none;
    stroke:rgba(95,158,255,.46);
    stroke-width:1.6;
    stroke-dasharray:5 10;
    animation:homeNetworkFlow 9s linear infinite;
}

.home-network-path.alt{
    stroke:rgba(54,197,216,.35);
    animation-duration:12s;
    animation-direction:reverse;
}

.home-node{
    position:absolute;
    width:168px;
    min-height:112px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    background:rgba(17,31,53,.82);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
    backdrop-filter:blur(10px);
}

.home-node::before{
    content:"";
    position:absolute;
    top:17px;
    right:17px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--home-green);
    box-shadow:0 0 0 5px rgba(31,165,107,.1);
}

.home-node svg{
    width:28px;
    height:28px;
    color:#76baff;
    margin-bottom:12px;
}

.home-node strong{
    font-size:14px;
}

.home-node span{
    margin-top:4px;
    color:#8ea0bc;
    font-size:11px;
}

.home-node-dhaka{left:calc(50% - 84px);top:calc(50% - 56px);transform:scale(1.08);border-color:rgba(54,197,216,.35);}
.home-node-singapore{right:7%;top:11%;}
.home-node-germany{left:8%;top:14%;}
.home-node-usa{left:7%;bottom:10%;}
.home-node-edge{right:8%;bottom:12%;}

.home-network-legend{
    position:absolute;
    left:24px;
    bottom:20px;
    display:flex;
    gap:18px;
    color:#8799b6;
    font-size:11px;
}

.home-network-legend span{
    display:flex;
    align-items:center;
    gap:7px;
}

.home-network-legend i{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--home-green);
}

@keyframes homeNetworkFlow{
    to{stroke-dashoffset:-150}
}

/* =========================
   PLANS
========================= */
.home-plan-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:50px;
    margin-bottom:45px;
}

.home-plan-toggle{
    display:flex;
    align-items:center;
    gap:4px;
    padding:4px;
    border:1px solid var(--home-line);
    border-radius:12px;
    background:#f8faff;
}

.home-plan-toggle button{
    min-height:38px;
    padding:0 14px;
    border:0;
    border-radius:8px;
    background:transparent;
    color:#6b7788;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.home-plan-toggle button.is-active{
    background:#fff;
    color:var(--home-ink);
    box-shadow:0 5px 15px rgba(23,43,78,.09);
}

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

.home-plan-card{
    position:relative;
    padding:32px;
    border:1px solid var(--home-line);
    border-radius:20px;
    background:#fff;
    transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.home-plan-card:hover{
    transform:translateY(-5px);
    border-color:#c3cee0;
    box-shadow:0 22px 45px rgba(25,44,83,.10);
}

.home-plan-card.is-featured{
    border-color:var(--home-blue);
    box-shadow:0 24px 50px rgba(49,87,213,.14);
}

.home-plan-label{
    display:inline-block;
    margin-bottom:22px;
    color:var(--home-blue);
    font-size:11px;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.home-plan-card h3{
    margin:0;
    font-size:25px;
    letter-spacing:-.025em;
}

.home-plan-card>p{
    min-height:51px;
    margin:10px 0 0;
    color:var(--home-muted);
    font-size:13px;
    line-height:1.7;
}

.home-plan-price{
    display:flex;
    align-items:end;
    gap:6px;
    margin:26px 0 22px;
}

.home-plan-price strong{
    font-size:43px;
    line-height:1;
    letter-spacing:-.045em;
}

.home-plan-price span{
    padding-bottom:5px;
    color:#7a8798;
    font-size:12px;
}

.home-plan-list{
    display:grid;
    gap:13px;
    margin:0 0 28px;
    padding:24px 0 0;
    border-top:1px solid var(--home-line);
    list-style:none;
}

.home-plan-list li{
    display:flex;
    gap:10px;
    color:#3f4c60;
    font-size:13px;
}

.home-plan-list svg{
    width:17px;
    height:17px;
    flex:0 0 auto;
    color:var(--home-green);
}

.home-plan-card .home-btn{
    width:100%;
}

.home-popular-tag{
    position:absolute;
    top:0;
    right:24px;
    padding:7px 12px;
    border-radius:0 0 9px 9px;
    color:#fff;
    background:var(--home-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:.08em;
}

/* =========================
   HUMAN SUPPORT / TESTIMONIAL
========================= */
.home-support-story{
    background:var(--home-soft);
}

.home-support-layout{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.home-support-collage{
    position:relative;
    min-height:480px;
}

.home-support-main-card{
    position:absolute;
    inset:45px 40px 35px 0;
    padding:38px;
    border-radius:24px;
    color:#fff;
    background:#16243b;
    box-shadow:0 28px 70px rgba(17,31,53,.22);
}

.home-support-main-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:160px;
    height:160px;
    border-radius:100% 0 0 0;
    background:linear-gradient(135deg,transparent,rgba(54,197,216,.13));
}

.home-support-main-card svg{
    width:58px;
    height:58px;
    color:#62d7e6;
}

.home-support-main-card h3{
    max-width:330px;
    margin:26px 0 0;
    font-size:32px;
    line-height:1.15;
    letter-spacing:-.035em;
}

.home-support-main-card p{
    max-width:340px;
    margin:17px 0 0;
    color:#b5c0d2;
    font-size:14px;
    line-height:1.75;
}

.home-support-float{
    position:absolute;
    right:0;
    width:215px;
    padding:18px;
    border:1px solid #dce3ee;
    border-radius:16px;
    background:#fff;
    box-shadow:0 18px 42px rgba(25,44,83,.13);
}

.home-support-float.one{top:0;}
.home-support-float.two{bottom:0;right:20px;}

.home-support-float small{
    color:#8490a0;
    font-size:11px;
}

.home-support-float strong{
    display:block;
    margin-top:6px;
    font-size:15px;
}

.home-support-float .mini-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:11px;
    color:#506075;
    font-size:11px;
}

.home-mini-avatar{
    width:27px;
    height:27px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:var(--home-blue);
    font-size:10px;
    font-weight:900;
}

.home-quote{
    margin-top:35px;
    padding:25px 0 0;
    border-top:1px solid var(--home-line);
}

.home-quote p{
    margin:0;
    color:#334158;
    font-size:18px;
    line-height:1.7;
}

.home-quote-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.home-quote-author strong{
    display:block;
    font-size:13px;
}

.home-quote-author span{
    display:block;
    margin-top:2px;
    color:#7e8998;
    font-size:11px;
}

/* =========================
   FINAL CTA
========================= */
.home-final{
    padding:48px 0 105px;
}

.home-final-card{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr auto;
    gap:40px;
    align-items:center;
    padding:52px 58px;
    border-radius:25px;
    color:#fff;
    background:var(--home-blue);
    box-shadow:0 28px 70px rgba(49,87,213,.23);
}

.home-final-card::before,
.home-final-card::after{
    content:"";
    position:absolute;
    border:1px solid rgba(255,255,255,.14);
    border-radius:50%;
}

.home-final-card::before{
    width:280px;
    height:280px;
    right:-90px;
    top:-145px;
}

.home-final-card::after{
    width:190px;
    height:190px;
    right:40px;
    bottom:-140px;
}

.home-final-card h2{
    position:relative;
    z-index:2;
    margin:0;
    max-width:680px;
    font-size:clamp(34px,4.3vw,54px);
    line-height:1.06;
    letter-spacing:-.045em;
}

.home-final-card p{
    position:relative;
    z-index:2;
    margin:14px 0 0;
    color:#dce5ff;
    line-height:1.7;
}

.home-final-card .home-btn{
    position:relative;
    z-index:2;
    background:#fff;
    color:var(--home-blue)!important;
    border-color:#fff;
}

/* =========================
   REVEAL MOTION
========================= */
.home-reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1);
}

.home-reveal.is-visible{
    opacity:1;
    transform:none;
}

/* =========================
   DARK MODE SUPPORT
========================= */
body.dark-mode .home-page{
    --home-ink:#f4f7fb;
    --home-muted:#aab5c5;
    --home-line:#283245;
    --home-soft:#111722;
    --home-white:#0e141e;
    background:#0e141e;
}

body.dark-mode .home-hero{
    background:
        radial-gradient(circle at 8% 22%,rgba(49,87,213,.2),transparent 27%),
        radial-gradient(circle at 84% 12%,rgba(54,197,216,.13),transparent 25%),
        linear-gradient(180deg,#101826 0%,#0e141e 82%);
}

body.dark-mode .home-hero-badge,
body.dark-mode .home-domain-card,
body.dark-mode .home-service-tab.is-active,
body.dark-mode .home-service-panel,
body.dark-mode .home-plan-card,
body.dark-mode .home-support-float,
body.dark-mode .home-btn-secondary{
    background:#151d2a;
    border-color:#2a3547;
    color:#edf2fa;
}

body.dark-mode .home-domain-form,
body.dark-mode .home-panel-art,
body.dark-mode .home-plan-toggle{
    background:#101724;
    border-color:#293447;
}

body.dark-mode .home-domain-form input,
body.dark-mode .home-check-list li,
body.dark-mode .home-plan-list li,
body.dark-mode .home-quote p{
    color:#d6deea;
}

body.dark-mode .home-plan-toggle button.is-active{
    background:#1c2533;
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1050px){
    .home-hero-grid{
        grid-template-columns:1fr 420px;
        gap:35px;
    }

    .home-service-layout{
        grid-template-columns:280px minmax(0,1fr);
    }

    .home-panel-item{
        padding:35px;
    }
}

@media(max-width:900px){
    .home-section{padding:82px 0;}

    .home-hero{
        min-height:auto;
        padding:92px 0 105px;
    }

    .home-hero-grid,
    .home-network-head,
    .home-support-layout{
        grid-template-columns:1fr;
    }

    .home-server-stage{
        margin-top:20px;
        min-height:460px;
    }

    .home-domain-card{
        grid-template-columns:1fr;
        gap:22px;
    }
.home-services-head,
    .home-plan-head{
        align-items:flex-start;
        flex-direction:column;
        display:flex;
    }

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

    .home-service-tabs{
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }

    .home-service-panel{min-height:570px;}

    .home-panel-item{
        grid-template-columns:1fr 1fr;
    }

    .home-plans-grid{
        grid-template-columns:1fr;
    }

    .home-plan-card>p{min-height:auto;}

    .home-final-card{
        grid-template-columns:1fr;
    }
}

@media(max-width:680px){
    .home-page{padding-top:70px;}

    .home-section{padding:70px 0;}

    .home-hero{
        padding:74px 0 95px;
    }

    .home-hero h1{
        font-size:clamp(42px,13vw,58px);
        line-height:1.02;
    }

    .home-hero h1 span{
        white-space:normal;
    }

    .home-hero-copy{
        font-size:16px;
    }

    .home-hero-actions .home-btn{
        width:100%;
    }

    .home-server-stage{
        min-height:395px;
    }

    .home-server-stage::before{
        width:280px;
        height:280px;
    }

    .home-floating-chip{
        padding:9px 11px;
        font-size:10px;
    }

    .home-chip-one{top:30px;right:0;}
    .home-chip-two{left:0;bottom:54px;}
    .home-chip-three{right:0;bottom:5px;}

    .home-domain-wrap{margin-top:-48px;}
    .home-domain-card{padding:23px 20px;}
    .home-domain-form{flex-direction:column;padding:6px;}
    .home-domain-form input{min-height:50px;}
    .home-domain-form button{min-height:48px;width:100%;}
.home-service-tabs{grid-template-columns:1fr;}
    .home-service-panel{min-height:785px;}
    .home-panel-item{
        grid-template-columns:1fr;
        align-content:start;
        padding:25px;
    }
    .home-panel-copy h3{font-size:29px;}
    .home-panel-art{min-height:300px;}

    .home-network-board{min-height:680px;}
    .home-node{width:138px;min-height:98px;padding:14px;}
    .home-node-dhaka{left:calc(50% - 69px);top:calc(50% - 49px);}
    .home-node-singapore{right:4%;top:6%;}
    .home-node-germany{left:4%;top:23%;}
    .home-node-usa{left:4%;bottom:17%;}
    .home-node-edge{right:4%;bottom:3%;}
    .home-network-legend{display:none;}

    .home-plan-card{padding:27px 23px;}

    .home-support-collage{min-height:490px;}
    .home-support-main-card{inset:40px 22px 50px 0;padding:28px;}
    .home-support-main-card h3{font-size:28px;}
    .home-support-float{width:185px;padding:14px;}

    .home-final{padding-top:18px;}
    .home-final-card{padding:37px 26px;}
}


@media(max-width:900px){
    .home-performance-card{
        grid-template-columns:1fr;
        gap:38px;
        padding:40px;
    }

    .home-route-board{
        min-height:330px;
    }
}

@media(max-width:680px){
    .home-page,
    .home-page *{
        min-width:0;
    }

    .home-page h1,
    .home-page h2,
    .home-page h3,
    .home-page p,
    .home-page span,
    .home-page a,
    .home-page li{
        overflow-wrap:anywhere;
    }

    .home-performance{
        padding:66px 0 30px;
    }

    .home-performance-card{
        gap:30px;
        padding:29px 22px;
        border-radius:22px;
    }

    .home-performance-copy h2{
        font-size:clamp(32px,10.5vw,43px);
    }

    .home-performance-tags{
        align-items:flex-start;
        flex-direction:column;
    }

    .home-route-board{
        min-height:430px;
        background-size:22px 22px;
    }

    .home-route-svg{
        display:none;
    }

    .home-route-node{
        width:calc(100% - 36px);
        min-height:94px;
        left:18px;
        right:auto;
        top:auto;
    }

    .home-route-user{top:34px;}
    .home-route-bdix{top:168px;}
    .home-route-server{top:302px;}

    .home-route-node::after{
        content:"";
        position:absolute;
        left:50%;
        bottom:-40px;
        width:2px;
        height:40px;
        background:linear-gradient(#6fe1ee,rgba(111,225,238,.15));
    }

    .home-route-server::after{
        display:none;
    }

    .home-route-pulse{
        display:none;
    }

    .home-service-panel{
        min-height:auto;
    }

    .home-panel-item{
        position:relative;
        inset:auto;
        display:none;
        min-height:0;
    }

    .home-panel-item.is-active{
        display:grid;
    }

    .home-network-board{
        width:100%;
    }

    .home-plan-toggle{
        width:100%;
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .home-plan-toggle button{
        min-width:0;
        padding-inline:10px;
        white-space:normal;
    }
}

@media(prefers-reduced-motion:reduce){
    .home-page *,
    .home-page *::before,
    .home-page *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        scroll-behavior:auto!important;
        transition-duration:.01ms!important;
    }
}


/* LIVE OPERATIONS / CAPABILITIES — AUG 2026 */
.home-live-operations {
    background: #f6f8fb;
}

.home-live-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
    gap: clamp(44px, 6vw, 94px);
    align-items: center;
}

.home-live-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.home-live-status {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid #dde4ed;
    border-radius: 10px;
    background: #fff;
}

.home-live-status strong,
.home-live-status small {
    display: block;
}

.home-live-status strong {
    color: #182235;
    font-size: 14px;
}

.home-live-status small {
    margin-top: 4px;
    color: #6d7888;
    font-size: 11px;
    line-height: 1.4;
}

.home-live-pulse {
    position: relative;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #20a36b;
}

.home-live-pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(32,163,107,.35);
    border-radius: inherit;
    animation: home-live-pulse 2s ease-out infinite;
}

@keyframes home-live-pulse {
    0% { transform: scale(.65); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}

.home-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.home-live-dashboard {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #d9e1ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(20,35,65,.08);
}

.home-dashboard-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px 14px;
    color: #334155;
    font-size: 12px;
    font-weight: 750;
}

.home-dashboard-topline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-dashboard-topline i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20a36b;
    box-shadow: 0 0 0 5px rgba(32,163,107,.11);
}

.home-dashboard-topline strong {
    color: #20a36b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-dashboard-svg {
    width: 100%;
    height: auto;
    display: block;
}

.home-dashboard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px 4px 2px;
}

.home-dashboard-tags span {
    padding: 7px 9px;
    border: 1px solid #dce4ef;
    border-radius: 6px;
    color: #5f6b7b;
    background: #f7f9fc;
    font-size: 10px;
    font-weight: 750;
}

.home-capabilities {
    background: #fff;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 38px;
}

.home-section-head .home-copy {
    max-width: 500px;
}

.home-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-capability-card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 27px 24px;
    border: 1px solid #dfe5ed;
    border-radius: 11px;
    color: #172033;
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-capability-card:hover {
    border-color: #c8d4ec;
    box-shadow: 0 13px 30px rgba(20,35,65,.075);
    transform: translateY(-2px);
}

.home-capability-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #2449c7;
    background: #edf2ff;
}

.home-capability-icon svg {
    width: 27px;
    height: 27px;
}

.home-capability-card h3 {
    margin: 22px 0 9px;
    font-size: 20px;
    letter-spacing: -.025em;
}

.home-capability-card p {
    flex: 1 1 auto;
    margin: 0;
    color: #697486;
    font-size: 13px;
    line-height: 1.7;
}

.home-capability-card > span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #2449c7;
    font-size: 12px;
    font-weight: 800;
}

.home-capability-card > span:last-child i {
    font-size: 10px;
}

body.dark-mode .home-live-operations {
    background: #101827;
}

body.dark-mode .home-live-status,
body.dark-mode .home-live-dashboard,
body.dark-mode .home-capability-card {
    border-color: #2b3749;
    background: #131d2d;
}

body.dark-mode .home-live-status strong,
body.dark-mode .home-dashboard-topline,
body.dark-mode .home-capability-card,
body.dark-mode .home-capability-card h3 {
    color: #eef3fb;
}

body.dark-mode .home-live-status small,
body.dark-mode .home-capability-card p {
    color: #9aa8ba;
}

body.dark-mode .home-dashboard-tags span {
    border-color: #2b3749;
    color: #aeb9c9;
    background: #0f1724;
}

body.dark-mode .home-capabilities {
    background: #0d1522;
}

body.dark-mode .home-capability-icon {
    background: #1b2a47;
}

@media (max-width: 1050px) {
    .home-live-layout {
        grid-template-columns: 1fr;
    }

    .home-live-dashboard {
        max-width: 720px;
    }

    .home-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-live-status-grid,
    .home-capability-grid {
        grid-template-columns: 1fr;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .home-live-dashboard {
        padding: 14px;
        border-radius: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-live-pulse::after {
        animation: none;
    }
}
