.intro-cards-section {
    padding-top: clamp(24px, 4vw, 42px);
    padding-bottom: clamp(38px, 5vw, 64px);
    background:
        radial-gradient(circle at top center, rgba(58, 99, 116, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 249, 0.92));
}

.intro-cards-section .container {
    max-width: 1180px;
}

.intro-cards-section + .trust-section {
    border-top: 0;
}

.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 286px));
    gap: clamp(16px, 1.8vw, 22px);
    justify-content: center;
}

.intro-card {
    position: relative;
    min-height: 188px;
    padding: 24px 26px 22px;
    border: 1px solid rgba(20, 36, 45, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 252, 0.95));
    box-shadow:
        0 18px 34px rgba(20, 36, 45, 0.09),
        0 3px 10px rgba(20, 36, 45, 0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, rgba(58, 99, 116, 0.08), rgba(58, 99, 116, 0.82), rgba(58, 99, 116, 0.08));
}

.intro-card-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.intro-card p {
    max-width: 12ch;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.78;
    letter-spacing: -0.01em;
    color: #526672;
}

.intro-cards-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: clamp(22px, 3.5vw, 32px);
    justify-content: center;
}

.intro-cards-actions .btn-main,
.intro-cards-actions .btn-secondary {
    min-height: 64px;
    padding-inline: 26px;
    font-size: 0.86rem;
    letter-spacing: 0.16em;
    justify-content: center;
    box-shadow: 0 14px 26px rgba(20, 36, 45, 0.08);
}

.intro-cards-actions .btn-main {
    width: 286px;
}

.intro-cards-actions .btn-secondary {
    width: 340px;
}

.intro-card:hover {
    transform: translateY(-3px);
    border-color: rgba(58, 99, 116, 0.18);
    box-shadow:
        0 24px 40px rgba(20, 36, 45, 0.12),
        0 4px 14px rgba(20, 36, 45, 0.05);
}

@media (max-width: 1080px) {
    .intro-cards-grid {
        grid-template-columns: repeat(2, minmax(240px, 286px));
        justify-content: center;
    }

    .intro-card {
        min-height: 188px;
    }

    .intro-card p {
        max-width: 14ch;
    }
}

@media (max-width: 768px) {
    .intro-cards-section {
        padding-top: 18px;
        padding-bottom: 40px;
    }

    .intro-cards-grid {
        grid-template-columns: 1fr;
    }

    .intro-card {
        min-height: auto;
        padding: 22px 18px 20px;
    }

    .intro-card::before {
        left: 20px;
        right: 20px;
    }

    .intro-card p {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

    .intro-cards-actions {
        gap: 14px;
    }

    .intro-cards-actions .btn-main,
    .intro-cards-actions .btn-secondary {
        width: 100%;
        min-height: 64px;
    }
}
