/* ── HOME HUB — hero right-side icon pair (no product-specific screenshot on the brand hub) ── */

.hm-hero-icons {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 320px;
}

.hm-hero-icon-card {
    flex: 1;
    aspect-ratio: 1/1.2;
    background: var(--white);
    border: 0.5px solid var(--light2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hm-hero-icon-card i {
    font-size: 40px;
    color: var(--green);
}

.hm-hero-icon-card span {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
}

/* ── HOME HUB — product split section ── */

.hm-split-wrap {
    border-top: 0.5px solid var(--border);
    padding: 0;
    box-sizing: border-box;
}

.hm-split-header {
    padding: 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 0.5px solid var(--border);
}

.hm-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
}

.hm-h2 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 52px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.hm-sub {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 460px;
    margin: 0;
}

.hm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5px;
    background: var(--border);
}

.hm-card {
    background: var(--light1);
    padding: 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    min-height: 340px;
}

.hm-card:hover {
    background: var(--white);
}

.hm-card-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-card-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
}

.hm-card-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
    margin: 0;
}

.hm-card-p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 380px;
    margin: 0;
}

.hm-card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.hm-card-bullets li {
    font-size: 13px;
    color: var(--text-body);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.hm-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.hm-card-cta {
    margin-top: auto;
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    padding-top: 8px;
    transition: color 0.2s, gap 0.2s;
}

.hm-card:hover .hm-card-cta {
    color: var(--green);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .hm-split-header { padding: 40px 24px; }
    .hm-h2 { font-size: 40px; }
    .hm-cards { grid-template-columns: 1fr; }
    .hm-card { padding: 32px 24px; min-height: unset; }
}
