.value {
    position: relative;
    padding: 120px 0 120px !important;
    overflow: hidden;
}

.value::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 122, 255, 0.10), transparent 32%),
        radial-gradient(circle at 88% 82%, rgba(17, 24, 39, 0.08), transparent 30%);
    pointer-events: none;
}

.value-container {
    position: relative;
    z-index: 1;
}

.value-heading {
    margin-bottom: 64px;
}

.value-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.08);
    color: #007AFF;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.value-title {
    margin: 0;
    color: #111827;
    font-size: clamp(3rem, 5.6vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 650;
}

.value-title span {
    color: #007AFF;
    font-weight: 300;
}

.value-subtitle {
    max-width: 820px;
    margin: 28px 0 0;
    color: #374151;
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    line-height: 1.55;
}

.value-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: stretch;
}

.value-image {
    position: relative;
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.14);
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-text-block {
    display: grid;
    gap: 18px;
}

.value-proof-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.value-proof-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    font-size: 0.78rem;
    font-weight: 700;
}

.value-proof-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.18;
    font-weight: 650;
}

.value-proof-card p {
    margin: 0;
    color: #374151;
    font-size: 1.02rem;
    line-height: 1.55;
}

.value-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    padding: 28px 30px;
    border-radius: 28px;
    background: #111827;
    color: #fff;
}

.value-cta-box p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.5;
}

.value-cta {
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 14px;
    background: #007AFF;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .value {
        padding: 100px 0 90px;
    }

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

    .value-image {
        min-height: 420px;
    }

    .value-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .value-cta {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .value {
        padding: 82px 0 76px;
    }

    .value-title {
        font-size: clamp(2.35rem, 11vw, 3.05rem);
    }

    .value-subtitle {
        font-size: 1rem;
    }

    .value-image {
        min-height: 320px;
        border-radius: 24px;
    }

    .value-proof-card {
        padding: 22px;
        border-radius: 22px;
    }

    .value-cta-box {
        padding: 24px;
        border-radius: 24px;
    }
}