.hero-block {
    /*padding: 0 20px;
    margin-bottom: 40px;*/
    padding: 0px !important;
    margin-bottom: 0px !important;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-inner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 113px 60px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(130 126 151 / 0%) 0%, rgb(111 111 111 / 60%) 50%, rgb(12 12 12 / 85%) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--color-white);
}

.hero-heading {
    font-family: var(--font-logo);
    font-size: 68px;
    font-weight: 700;
    line-height: 0.94;
    margin-bottom: 22px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    max-width: 579px;
}

.hero-subheading {
    font-family: var(--font-menu);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.36;
    margin-bottom: 47px;
    color: var(--color-white2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature-pill {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-menu);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -1%;
    color: #222222;
}

.hero-feature-pill svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    
}

.hero-form-wrapper {
    background: #4E30B3;
    border-radius: 30px;
    padding: 40px;
}

.form-heading {
    font-family: var(--font-logo);
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.form-terms {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #E7E7E7;
    margin: 10px 0 0 0;
}

@media (max-width: 1440px) {
    .hero-block {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .hero-inner {
        padding: 100px 50px 50px 50px;
    }
    
    .hero-heading {
        font-size: 64px;
    }
    
    .form-heading {
        font-size: 40px;
        line-height: 42px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-inner {
        padding: 80px 40px 40px 40px;
    }
    
    .hero-heading {
        font-size: 48px;
    }
    
    .hero-subheading {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .form-heading {
        font-size: 36px;
        line-height: 38px;
    }
    
    .hero-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .hero-block {
        padding: 0 15px;
    }
    
    .hero-inner {
        padding: 60px 25px 40px 25px;
        border-radius: 20px;
    }
    
    .hero-heading {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .hero-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .form-heading {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-feature-pill {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .hero-feature-pill svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-terms {
        font-size: 14px;
        line-height: 22px;
    }
}/* Використовується .section-padding з main.css */

.feature-block .layout-image-right {
    padding: 0px !important;
}

.feature-block {
    padding-bottom: 0px !important;
}

.feature-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.feature-container {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

.feature-content {
    color: var(--color-white);
}


.feature-description {
    margin-bottom: 40px;
    max-width: 369px;
}



.feature-image-wrapper {
    position: relative;
}

.feature-image-bg {
    background: #4E30B3;
    border-radius: 30px;
    padding: 45px 20px 20px 20px;
    position: relative;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Layout Reverse */
.layout-image-left .feature-container {
    grid-template-columns: 1fr 520px;
}

.layout-image-left .feature-content {
    order: 2;
}

.layout-image-left .feature-image-wrapper {
    order: 1;
}

@media (max-width: 1280px) {
    .feature-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .feature-container {
        grid-template-columns: 400px 1fr;
        gap: 60px;
    }
    
    .layout-image-left .feature-container {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 768px) {
    .feature-container,
    .layout-image-left .feature-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .layout-image-left .feature-content {
        order: 1;
    }
    
    .layout-image-left .feature-image-wrapper {
        order: 2;
    }
    
    .feature-description {
        margin-bottom: 32px;
    }
    
    .feature-image-bg {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .feature-image-bg {
        padding: 20px;
        border-radius: 20px;
    }
}



.benefits-header {
    display: flex;
    justify-content: space-between;
}

.benefits-heading {
    max-width: 734px;
}

.benefit-title {
    font-family: var(--font-menu);
    line-height: 1.28 !important;
}



.benefits-description {
    max-width: 700px;
    width: 416px;
}

.benefit-description {
    font-size: 22px;
    line-height: 136%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.benefit-icon img {
    width: 72px;
    height: auto;
}

.benefit-card.no-icon .benefit-title {
    margin-top: 0;
}





@media (max-width: 1024px) {
    .benefits-grid {
        gap: 20px;
    }
    .feature-block {
    padding: 0px !important;
}

#benefits {
        display: flex;
    flex-direction: column;
}
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .benefit-icon img {
        width: 40px;
        height: 40px;
    }
}


.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}




.pricing-description {
    max-width: 416px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}

.pricing-card {
    
    flex: 1 1 350px; 
    
    
    max-width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.pricing-card {
    padding: 40px 54px;
    
}

.pricing-card-header {
    margin-bottom: 30px;
}


.plan-name {
    margin-bottom: 20px;
}

.plan-price-wrapper {
    position: relative;
    display: inline-block;
}

.price-badge {
    width: 100%;
    height: auto;
}

.plan-price {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-family: var(--font-logo);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #FFFFFF;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex: 1;
}

.plan-features li {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: var(--color-white2);
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.plan-button {
    font-size: 22px;
    line-height: 109%;
    font-weight: 500;
}



@media (max-width: 1024px) {
    .pricing-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-description {
        max-width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 35px 30px;
    }
    
    .plan-features li {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-features li {
        font-size: 16px;
        line-height: 24px;
    }
}
.blog-section-block {
    padding: 80px 20px 80px 20px;
    overflow: hidden;
}

.blog-section-wrapper {
    /*max-width: 1400px;*/
    max-width: 1280px;
    margin: 0 auto;
}


.blog-section-header {
    max-width: var(--container-1280);
    margin: 0 auto 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.blog-nav-buttons {
    display: flex;
    gap: 12px;
}

.blog-nav-prev,
.blog-nav-next {
    width: 56px;
    height: 56px;
    background: var(--color-secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.blog-nav-prev:hover,
.blog-nav-next:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.blog-nav-prev:disabled,
.blog-nav-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-slider-wrapper {
    overflow: visible;
    padding: 0px;
    padding-left: 0px;
}



@media screen and (max-width: 1024px) {
    .blog-slider-wrapper {
    overflow: visible;
    padding: 0px !important;
}
}


.blog-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.blog-slide {
    min-width: calc(100% - 200px);
    flex-shrink: 0;
}

.blog-card {
    position: relative;
    height: 588px;
    border-radius: 30px;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-family: var(--font-menu);
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 25px;
}


.blog-card-title {
    margin: 0;
    padding-bottom: 35px;
}


.blog-card-button {
    display: inline-flex;
    padding: 14px 32px;
    width: 115px;
    height: 52px;
}

.no-posts {
    text-align: center;
    font-family: var(--font-menu);
    font-size: 20px;
    color: #E7E7E7;
    padding: 60px 20px;
}

@media (min-width:1025px) {
    .blog-section-header {
        padding: 0px;
    }
}

@media (max-width: 1024px) {
    .blog-section-block {
        padding: 60px 0 60px 0;
    }
    
    .blog-section-header {
        margin-bottom: 50px;
    }
    
    .blog-slide {
        min-width: calc(100% - 80px);
    }
    
    .blog-card {
        height: 500px;
    }
    
    .blog-card-title {
        font-size: 40px;
        line-height: 42px;
    }
}

@media (max-width: 768px) {
    .blog-section-block {
        padding: 40px 0 40px 0;
    }
    
    .blog-section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .blog-nav-prev,
    .blog-nav-next {
        width: 48px;
        height: 48px;
    }
    
    .blog-slider-wrapper {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .blog-slider {
        gap: 20px;
        padding: 0;
    }
    
    .blog-slide {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        flex-shrink: 0;
    }
    
    .blog-card {
        height: 450px;
        width: 100%;
    }
    
    .blog-card-image {
        width: 100%;
        max-width: 100%;
    }
    
    .blog-card-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-card-overlay {
        padding: 40px;
    }
    
    .blog-card-title {
        font-size: 32px;
        line-height: 36px;
        padding-bottom: 25px;
    }
    
    .blog-card-date {
        font-size: 16px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .blog-section-block {
        padding: 40px 0 40px 0;
    }
    
    .blog-section-header {
        padding: 0 20px;
    }
    
    .blog-slider-wrapper {
        padding: 0 20px;
    }
    
    .blog-slider {
        gap: 20px;
        padding: 0;
    }
    
    .blog-slide {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .blog-card {
        height: 400px;
        width: 100%;
    }
    
    .blog-card-image {
        width: 100%;
        max-width: 100%;
    }
    
    .blog-card-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-card-overlay {
        padding: 30px;
    }
    
    .blog-card-title {
        font-size: 28px;
        line-height: 32px;
        padding-bottom: 20px;
    }
    
    .blog-card-date {
        padding-bottom: 18px;
    }
    
    .blog-card-button {
        padding: 12px 28px;
        font-size: 18px;
        width: auto;
        height: auto;
    }
}

.container-1280 {
    max-width: var(--container-1280);
    margin: 0 auto;
}

.newsletter-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.newsletter-inner {
    background: var(--bg-block-primary);
    border-radius: 30px;
    padding: 60px 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    position: relative;
    z-index: 3;
}


.newsletter-description {
    color: #EEEEEE;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}


.newsletter-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 350px;
    height: 60px;
}


.newsletter-button {
    white-space: nowrap;
}

.newsletter-images {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
    pointer-events: none;
}

.newsletter-coin {
    position: absolute;
    bottom: 0px;
    right: 35%;
    width: 340px;
    height: auto;
}

.newsletter-wallet {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 280px;
    height: auto;
}

@media (max-width: 1024px) {
    .newsletter-inner {
        padding: 50px 60px;
        width: 100%;
    }
    
    .newsletter-input {
        width: 300px;
        font-size: 20px;
    }
    
    .newsletter-button {
        font-size: 20px;
        padding: 16px 32px;
    }
    
    .newsletter-coin {
        display: none;
        width: 280px;
        bottom: 50px;
        right: 15%;
    }
    
    .newsletter-wallet {
        display: none;
        width: 240px;
        right: 40px;
        top: 60px;
    }

    .newsletter-content {
        max-width: 100%;
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    }
    .newsletter-content h2 {
        text-align: center;
    }

    .newsletter-content form {
        width: 100%;
    }

    .newsletter-content input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .newsletter-inner {
        padding: 40px 30px;
    }
    
    .newsletter-description {
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
        font-size: 18px;
    }
    
    .newsletter-button {
        width: 100%;
        font-size: 18px;
    }
    
    .newsletter-images {
        width: 60%;
    }
    
    .newsletter-coin {
        width: 200px;
        bottom: 30px;
        right: 10%;
    }
    
    .newsletter-wallet {
        width: 180px;
        top: 40px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-inner {
        padding: 30px 20px;
    }
    
    .newsletter-input {
        padding: 14px 24px;
        height: 52px;
        font-size: 16px;
    }
    
    .newsletter-button {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .newsletter-images {
        width: 70%;
    }
    
    .newsletter-coin {
        width: 150px;
        bottom: 20px;
        right: 5%;
    }
    
    .newsletter-wallet {
        width: 140px;
        top: 30px;
        right: 10px;
    }
}