.whitebox {
    padding: var(--section-pad) 0;
    background: var(--bg-soft);
    overflow: hidden;
}

.whitebox__inner {
    width: min(100%, calc(var(--container) + var(--container-pad) * 2));
    margin-inline: auto;
    padding-inline: var(--container-pad);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: stretch;
}

.whitebox__visual {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.whitebox__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whitebox__badge {
    position: absolute;
    top: clamp(16px, 2.5vw, 24px);
    left: clamp(16px, 2.5vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 12px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    color: var(--green-dark);
}

.whitebox__badge-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
}

.whitebox__badge-text {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.whitebox__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4.5vw, 56px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.whitebox__title {
    margin: 0;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}

.whitebox__subtitle {
    margin-top: clamp(14px, 2vw, 20px);
    font-size: var(--fs-lead);
    font-weight: 700;
    line-height: 1.4;
    color: var(--green-dark);
}

.whitebox__text {
    margin-top: 14px;
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--muted);
}

.whitebox__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px clamp(16px, 2.5vw, 24px);
    margin-top: clamp(24px, 3vw, 32px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid var(--line);
}

.whitebox__list-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: clamp(0.92rem, 1.15vw, 1rem);
    line-height: 1.4;
    color: var(--ink);
}

.whitebox__list-item::before {
    content: "✓";
    flex-shrink: 0;
    font-weight: 700;
    color: var(--green);
}

.whitebox__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(16px, 2.5vw, 24px);
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid var(--line);
}

.whitebox__price-value {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--green-dark);
}

.whitebox__price-note {
    margin-top: 6px;
    font-size: var(--fs-small);
    line-height: 1.4;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .whitebox__inner {
        grid-template-columns: 1fr;
    }

    .whitebox__visual {
        min-height: auto;
    }

    .whitebox__image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 560px) {
    .whitebox__list {
        grid-template-columns: 1fr;
    }

    .whitebox__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .whitebox__cta {
        width: 100%;
    }
}
