
body {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
}

.hiw-page {
    padding-top: 110px;
}

.hiw-hero {
    padding: 50px 0 25px;
}

.hiw-hero-content {
    text-align: center;
}

.hiw-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000000;
    line-height: 1.2;
}

.hiw-title-accent {
    color: var(--primary-blue);
}

.hiw-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

.hiw-steps {
    padding: 20px 0 70px;
}

.hiw-step-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 34px;
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06); */
    margin: 28px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.hiw-step-card--cta {
    padding-bottom: 40px;
}

.hiw-step-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 44px;
    width: 100%;
    max-width: 980px;
}

.hiw-step-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.hiw-step-grid--reverse .hiw-media {
    order: 2;
}

.hiw-step-grid--reverse .hiw-content {
    order: 1;
}

@media (min-width: 993px) {
    .hiw-step-grid--reverse .hiw-content {
        text-align: right;
    }

    .hiw-step-grid--reverse .hiw-tags {
        justify-content: flex-end;
    }

    .hiw-step-grid--reverse .hiw-step-text {
        margin-left: auto;
    }
}

.hiw-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiw-phone {
    width: 260px;
    height: auto;
    display: block;
    border-radius: 28px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.hiw-content {
    text-align: left;
}

.hiw-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hiw-step-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.hiw-step-text {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    max-width: 520px;
}

.hiw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hiw-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    color: #333333;
}

.hiw-cta-btn {
    margin-top: 18px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hiw-cta-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {
    .hiw-title {
        font-size: 40px;
    }

    .hiw-step-grid,
    .hiw-step-grid--reverse {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hiw-step-grid--reverse .hiw-media,
    .hiw-step-grid--reverse .hiw-content {
        order: initial;
    }

    .hiw-content {
        text-align: center;
    }

    .hiw-tags {
        justify-content: center;
    }

    .hiw-step-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hiw-page {
        padding-top: 120px;
    }

    .hiw-hero {
        padding: 35px 0 20px;
    }

    .hiw-title {
        font-size: 32px;
    }

    .hiw-step-card {
        padding: 22px;
        border-radius: 18px;
        margin: 18px 0;
    }

    .hiw-phone {
        width: 220px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .hiw-step-card {
        padding: 18px;
    }

    .hiw-phone {
        width: 200px;
    }
}

