.hmw {
    --rail-max: 1120px;

    --hmw-card: rgba(255, 255, 255, 0.9);
    --hmw-card-solid: #ffffff;
    --hmw-line: #d7e3fb;
    --hmw-line-strong: #c7d6fb;

    --hmw-brand: #4067d9;
    --hmw-brand-2: #6f8cff;
    --hmw-brand-soft: #eef3ff;

    --hmw-ink-900: #0f172a;
    --hmw-ink-700: #334155;
    --hmw-ink-600: #667085;

    --hmw-radius: 32px;

    --hmw-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
    --hmw-shadow-lg: 0 30px 72px rgba(15, 23, 42, 0.12);

    padding: clamp(40px, 6vw, 84px) 0;
    position: relative;
    overflow: clip;
}

.hmw .hmw__rail-5 {
    max-width: var(--rail-max);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 28px);
}

.hmw .hmw-card-hmw {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: min(980px, 100%);
    margin-inline: auto;
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--hmw-radius);
    border: 1.5px solid var(--hmw-line);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(248, 250, 255, 0.9) 100%
    );
    box-shadow: var(--hmw-shadow-sm);
    display: grid;
    gap: 18px;
    transition:
        transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 0.28s ease,
        background 0.28s ease;
}

.hmw .hmw-card-hmw::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(64, 103, 217, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(64, 103, 217, 0.04),
            transparent 28%
        );
    pointer-events: none;
    z-index: -1;
}

.hmw .hmw-card-hmw:hover {
    transform: translateY(-6px);
    box-shadow: var(--hmw-shadow-lg);
    border-color: var(--hmw-line-strong);
    background: var(--hmw-card-solid);
}

.hmw .hmw-card__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.hmw .hmw-card__eyebrow {
    margin: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hmw-brand) 0%, #5d7ef0 100%);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(64, 103, 217, 0.22);
}

.hmw .hmw-card__body {
    margin: 4px 0 0;
    max-width: 100%;
    width: 100%;
    color: var(--hmw-ink-900);
    font-size: clamp(24px, 3.1vw, 38px);
    line-height: 1.38;
    letter-spacing: -0.035em;
    font-weight: 400;
    text-wrap: balance;
}

.hmw .hmw-card__body strong {
    color: var(--hmw-brand);
    font-weight: 700;
}

.hmw .hmw-card__final {
    margin: 6px 0 0;
    max-width: 58ch;
    font-size: 15px;
    line-height: 1.75;
    color: var(--hmw-ink-600);
}

.hmw .hmw-card__final strong {
    color: var(--hmw-ink-900);
    font-weight: 700;
}

/* motion */
@media (prefers-reduced-motion: no-preference) {
    .hmw .hmw-card-hmw {
        animation: hmwCardIn 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    }

    .hmw .hmw-card__eyebrow {
        animation: hmwTextIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.04s both;
    }

    .hmw .hmw-card__body {
        animation: hmwTextIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
    }

    .hmw .hmw-card__final {
        animation: hmwTextIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.18s both;
    }
}

@keyframes hmwCardIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.988);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hmwTextIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hmw .hmw-card-hmw,
    .hmw .hmw-card__eyebrow,
    .hmw .hmw-card__body,
    .hmw .hmw-card__final {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .hmw {
        padding: 34px 0 58px;
    }

    .hmw .hmw-card-hmw {
        padding: 22px 18px;
        border-radius: 24px;
        gap: 14px;
    }

    .hmw .hmw-card__body {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.42;
    }

    .hmw .hmw-card__final {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* ===============================
   SOLUTION OVERVIEW
=============================== */
:root {
    --so-ink: #0f172a;
    --so-muted: #5f6b7a;
    --so-body: #334155;
    --so-line: #e7ebf3;
    --so-line-strong: #d9e2f5;
    --so-card: rgba(255, 255, 255, 0.9);
    --so-card-solid: #ffffff;
    --so-accent: #4067d9;
    --so-accent-2: #6f8cff;
    --so-accent-soft: #eef3ff;
    --so-radius-lg: 26px;
    --so-radius-md: 18px;
    --so-shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.06);
    --so-shadow-lg: 0 30px 72px rgba(17, 24, 39, 0.12);
}

/* section */
#solution-overview.solution-section {
    position: relative;
    overflow: clip;
    padding: clamp(48px, 6vw, 92px) 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(64, 103, 217, 0.04),
            transparent 24%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(64, 103, 217, 0.05),
            transparent 22%
        );
    color: var(--so-ink);
}

