```css
/*====================================================
  ZEUS HOSTING - ABOUT US
====================================================*/

.about-zeus{
    padding:100px 0;
    background:
        radial-gradient(circle at top,#17315f 0%,#0b1328 35%,#060b16 100%);
    position:relative;
    overflow:hidden;
}

.about-zeus::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        url("/assets/img/grid-pattern.png");
    opacity:.05;
    pointer-events:none;
}

.about-zeus .container{
    position:relative;
    z-index:2;
}

.about-header{
    text-align:center;
    margin-bottom:70px;
}

.about-badge{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(0,170,255,.15);
    border:1px solid rgba(0,200,255,.4);
    color:#4fd8ff;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:25px;
    box-shadow:0 0 25px rgba(0,180,255,.25);
}

.about-header h2{
    font-size:48px;
    color:#fff;
    margin-bottom:15px;
    font-weight:800;
    text-shadow:0 0 20px rgba(0,200,255,.5);
}

.about-header .subtitle{
    max-width:850px;
    margin:auto;
    color:#c7d7ea;
    font-size:19px;
    line-height:1.8;
}


/* Cards */

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-bottom:70px;
}

.about-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(0,180,255,.18);
    border-radius:20px;
    padding:35px;
    transition:.35s;
    box-shadow:0 0 30px rgba(0,0,0,.35);
}

.about-card:hover{
    transform:translateY(-10px);
    border-color:#00cfff;
    box-shadow:0 0 35px rgba(0,200,255,.45);
}

.about-card .icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    font-size:32px;
    color:#00d8ff;
    background:linear-gradient(135deg,#00d8ff,#006cff);
    box-shadow:0 0 30px rgba(0,170,255,.5);
}

.about-card h3{
    color:#fff;
    margin-bottom:15px;
}

.about-card p{
    color:#cfdceb;
    line-height:1.9;
}


/* Experience */

.experience-box{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    margin:80px 0;
    align-items:center;
}

.experience-left{
    background:rgba(255,255,255,.04);
    border-radius:20px;
    padding:45px;
    border:1px solid rgba(255,255,255,.08);
}

.experience-left h2{
    color:#fff;
    margin-bottom:20px;
    font-size:38px;
}

.experience-left p{
    color:#d4dfec;
    line-height:2;
}

.experience-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.stat{
    text-align:center;
    padding:30px;
    border-radius:20px;
    background:linear-gradient(135deg,#0088ff,#00d5ff);
    color:#fff;
    box-shadow:0 0 35px rgba(0,160,255,.45);
}

.stat h2{
    font-size:50px;
    margin:0;
}

.stat span{
    font-size:15px;
    letter-spacing:1px;
}


/* Features */

.features{
    margin-top:90px;
}

.features h2{
    color:#fff;
    text-align:center;
    margin-bottom:45px;
    font-size:40px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.feature-grid div{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(0,180,255,.15);
    border-radius:15px;
    padding:18px 24px;
    color:#d9e5f3;
    transition:.3s;
}

.feature-grid div:hover{
    background:#00b8ff;
    color:#fff;
    transform:translateX(8px);
}

.feature-grid i{
    color:#31ff9c;
    margin-right:10px;
}


/* Hosting Box */

.hosting-box{
    margin:90px 0;
    text-align:center;
    background:rgba(255,255,255,.05);
    border-radius:25px;
    padding:60px;
    border:1px solid rgba(0,180,255,.18);
}

.hosting-box h2{
    color:#fff;
    font-size:38px;
    margin-bottom:20px;
}

.hosting-box p{
    max-width:900px;
    margin:auto;
    color:#d5dfed;
    line-height:2;
    font-size:18px;
}


/* CTA */

.cta-box{
    text-align:center;
    padding:80px 40px;
    border-radius:25px;
    background:linear-gradient(135deg,#006dff,#00d5ff);
    box-shadow:0 0 50px rgba(0,180,255,.55);
}

.cta-box h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    color:#eef8ff;
    max-width:800px;
    margin:auto auto 35px;
    line-height:2;
}

.cta-box .btn{
    display:inline-block;
    padding:18px 42px;
    border-radius:50px;
    background:#fff;
    color:#0077ff;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}

.cta-box .btn:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 0 35px rgba(255,255,255,.6);
}


/* Responsive */

@media(max-width:991px){

.experience-box{
    grid-template-columns:1fr;
}

.about-header h2{
    font-size:36px;
}

.hosting-box,
.experience-left,
.cta-box{
    padding:35px;
}

}

@media(max-width:600px){

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

.features h2,
.hosting-box h2,
.cta-box h2{
    font-size:28px;
}

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

}
```
