/* ========================================
   Web Hosting Services — page-specific CSS
   Prefix: whs-
   ======================================== */

.whs-label {
    display: inline-block;
    font-family: Inter, sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(139, 115, 255, 1);
    margin-bottom: 12px;
}
.trusted-section{
    padding-bottom: 50px !important;
}
.navbar-toggler-icon {
    background: #000;
}
.whs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: Inter, sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 16px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.whs-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.whs-btn--primary {
    color: #ffffff;
    background: linear-gradient(90deg, #6957FF 0%, #B59DFF 100%);
    box-shadow: 0 12px 25px rgba(110, 98, 255, 0.35);
}

.whs-btn--primary:hover {
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(110, 98, 255, 0.45);
}

.whs-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.whs-btn__icon i {
    font-size: 13px;
}

.whs-btn--navy {
    color: #ffffff;
    background: rgba(5, 5, 62, 1);
    box-shadow: 0 12px 28px rgba(5, 5, 62, 0.28);
}

.whs-btn--navy:hover {
    color: #ffffff;
    background: rgba(15, 15, 80, 1);
}

.whs-btn--navy i {
    font-size: 14px;
}

/* ---------- Page shell ---------- */
main:has(.hosting-hero) {
    overflow-x: clip;
}

/* ---------- Hero ---------- */
.hosting-hero{
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#0B0B2E;
    padding:90px 0;
}

.hero-bg{
    position:absolute;
    inset:0;
    left:18%;
    z-index:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hosting-hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        90deg,
        #0B0B2E 0%,
        rgba(11,11,46,.96) 18%,
        rgba(11,11,46,.72) 42%,
        rgba(11,11,46,.28) 66%,
        rgba(11,11,46,.08) 100%
    );
}

.container-width{
    width:90%;
    margin:auto;
    padding:0 15px;
    position:relative;
    z-index:2;
}


.hero-content{
    max-width:760px;
    color:#fff;
}

.hero-content h1{
    line-height:63px;
    letter-spacing:.4px;
    margin-bottom:32px;
    color:#fff;
}

.subtitle{
    max-width:760px;
    line-height:26px;
    font-weight:500;
    color:#E5E7F6;
    margin-bottom:18px;
}

.desc{
    max-width:760px;
    line-height:26px;
    font-weight:500;
    color:#D5D8E8;
    margin-bottom:38px;
}



.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 28px;
    border-radius:10px;
    text-decoration:none;
    color:#fff;
    background:#7058FF;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.hero-btn:hover{
    color:#fff;
    background:#5D43FF;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(112,88,255,.35);
}


.hero-image{
    position:relative;
    width:100%;
    max-width:630px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 35px 80px rgba(0,0,0,.45);
}



.info-card{
    position:absolute;
    width:190px;
    max-width:190px;
    min-height:102px;
    padding:14px 18px;
    background:rgba(168,174,208,.25);
    border:1px solid rgba(255,255,255,.22);
    border-radius:18px;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 20px 40px rgba(0,0,0,.22);
    color:#fff;
}

.info-card h3{
    margin:0;
    font-family:Inter,sans-serif;
    font-size:36px;
    line-height:1;
    font-weight:700;
    color:#39E5A2;
}

.card-two h3{
    color:#FFD34A;
}

.info-card span{
    font-size:14px;
    color:#fff;
}

.info-card p{
    margin-top:8px;
    font-size:12px;
    line-height:18px;
    color:#F3F5FF;
}


.card-one{
    top:-30px;
    left:-35px;
}

.card-two{
    top:50%;
    right:-40px;
    transform:translateY(-50%);
}

.card-three{
    left:-25px;
    bottom:-30px;
}

