/* Three different decisions: service route, hosting technology, VPS resources. */
.home-journey {
    background: radial-gradient(circle at 8% 10%, rgba(111, 226, 229, 0.24), transparent 38%), linear-gradient(150deg, #124d70, #092d4e 70%);
}

.home-journey h2 {
    margin-bottom: 15px;
}

.journey-steps {
    position: relative;
    display: grid;
    gap: 9px;
}

.journey-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    right: 24px;
    width: 2px;
    background: rgba(139, 232, 238, 0.42);
}

.journey-steps a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 10px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(154, 228, 237, 0.24);
    border-radius: 13px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.journey-steps a:hover,
.journey-steps a:focus-visible {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, 0.17);
}

.journey-number {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #08355b;
    background: #8be8ee;
    border: 4px solid #205977;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.journey-steps a:nth-child(2) .journey-number {
    background: #d2edff;
}

.journey-steps a:nth-child(3) .journey-number {
    background: #ffc58c;
}

.journey-steps a > span:nth-child(2) {
    flex: 1;
}

.journey-steps strong,
.journey-steps small {
    display: block;
    line-height: 1.45;
}

.journey-steps strong {
    font-size: 15px;
}

.journey-steps small {
    color: #d1e7ef;
    font-size: 11px;
}

.journey-steps a > i {
    color: #8be8ee;
}

.hosting-selector {
    padding: 22px;
    color: #0b315e;
    background: #fff;
    border: 1px solid #a5dce9;
    border-radius: 20px;
    box-shadow: 0 24px 46px rgba(0, 9, 26, 0.19);
}

.selector-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
}

.selector-top > span {
    color: #087d9e;
}

.selector-top i {
    margin-left: 5px;
}

.selector-top > strong {
    padding: 5px 10px;
    color: #075b85;
    background: #e8f7fb;
    border-radius: 999px;
    white-space: nowrap;
}

.hosting-selector h2 {
    margin: 14px 0 17px;
    color: #071f3d;
    font-size: clamp(22px, 2vw, 27px);
    line-height: 1.3;
}

