.ancor-fm-page {
    direction: rtl;
    color: #212121;
    background: #FCFCFC;
}

.ancor-fm-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 95px 0 85px;
    color: #FCFCFC;
    background:
        linear-gradient(
            115deg,
            rgba(33, 33, 33, 0.96),
            rgba(33, 33, 33, 0.70)
        );
}

.ancor-fm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(184, 96, 96, 0.25),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(89, 128, 104, 0.20),
            transparent 32%
        );
}

.ancor-fm-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 44px), 1240px);
    margin: 0 auto;
}

.ancor-fm-kicker {
    display: block;
    margin-bottom: 18px;
    color: #B86060;
    font-size: 12px;
    font-weight: 900;
}

.ancor-fm-hero h1 {
    max-width: 820px;
    margin: 0 0 23px;
    color: #FCFCFC;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.12;
}

.ancor-fm-hero p {
    max-width: 670px;
    margin: 0;
    color: rgba(252, 252, 252, 0.69);
    font-size: 16px;
    line-height: 2;
}

.ancor-fm-content {
    padding: 95px 0;
}

.ancor-fm-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.ancor-fm-heading span {
    color: #B86060;
    font-size: 12px;
    font-weight: 900;
}

.ancor-fm-heading h2 {
    margin: 12px 0 17px;
    color: #212121;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.35;
}

.ancor-fm-heading p {
    margin: 0;
    color: rgba(33, 33, 33, 0.62);
    font-size: 14px;
    line-height: 2;
}

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

.ancor-fm-card {
    min-height: 250px;
    padding: 31px;
    background: #FCFCFC;
    border: 1px solid rgba(33, 33, 33, 0.11);
    border-radius: 17px;
    box-shadow: 0 18px 42px rgba(33, 33, 33, 0.055);
}

.ancor-fm-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    color: #FCFCFC;
    background: #598068;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}

.ancor-fm-card h3 {
    margin: 0 0 13px;
    color: #212121;
    font-size: 19px;
}

.ancor-fm-card p {
    margin: 0;
    color: rgba(33, 33, 33, 0.60);
    font-size: 13px;
    line-height: 1.95;
}

@media (max-width: 850px) {
    .ancor-fm-grid {
        grid-template-columns: 1fr;
    }

    .ancor-fm-hero {
        min-height: 480px;
    }
}