@media (max-width:1200px){

    .hosting-hero{
        min-height:680px;
    }

    .hero-content h1{
        font-size:50px;
        line-height:58px;
    }

    .hero-image img{
        max-width:560px;
    }

    .card-one{
        left:-20px;
    }

    .card-two{
        right:-20px;
    }

    .card-three{
        left:-15px;
    }

}
@media (max-width:991px){

    .hosting-hero{
        min-height:auto;
        padding:90px 0 80px;
    }

    .hero-bg{
        left:0;
    }

    .hosting-hero::before{
        background:linear-gradient(
            180deg,
            rgba(11,11,46,.95) 0%,
            rgba(11,11,46,.85) 100%
        );
    }

    .hero-content{
        text-align:center;
        max-width:100%;
        margin-bottom:70px;
    }

    .hero-content h1{
        font-size:46px;
        line-height:56px;
    }

    .subtitle,
    .desc{
        max-width:100%;
    }

    .hero-btn{
        justify-content:center;
    }

    .hero-image{
        max-width:640px;
        margin:auto;
    }

    .hero-image img{
        max-width:100%;
    }

    .info-card{
        width:180px;
        min-height:95px;
    }

    .card-one{
        top:-18px;
        left:0;
    }

    .card-two{
        top:45%;
        right:0;
        transform:translateY(-50%);
    }

    .card-three{
        bottom:-18px;
        left:0;
    }

}
@media (max-width:767px) {

    .hosting-hero {
        min-height: auto;
        padding: 60px 0;
        overflow: visible;
    }

    .container-width {
        width: 94%;
        padding: 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 45px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .desc {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 28px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 10px;
    }

    .hero-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
    }

    .info-card {
        position: static;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin-top: 18px;
        padding: 18px;
        border-radius: 16px;
        text-align: center;
    }

    .info-card h3 {
        font-size: 30px;
    }

    .info-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .card-one,
    .card-two,
    .card-three {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }

}

@media (max-width:480px) {

    .hosting-hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .subtitle {
        font-size: 15px;
        line-height: 24px;
    }

    .desc {
        font-size: 14px;
        line-height: 23px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 14px 16px;
        gap: 8px;
    }

    .hero-btn i {
        font-size: 14px;
    }

    .info-card {
        padding: 16px;
    }

    .info-card h3 {
        font-size: 26px;
    }

    .info-card p {
        font-size: 13px;
        line-height: 20px;
    }

}







/* ---------- Hosting Truth ---------- */
.whs-truth {
    background: rgba(245, 246, 255, 1);
    padding: 90px 0;
}

.whs-truth__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.whs-truth__media > img {
    display: block;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    min-height: 420px;
}

.whs-truth__stats {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: min(260px, 70%);
    background: rgba(230, 226, 255, 0.96);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 40px rgba(24, 38, 65, 0.16);
    backdrop-filter: blur(8px);
}

.whs-truth__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.whs-truth__stat + .whs-truth__stat {
    border-top: 1px solid rgba(168, 174, 208, 0.35);
}

.whs-truth__stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 88px;
}

.whs-truth__stat-value--purple {
    color: rgba(139, 115, 255, 1);
}

.whs-truth__stat-value--red {
    color: rgba(214, 106, 106, 1);
}

.whs-truth__stat-value--green {
    color: rgba(56, 184, 123, 1);
}

.whs-truth__stat span {
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(26, 26, 77, 1);
}

.whs-truth__content h2 {
    color: rgba(5, 5, 62, 1);
    margin-bottom: 18px;
    max-width: 560px;
}

.whs-truth__content h2 span {
    color: rgba(139, 115, 255, 1);
}

.whs-truth__content > p {
    color: rgba(71, 70, 80, 1);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 22px !important;
}

.whs-truth__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.whs-truth__pills span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(221, 225, 247, 0.85);
    color: rgba(5, 5, 62, 1);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* ---------- Solutions ---------- */
.whs-solutions {
    background: #ffffff;
    padding: 90px 0 100px;
}

.whs-solutions__header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.whs-solutions__header h2 {
    color: rgba(5, 5, 62, 1);
    margin-bottom: 16px;
}

.whs-solutions__header p {
    color: rgba(95, 93, 104, 1);
    line-height: 1.65;
    margin-bottom: 0 !important;
}

.whs-solution-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(24, 38, 65, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whs-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(24, 38, 65, 0.14);
}

.whs-solution-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0a0d26;
}

.whs-solution-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whs-solution-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 177, 238, 0.95);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    z-index: 1;
}

.whs-solution-card__body {
    padding: 28px 28px 32px;
    flex: 1;
}

.whs-solution-card__body h3 {
    color: rgba(5, 5, 62, 1);
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.25;
}

.whs-solution-card__tag {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(168, 174, 208, 1);
    margin-bottom: 14px;
}

.whs-solution-card__body p {
    color: rgba(71, 70, 80, 1);
    line-height: 1.65;
    margin-bottom: 0 !important;
}

/* ---------- Security ---------- */
.whs-security {
    background: rgba(5, 5, 62, 1);
    padding: 90px 0 100px;
}