.selector-systems {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.selector-choice {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 262px;
    padding: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selector-choice::before {
    content: "";
    position: absolute;
    width: 175px;
    height: 175px;
    left: -65px;
    top: -75px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.selector-linux {
    background: linear-gradient(145deg, #106e68, #07536a 75%);
}

.selector-windows {
    background: linear-gradient(145deg, #216db9, #153e81 75%);
}

.selector-choice:hover,
.selector-choice:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(7, 31, 61, 0.23);
}

.selector-choice-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 12px;
    font-weight: 700;
}

.selector-choice-head strong {
    display: block;
    color: #fff;
    font-size: 23px;
    line-height: 1.15;
}

.selector-icon {
    display: inline-flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #0c4e64;
    background: #fff;
    border-radius: 13px;
    font-size: 30px;
    box-shadow: 0 9px 21px rgba(0, 0, 0, 0.11);
}

.selector-windows .selector-icon {
    color: #1657aa;
}

.selector-use {
    position: relative;
    min-height: 40px;
    margin-top: 16px;
    color: #e0f8fc;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.selector-tech {
    position: relative;
    margin-top: 5px;
    color: #fff;
    font: 800 11px Arial, Tahoma, sans-serif;
    white-space: nowrap;
}

.selector-tech i {
    color: #9eeef0;
    font-style: normal;
}

.selector-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 12px;
    color: #d5f1f5;
    font-size: 11px;
    font-weight: 700;
}

.selector-value b {
    color: #fff;
    direction: ltr;
    font: 900 23px Arial, Tahoma, sans-serif;
}

.selector-value small {
    font-size: 10px;
}

.selector-go {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: 13px;
    padding: 9px 11px;
    color: #0b315e;
    background: #fff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}

.selector-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 13px;
    padding: 10px 12px;
    color: #0b315e;
    background: #eaf6fb;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
}

.selector-help span i {
    color: #087d9e;
    margin-left: 4px;
}

.selector-help strong {
    color: #075b9d;
    font-weight: 900;
}

.selector-help strong i {
    margin-right: 4px;
}

.selector-help:hover,
.selector-help:focus-visible {
    background: #d5eef8;
}

.vps-power {
    padding: 18px;
    color: #fff;
    background: radial-gradient(circle at 82% 10%, rgba(47, 188, 219, 0.17), transparent 38%), linear-gradient(145deg, #071d32, #0b3551);
    border: 1px solid rgba(110, 225, 236, 0.55);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 9, 26, 0.25);
}

.power-topline,
.power-heading,
.power-level-head,
.power-price,
.power-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.power-topline {
    color: #9eeef0;
    font-size: 11px;
    font-weight: 900;
}

.power-topline span i {
    margin-left: 6px;
    color: #36d49f;
    font-size: 7px;
}

.power-topline strong {
    color: #8bbbd0;
    font-size: 10px;
    font-weight: 800;
}

.power-heading {
    justify-content: flex-start;
    margin: 16px 0 18px;
}

.power-mark {
    display: flex;
    flex: 0 0 62px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #08253c;
    background: #8be8ee;
    border-radius: 15px;
    box-shadow: 0 8px 28px rgba(139, 232, 238, 0.2);
}

.power-mark i {
    font-size: 24px;
}

.power-mark span {
    font: 900 10px Arial, Tahoma, sans-serif;
    letter-spacing: 0.1em;
}

.power-eyebrow {
    color: #a9d8e5;
    font-size: 11px;
    font-weight: 800;
}

.power-heading h2 {
    margin: 1px 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.35;
}

.power-levels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.power-level {
    min-width: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(159, 224, 237, 0.21);
    border-radius: 14px;
}

.power-grow {
    background: linear-gradient(145deg, rgba(255, 134, 42, 0.2), rgba(255, 255, 255, 0.07));
    border-color: rgba(255, 160, 79, 0.68);
}

.power-level-head {
    color: #9eeef0;
    direction: ltr;
    font: 900 11px Arial, Tahoma, sans-serif;
}

.power-level-head b {
    margin-left: 5px;
    direction: rtl;
    display: inline-block;
    color: #fff;
    font: 900 11px "Cairo", Tahoma, sans-serif;
}

.power-grow .power-level-head,
.power-grow .power-level-head i {
    color: #ffad67;
}

.power-memory {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 7px 0 3px;
    direction: ltr;
    font-family: Arial, Tahoma, sans-serif;
}

.power-memory strong {
    font-size: 63px;
    line-height: 1;
    letter-spacing: -0.08em;
}

.power-memory span {
    color: #9eeef0;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
}

.power-grow .power-memory strong,
.power-grow .power-memory span {
    color: #ffad67;
}

.power-meter {
    height: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
}

.power-meter span {
    display: block;
    width: 72%;
    height: 100%;
    background: #8be8ee;
    border-radius: inherit;
}

.power-grow .power-meter span {
    width: 100%;
    background: #ff9b50;
}

.power-facts {
    display: grid;
    gap: 2px;
    margin: 9px 0 10px;
}

.power-facts span {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: #c7e3eb;
    font-size: 10px;
    font-weight: 700;
}

.power-facts b {
    color: #fff;
    font-family: Arial, Tahoma, sans-serif;
    white-space: nowrap;
}

.power-price {
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.power-price strong {
    direction: ltr;
    font: 900 19px Arial, Tahoma, sans-serif;
}

.power-price span {
    color: #b6d6e4;
    font-size: 11px;
    font-weight: 700;
}

.power-footer {
    margin-top: 15px;
}

.power-footer > span {
    color: #cce9f1;
    font-size: 11px;
    font-weight: 800;
}

.power-footer > div {
    display: flex;
    gap: 7px;
}

.power-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    color: #08253c;
    background: #e8faff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.power-footer a:hover,
.power-footer a:focus-visible {
    background: #8be8ee;
}

.journey-steps a:focus-visible,
.selector-systems a:focus-visible,
.selector-help:focus-visible,
.power-footer a:focus-visible {
    outline: 3px solid #ffab5b;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .journey-steps a {
        min-height: 65px;
        padding: 8px 10px;
    }

    .journey-steps strong {
        font-size: 13px;
    }

    .journey-steps small {
        font-size: 10px;
    }

    .hosting-selector,
    .vps-power {
        padding: 16px;
    }

    .hosting-selector h2 {
        font-size: 20px;
    }

    .selector-choice {
        min-height: 257px;
        padding: 11px;
    }

    .selector-choice-head {
        gap: 7px;
    }

    .selector-choice-head strong {
        font-size: 17px;
    }

    .selector-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
        font-size: 24px;
    }

    .selector-use {
        font-size: 10px;
    }

    .selector-tech {
        font-size: 9px;
        white-space: normal;
    }

    .selector-value b {
        font-size: 19px;
    }

    .selector-help {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .power-heading h2 {
        font-size: 21px;
    }

    .power-level {
        padding: 10px 8px;
    }

    .power-memory strong {
        font-size: 50px;
    }

    .power-facts span {
        font-size: 9px;
    }

    .power-footer {
        flex-wrap: wrap;
    }

    .power-footer > div {
        width: 100%;
    }

    .power-footer a {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .selector-systems {
        grid-template-columns: 1fr;
    }

    .selector-choice {
        min-height: 0;
        padding: 13px;
    }

    .selector-choice-head strong {
        font-size: 19px;
    }

    .selector-use {
        min-height: 0;
        margin-top: 8px;
        font-size: 11px;
    }

    .selector-tech {
        font-size: 10px;
    }

    .selector-value {
        margin-top: 8px;
    }

    .selector-go {
        margin-top: 8px;
    }
}