/* shell */
#solution-overview .solution-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}

/* card */
#solution-overview .solution-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--so-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--so-line);
    border-radius: var(--so-radius-lg);
    padding: clamp(24px, 3vw, 34px);
    box-shadow: var(--so-shadow-sm);
}

#solution-overview .solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(64, 103, 217, 0.1),
        transparent 34%
    );
    z-index: -1;
    pointer-events: none;
}

/* header */
#solution-overview .solution-header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

#solution-overview .solution-kicker {
    margin: 0;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(64, 103, 217, 0.12);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--so-accent);
    font-weight: 800;
}

#solution-overview .solution-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--so-ink);
}

/* top */
#solution-overview .solution-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 24px;
}

#solution-overview .solution-body {
    margin: 0;
    font-size: 16px;
    line-height: 1.82;
    color: var(--so-body);
    max-width: 64ch;
}

#solution-overview .solution-brand {
    color: var(--so-accent);
    font-weight: 800;
}

#solution-overview .solution-final {
    margin: 0;
    padding: 18px 18px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(238, 243, 255, 0.92) 0%,
        rgba(245, 248, 255, 0.98) 100%
    );
    border: 1px solid #dbe4ff;
    font-size: 15px;
    line-height: 1.76;
    color: var(--so-muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

#solution-overview .solution-final strong {
    display: block;
    margin-bottom: 6px;
    color: var(--so-ink);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* middle */
#solution-overview .solution-middle {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

/* list */
#solution-overview .solution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

#solution-overview .solution-item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 15px;
    background: linear-gradient(180deg, #fbfcff 0%, #f7f9ff 100%);
    border: 1px solid #e3e9f8;
    border-radius: var(--so-radius-md);
    transition:
        transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.26s ease,
        border-color 0.26s ease,
        background 0.26s ease;
}

#solution-overview .solution-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--so-accent), var(--so-accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

#solution-overview .solution-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(64, 103, 217, 0.08);
    border-color: #d5dfff;
    background: #ffffff;
}

#solution-overview .solution-item:hover::after {
    transform: scaleX(1);
}

#solution-overview .solution-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--so-accent-soft);
    color: var(--so-accent);
    border: 1px solid #d7e0ff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

#solution-overview .solution-item-copy {
    display: grid;
    gap: 5px;
}

#solution-overview .solution-item-copy strong {
    font-size: 15px;
    line-height: 1.38;
    color: var(--so-ink);
}

#solution-overview .solution-item-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.66;
    color: #4a5565;
}

/* art */
#solution-overview .solution-art {
    margin: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(246, 249, 255, 0.96) 100%
    );
    border: 1px solid #e3eaf8;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
    min-height: 100%;
}

#solution-overview .solution-illo {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(17, 24, 39, 0.08));
}

/* responsive */
@media (max-width: 980px) {
    #solution-overview .solution-top,
    #solution-overview .solution-middle {
        grid-template-columns: 1fr;
    }

    #solution-overview .solution-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    #solution-overview.solution-section {
        padding: 34px 0 58px;
    }

    #solution-overview .solution-shell {
        padding: 0 20px;
    }

    #solution-overview .solution-card {
        padding: 18px 16px;
        border-radius: 24px;
    }

    #solution-overview .solution-title {
        font-size: 32px;
        line-height: 1.1;
    }

    #solution-overview .solution-body,
    #solution-overview .solution-final {
        font-size: 14px;
        line-height: 1.72;
    }

    #solution-overview .solution-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 12px;
    }

    #solution-overview .solution-icon {
        width: 40px;
        height: 40px;
    }

    #solution-overview .solution-item-copy strong,
    #solution-overview .solution-item-copy p {
        font-size: 14px;
    }

    #solution-overview .solution-art {
        padding: 14px;
        border-radius: 20px;
    }
}