.whs-security__header {
    max-width: 900px;
    margin: 0 auto 52px;
}

.whs-security__label {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(184, 196, 230, 1);
    margin-bottom: 14px;
}

.whs-security__header h2 {
    color: #ffffff;
    margin-bottom: 18px;
}

.whs-security__header h2 span {
    color: rgba(184, 167, 255, 1);
}

.whs-security__header p {
    color: rgba(184, 196, 230, 1);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto !important;
}

.whs-security-card {
    height: 100%;
    background: rgba(15, 15, 70, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 32px 28px;
}

.whs-security-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 28, 90, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: rgba(184, 196, 230, 1);
    font-size: 18px;
}

.whs-security-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}

.whs-security-card p {
    color: rgba(168, 174, 208, 1);
    line-height: 1.65;
    margin-bottom: 0 !important;
}

/* ---------- Migration ---------- */
.whs-migration {
    background: rgba(221, 225, 247, 1);
    padding: 90px 0 100px;
}

.whs-migration__header {
    max-width: 720px;
    margin-bottom: 48px;
}

.whs-migration__header h2 {
    color: rgba(5, 5, 62, 1);
    margin-bottom: 14px;
}

.whs-migration__header p {
    color: rgba(71, 70, 80, 1);
    line-height: 1.65;
    margin-bottom: 0 !important;
}

.whs-migration__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 0;
}

.whs-migration__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: stretch;
    position: relative;
}

.whs-migration__step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: -20px;
    width: 2px;
    background: rgba(184, 177, 238, 0.7);
}

.whs-migration__num {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
}

.whs-migration__num span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 177, 238, 0.95);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 0 8px rgba(184, 177, 238, 0.25);
}

.whs-migration__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 30px;
    box-shadow: 0 8px 30px rgba(24, 38, 65, 0.08);
}

.whs-migration__card h3 {
    color: rgba(5, 5, 62, 1);
    font-size: 22px;
    margin-bottom: 8px;
}

.whs-migration__card p {
    color: rgba(71, 70, 80, 1);
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* ---------- FAQ ---------- */
.whs-faq {
    position: relative;
    background: rgba(245, 246, 255, 1);
    padding: 50px 0 ;
    overflow: hidden;
}

.whs-faq::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 40px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 60px solid rgba(184, 177, 238, 0.18);
    pointer-events: none;
}



.whs-faq__title {
    color: rgba(5, 5, 62, 1);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.whs-faq__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whs-faq__item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(24, 38, 65, 0.08);
    overflow: hidden;
}

.whs-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    cursor: pointer;
    color: rgba(5, 5, 62, 1);
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
}

.whs-faq__question i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(184, 177, 238, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 115, 255, 1);
    font-size: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.whs-faq__item.is-open .whs-faq__question i {
    transform: rotate(45deg);
    background: rgba(245, 246, 255, 1);
}

.whs-faq__answer {
    display: none;
    padding: 0 28px 24px;
}

.whs-faq__item.is-open .whs-faq__answer {
    display: block;
}

.whs-faq__answer p {
    color: rgba(95, 93, 104, 1);
    line-height: 1.7;
    margin-bottom: 0 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .hosting-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .whs-truth__stat-value {
        font-size: 24px;
        min-width: 76px;
    }

    .whs-solutions__header,
    .whs-security__header,
    .whs-migration__header {
        margin-bottom: 40px;
    }
}

@media (max-width: 991.98px) {
    .hosting-hero {
        padding: 90px 0 48px;
        min-height: auto;
    }

    .hosting-hero .row {
        row-gap: 28px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 24px;
    }

    .hero-content h1,
    .subtitle,
    .desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
    }

    .hero-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 520px;
    }

    .info-card {
        width: min(190px, 44%);
        padding: 14px;
    }

    .whs-truth,
    .whs-solutions,
    .whs-security,
    .whs-migration,
    .whs-faq {
        padding: 70px 0;
    }

    .whs-truth__media > img {
        min-height: 320px;
    }

    .whs-truth__stats {
        right: 16px;
        bottom: 16px;
        width: min(240px, 72%);
        margin-top: 0;
    }

    .whs-truth__content h2,
    .whs-solutions__header h2,
    .whs-security__header h2,
    .whs-migration__header h2,
    .whs-faq__title {
        font-size: clamp(28px, 4.5vw, 40px);
        line-height: 1.2;
    }

    .whs-truth__content {
        text-align: left;
    }

    .whs-faq__question {
        font-size: 16px;
        padding: 20px 22px;
        gap: 12px;
    }

    .whs-faq__answer {
        padding: 0 22px 20px;
    }
}

