.benefits-section {
    height: 100vh;
    padding: 0;
    margin-top: 0vh;
    background: linear-gradient(to top, #d9d9d973 0%, #D9D9D973 30%, #d9d9d973 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefits-section::after {
    content: 'JDC.JDC.JDC.JDC.JDC.JDC.JDC.JDC.';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 15.56vh;
    font-weight: 900;
    color: rgb(255 255 255 / 22%);
    letter-spacing: 0.28vh;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow: hidden;
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 3vh;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.benefits-section .section-title {
    color: #000000;
    font-size: 3.8vh;
    font-weight: 800;
    margin-bottom: 1.85vh;
    text-align: center;
    line-height: 1.1;
}

.benefits-section .title-highlight {
    color: #000000;
}

.benefits-section .title-dot {
    color: #b3ce3a;
}

.benefits-section .section-subtitle {
    color: #545454;
    font-size: 1.8vh;
    line-height: 1.6;
    max-width: 36.46vw;
    margin: 0 auto;
    opacity: 0.8;
}

.section-badge-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.04vw;
    margin-bottom: 2.22vh;
}

.section-badge-new .section-line {
    width: 3.13vw;
    height: 0.093vh;
    background: #0f172a;
}

.section-badge-new .section-category {
    font-family: 'Inter', sans-serif;
    font-size: 1.3vh;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.093vh;
    white-space: nowrap;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3vh;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    justify-content: center;
}

.benefits-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mackbook-image {
    width: 42vw;
    height: auto;
    border-radius: 1.85vh;
    transition: all 0.4s ease;
}

.mackbook-image:hover {
    transform: translateY(-0.93vh) scale(1.02);
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 1.48vh;
    padding-left: 0;
    align-items: stretch;
    width: 100%;
    max-width: 42vw;
}

.benefit-card-dark {
    display: flex;
    align-items: center;
    gap: 1.48vh;
    background: #ffffff;
    border-radius: 1.11vh;
    padding: 2vh 2.5vh;
    transition: all 0.3s ease;
    border: 0.052vw solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.37vh 1.85vh rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}

.benefit-card-dark:hover {
    transform: translateY(-0.37vh);
    box-shadow: 0 1.85vh 3.7vh rgba(0, 0, 0, 0.15);
    border-color: rgba(179, 206, 58, 0.3);
}

.benefit-icon-dark {
    width: 3.5vh;
    height: 3.5vh;
    background: transparent;
    border-radius: 1.3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-card-dark:hover .benefit-icon-dark {
    transform: scale(1.05);
}

.benefit-icon-dark svg {
    color: #b3ce3a;
    width: 1.8vh;
    height: 1.8vh;
}

.benefit-content-dark {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.benefit-content-dark h3 {
    font-size: 1.6vh;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5vh;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-content-dark p {
    font-size: 1.6vh;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .benefits-section {
        height: 100vh !important;
        padding: 0 !important;
        margin-top: -12vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .benefits-section::after {
        font-size: 6vh !important;
        bottom: 1vh !important;
    }

    .benefits-content {
        grid-template-columns: 1fr !important;
        gap: 3vh !important;
        margin-top: 0 !important;
        max-width: 98vw !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .benefits-image {
        order: 1 !important;
        justify-content: center !important;
    }

    .benefits-cards {
        order: 2 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        max-width: 98vw !important;
        margin: 0 !important;
        gap: 1vh !important;
        padding-left: 0 !important;
    }

    .mackbook-image {
        width: 80vw !important;
        max-width: 350px !important;
    }

    .benefit-card-dark {
        padding: 1vh 1.5vw !important;
        gap: 0.8vh !important;
        flex-direction: row !important;
        text-align: left !important;
        border-radius: 0.6vh !important;
    }

    .benefit-icon-dark {
        width: 2.8vh !important;
        height: 2.8vh !important;
        margin: 0 !important;
    }

    .benefit-icon-dark svg {
        width: 1.4vh !important;
        height: 1.4vh !important;
    }

    .benefit-content-dark h3 {
        font-size: 1.2vh !important;
        margin-bottom: 0.5vh !important;
        line-height: 1.1 !important;
    }

    .benefit-content-dark p {
        font-size: 1vh !important;
        line-height: 1.3 !important;
    }

    .section-badge-new {
        gap: 2.5vw !important;
        margin-bottom: 2.5vh !important;
    }

    .section-badge-new .section-line {
        width: 5vw !important;
        height: 0.1vh !important;
    }

    .section-badge-new .section-category {
        font-size: 1.1vh !important;
    }

    .benefits-section .section-title {
        font-size: 2.5vh !important;
        margin-bottom: 1.5vh !important;
    }

    .benefits-section .section-subtitle {
        font-size: 1.2vh !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        line-height: 1.4 !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .benefits-section {
        height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .benefits-section::after {
        font-size: 10vh !important;
    }

    .benefits-content {
        gap: 3vh !important;
        max-width: 98vw !important;
    }

    .mackbook-image {
        width: 55vw !important;
        max-width: 450px !important;
    }

    .benefits-cards {
        gap: 1.8vh !important;
        max-width: 95vw !important;
    }

    .benefit-card-dark {
        padding: 2.2vh 2.5vw !important;
        gap: 1.8vh !important;
    }

    .benefit-content-dark h3 {
        font-size: 1.5vh !important;
    }

    .benefit-content-dark p {
        font-size: 1.25vh !important;
    }

    .benefits-section .section-title {
        font-size: 3.5vh !important;
    }

    .benefits-section .section-subtitle {
        font-size: 1.5vh !important;
        max-width: 80% !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-section {
        height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .benefits-content {
        max-width: 98vw !important;
    }

    .mackbook-image {
        width: 40vw !important;
    }

    .benefits-section .section-title {
        font-size: 3.6vh !important;
    }

    .benefits-section .section-subtitle {
        font-size: 1.55vh !important;
        max-width: 70% !important;
    }
}
