.gc-sterol-section {
    --gc-sterol-ink: #12302d;
    --gc-sterol-muted: #526764;
    --gc-sterol-accent: var(--primary, var(--primary-color, #08756f));
    --gc-sterol-soft: #eef8f5;
    --gc-sterol-line: rgba(18, 48, 45, 0.12);
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 20px;
    background:
        radial-gradient(circle at 88% 10%, rgba(8, 117, 111, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--gc-sterol-soft) 100%);
    color: var(--gc-sterol-ink);
}

.gc-sterol-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -160px;
    border: 42px solid rgba(8, 117, 111, 0.07);
    border-radius: 50%;
}

.gc-sterol-container {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.gc-sterol-heading {
    max-width: 820px;
    margin-bottom: 32px;
}

.gc-sterol-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-sterol-accent);
}

.gc-sterol-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.gc-sterol-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: var(--gc-sterol-ink);
}

.gc-sterol-heading p {
    margin: 0;
    max-width: 760px;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.8;
    color: var(--gc-sterol-muted);
}

.gc-sterol-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gc-sterol-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    min-height: 178px;
    padding: 26px;
    border: 1px solid var(--gc-sterol-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(18, 48, 45, 0.07);
    backdrop-filter: blur(8px);
}

.gc-sterol-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gc-sterol-soft);
    color: var(--gc-sterol-accent);
    font-weight: 900;
}

.gc-sterol-card h3 {
    margin: 2px 0 9px;
    font-size: 1.12rem;
    line-height: 1.35;
    color: var(--gc-sterol-ink);
}

.gc-sterol-card p {
    margin: 0;
    line-height: 1.72;
    color: var(--gc-sterol-muted);
}

.gc-sterol-emergency {
    grid-column: 1 / -1;
    min-height: auto;
    border-color: rgba(178, 54, 54, 0.2);
    background: linear-gradient(135deg, rgba(255, 248, 248, 0.98), rgba(255, 255, 255, 0.9));
}

.gc-sterol-emergency .gc-sterol-number {
    background: #fff0f0;
    color: #a92d2d;
}

.gc-sterol-support {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
    padding: 24px 26px;
    border-radius: 20px;
    background: var(--gc-sterol-ink);
    color: #ffffff;
}

.gc-sterol-support span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    opacity: 0.7;
}

.gc-sterol-support strong {
    font-size: 1.08rem;
}

.gc-sterol-phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.gc-sterol-phones a {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gc-sterol-phones a:hover,
.gc-sterol-phones a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.gc-sterol-storage {
    margin: 15px 4px 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gc-sterol-muted);
}

@media (max-width: 760px) {
    .gc-sterol-section {
        padding-inline: 16px;
    }

    .gc-sterol-grid {
        grid-template-columns: 1fr;
    }

    .gc-sterol-emergency {
        grid-column: auto;
    }

    .gc-sterol-card {
        grid-template-columns: 42px minmax(0, 1fr);
        min-height: auto;
        padding: 21px 18px;
    }

    .gc-sterol-number {
        width: 40px;
        height: 40px;
    }

    .gc-sterol-support {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 18px;
    }

    .gc-sterol-phones {
        justify-content: flex-start;
    }
}