@media (max-width: 767.98px) {
    .hosting-hero {
        padding: 88px 0 40px;
    }

    .hosting-hero .min-vh-100 {
        min-height: 0 !important;
    }

    .hero-content {
        margin-bottom: 12px;
    }

    .desc {
        margin-bottom: 28px;
    }

    .hero-btn {
        width: 100%;
        max-width: 420px;
        padding: 14px 18px;
        font-size: 15px;
    }

    .hero-image {
        padding: 0;
        max-width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-image > img {
        max-width: 100%;
        order: -1;
    }

    .info-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 16px 18px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .info-card p {
        font-size: 13px;
    }

    .whs-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .whs-trusted {
        padding: 32px 0 28px;
    }

    .whs-trusted__label {
        font-size: 12px;
        letter-spacing: 0.06em;
        margin-bottom: 18px !important;
        padding: 0 8px;
    }

    .whs-trusted__logos {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .whs-trusted__logos img {
        max-width: none;
        width: max(100%, 720px);
        min-width: 720px;
    }

    .whs-truth,
    .whs-solutions,
    .whs-security,
    .whs-migration,
    .whs-faq {
        padding: 56px 0;
    }

    .whs-truth__stats {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .whs-truth__media > img {
        min-height: 220px;
        border-radius: 18px;
    }

    .whs-truth__content h2,
    .whs-solutions__header h2,
    .whs-security__header h2,
    .whs-migration__header h2,
    .whs-faq__title {
        max-width: none;
    }

    .whs-truth__content > p,
    .whs-solutions__header p,
    .whs-security__header p,
    .whs-migration__header p {
        max-width: none;
    }

    .whs-solution-card__body {
        padding: 22px 22px 26px;
    }

    .whs-solution-card__body h3 {
        font-size: 20px;
    }

    .whs-security-card {
        padding: 26px 22px;
    }

    .whs-migration__header {
        margin-bottom: 32px;
    }

    .whs-migration__step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .whs-migration__step:not(:last-child)::before {
        left: 21px;
        top: 50px;
    }

    .whs-migration__num {
        padding-top: 18px;
    }

    .whs-migration__num span {
        width: 40px;
        height: 40px;
        font-size: 16px;
        box-shadow: 0 0 0 6px rgba(184, 177, 238, 0.25);
    }

    .whs-migration__card {
        padding: 20px 18px;
    }

    .whs-migration__card h3 {
        font-size: 18px;
    }

    .whs-faq::before {
        width: 240px;
        height: 240px;
        border-width: 32px;
        right: -90px;
    }

    .whs-faq__question {
        align-items: flex-start;
        text-align: left;
    }

    .whs-faq__question span {
        flex: 1;
    }
}

@media (max-width: 575.98px) {
    .hosting-hero {
        padding: 84px 0 36px;
    }

    .hero-content h1 {
        margin-bottom: 18px;
    }

    .subtitle {
        margin-bottom: 14px;
    }

    .desc {
        margin-bottom: 22px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 13px 16px;
        gap: 8px;
    }

    .whs-label,
    .whs-security__label {
        font-size: 13px;
    }

    .whs-truth__pills {
        flex-direction: column;
    }

    .whs-truth__pills span {
        width: 100%;
        justify-content: center;
    }

    .whs-truth__stat {
        align-items: flex-start;
    }

    .whs-truth__stat-value {
        min-width: 70px;
        font-size: 22px;
    }

    .whs-solution-card__image {
        aspect-ratio: 16 / 10;
    }

    .whs-security-card h3 {
        font-size: 18px;
    }

    .whs-faq__question {
        font-size: 15px;
        padding: 18px 16px;
    }

    .whs-faq__answer {
        padding: 0 16px 18px;
    }

    .whs-faq__question i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 399.98px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .info-card {
        padding: 14px;
    }

    .whs-migration__step {
        grid-template-columns: 36px 1fr;
        gap: 10px;
    }

    .whs-migration__step:not(:last-child)::before {
        left: 17px;
    }

    .whs-migration__num span {
        width: 34px;
        height: 34px;
        font-size: 14px;
        box-shadow: 0 0 0 5px rgba(184, 177, 238, 0.25);
    }
}
