:root {
    --hiw-teal: #14897e;
    --hiw-teal-dark: #0f7268;
    --hiw-navy: #1b3a5b;
    --hiw-text: #5b6b7b;
    --hiw-cream: #faf9f5;
    --hiw-card-border: #edefec;
    --hiw-purple: #8b5cf6;
    --hiw-coral: #f0655f;
}

.hiw-page {
    background-color: var(--hiw-cream);
    padding: 52px 24px 60px;
    border-radius: 18px;
    overflow: hidden;
}

/* Header */
.hiw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hiw-teal);
    font-weight: 600;
    font-size: 1rem;
}

.hiw-title {
    color: var(--hiw-navy);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 8px 0 12px;
    letter-spacing: -0.5px;
}

.hiw-subtitle {
    color: var(--hiw-text);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.hiw-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 22px 0 6px;
}

.hiw-divider .hiw-line {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hiw-teal));
}

.hiw-divider .hiw-line:last-child {
    background: linear-gradient(90deg, var(--hiw-teal), transparent);
}

/* Steps */
.hiw-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.hiw-card {
    flex: 1 1 0;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid var(--hiw-card-border);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 10px 26px rgba(27, 58, 91, 0.05);
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hiw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(27, 58, 91, 0.1);
}

.hiw-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hiw-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex: 0 0 auto;
}

.hiw-num.teal   { background: #dcefeb; color: var(--hiw-teal); }
.hiw-num.purple { background: #efe9fb; color: var(--hiw-purple); }
.hiw-num.coral  { background: #fce7e5; color: var(--hiw-coral); }

.hiw-icon.teal   { color: var(--hiw-teal); }
.hiw-icon.purple { color: var(--hiw-purple); }
.hiw-icon.coral  { color: var(--hiw-coral); }

.hiw-icon-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.hiw-card-title {
    color: var(--hiw-navy);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.hiw-card-text {
    color: var(--hiw-text);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 240px;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    color: var(--hiw-teal);
    flex: 0 0 auto;
}

/* Banner */
.hiw-banner {
    max-width: 760px;
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(180deg, #f2f9f6, #eaf5f1);
    border: 1px solid #d9ebe5;
    border-radius: 14px;
    padding: 22px 30px;
}

.hiw-banner-icon {
    flex: 0 0 auto;
    color: var(--hiw-teal);
}

.hiw-banner-text {
    color: var(--hiw-navy);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
}

/* Footer actions */
.hiw-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hiw-btn {
    border-radius: 10px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease;
}

.hiw-btn-primary { background: var(--hiw-teal); color: #ffffff; }
.hiw-btn-primary:hover { background: var(--hiw-teal-dark); color: #ffffff; }

.hiw-btn-outline {
    background: #ffffff;
    color: var(--hiw-navy);
    border-color: #cdd7df;
}
.hiw-btn-outline:hover { border-color: var(--hiw-teal); color: var(--hiw-teal); }

@media (max-width: 860px) {
    .hiw-steps { flex-direction: column; align-items: center; }
    .hiw-card { max-width: 420px; width: 100%; }
    .hiw-arrow { transform: rotate(90deg); }
}
