.included-section {
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(35, 238, 205, 0.12), transparent 22rem),
        radial-gradient(circle at 82% 72%, rgba(157, 124, 255, 0.1), transparent 24rem),
        linear-gradient(180deg, rgba(4, 8, 18, 1), rgba(5, 8, 16, 0.96));
}

.included-layout {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: clamp(70px, 9vh, 92px) 0 clamp(52px, 7vh, 72px);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 30px);
}

.included-card {
    display: grid;
    justify-items: center;
    height: 330px;
    max-height: 330px;
    border-radius: 18px;
    padding: clamp(24px, 2.4vw, 32px) clamp(22px, 2.4vw, 30px);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(13, 25, 44, 0.74), rgba(7, 13, 25, 0.68)),
        radial-gradient(circle at 50% 0%, rgba(20, 232, 210, 0.1), transparent 15rem);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.included-card:hover,
.included-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(20, 232, 210, 0.62);
    box-shadow:
        0 28px 82px rgba(0, 0, 0, 0.3),
        0 0 36px rgba(20, 232, 210, 0.13);
}

.included-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border: 2px solid rgba(20, 232, 210, 0.36);
    border-radius: 50%;
    color: #14e8d2;
    background: rgba(20, 232, 210, 0.07);
}

.included-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.included-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.42rem, 2vw, 1.86rem);
    line-height: 1.12;
}

.included-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 20px;
    border: 2px solid rgba(20, 232, 210, 0.44);
    border-radius: 999px;
    padding: 0 26px;
    color: #14e8d2;
    background: rgba(20, 232, 210, 0.08);
    font-size: clamp(1.02rem, 1.42vw, 1.22rem);
    font-weight: 900;
}

.included-card p {
    width: min(100%, 310px);
    margin: 20px auto 0;
    color: rgba(104, 161, 197, 0.94);
    font-size: clamp(1.02rem, 1.38vw, 1.18rem);
    line-height: 1.6;
    font-weight: 600;
}
