.icons-page {
    background: #f7f5f1;
}

.icons-main {
    min-height: 100dvh;
    padding: calc(86px + 28px) 0 64px;
    background: linear-gradient(180deg, #f7f5f1 0%, #efe9df 100%);
}

.icons-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.icons-eyebrow {
    margin: 0 0 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6e675f;
}

.icons-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.06;
    color: #171615;
}

.icons-hero p {
    margin: 0.95rem auto 0;
    max-width: 72ch;
    color: #4f4a44;
    line-height: 1.6;
}

.icons-section {
    margin-top: 1.8rem;
}

.icons-section-title {
    margin: 0 0 0.95rem;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: #1f1b17;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.icon-card {
    border: 1px solid rgba(116, 107, 94, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 28px rgba(31, 26, 20, 0.08);
    padding: 1.15rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
    text-align: center;
}

.icon-card-figure {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
}

.icon-card-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.icon-card-figure .icon-dark {
    display: none;
}

.icon-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: #24201d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-card p {
    margin: 0;
    color: #5b544b;
    line-height: 1.55;
    font-size: 0.96rem;
}

[data-theme="dark"] .icons-page {
    background: #111111;
}

[data-theme="dark"] .icons-main {
    background: linear-gradient(135deg, #050505 0%, #1d1b18 55%, #3f3a34 100%);
}

[data-theme="dark"] .icons-eyebrow {
    color: #c8c2b9;
}

[data-theme="dark"] .icons-hero h1,
[data-theme="dark"] .icons-section-title,
[data-theme="dark"] .icon-card h3 {
    color: #f2ece2;
}

[data-theme="dark"] .icons-hero p,
[data-theme="dark"] .icon-card p {
    color: #d2cbc0;
}

[data-theme="dark"] .icon-card {
    background: rgba(20, 19, 17, 0.85);
    border-color: rgba(180, 170, 156, 0.24);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

[data-theme="dark"] .icon-card-figure .icon-light {
    display: none;
}

[data-theme="dark"] .icon-card-figure .icon-dark {
    display: block;
}

@media (max-width: 960px) {
    .icons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    html,
    body,
    .icons-page,
    .icons-main {
        overflow-x: clip;
    }

    .icons-main {
        padding: calc(86px + 24px) 0 48px;
    }

    .icons-grid {
        grid-template-columns: 1fr;
    }
}
