

/* Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter_18pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Playfair Display Font */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

.mobile-hide {
    display: flex !important;
}

.desktop-hide {
    display: none !important;
}

/* Header */
.header {
    background: #111827;
    text-align: center;
    margin-bottom: 64px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 0;
}

.logo__icon {
    width: 20px;
    height: 20px;
}

.logo__text {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Hero Section */
.hero {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.hero__bottom {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10);
}

.hero__image {
    max-height: 321px;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}

.hero__badge {
    padding: 4px 8px;
    border-radius: 16px;
    width: fit-content;
    border: 0 solid #E5E7EB;
    background: #B8CFFF;
    color: #6B7280;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hero__text {
    color: #363636;
    font-family: "Playfair Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Expert Section */
.expert {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.expert__container {
    background-color: #FCF7EB;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expert__image {
    flex-shrink: 0;
}

.expert__image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.expert__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.expert__name {
    color: #363636;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.expert__title {
    color: #363636;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.expert__text {
    color: #363636;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* CTA Button Section */
.cta-button {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.cta-button__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button__link {
    background-color: #F27F01;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 20px 40px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cta-button__link:hover {
    background-color: #D87F3A;
}

/* Icon Grid Section */
.icon-grid {
    max-width: 864px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32.5px;
    margin-bottom: 64px;
}

.icon-grid__container {
    display: flex;
    flex-direction: row;
    gap: 94px;
    flex-wrap: nowrap;
}

.icon-grid__title {
    color: #111827;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.icon-grid__item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.icon-grid__item:nth-child(1) img {
    width: 112px;
}

.icon-grid__item:nth-child(2) img {
    width: 90px;
}

.icon-grid__item:nth-child(3) img {
    width: 95px;
}

.icon-grid__item:nth-child(4) img {
    width: 66px;
}

.icon-grid__item:nth-child(5) img {
    width: 63px;
}

/* Rich text section */
.rich-text {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.rich-text__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 8px;  
}

.rich-text__content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rich-text__title {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

#rich-text-title-1 {
    color: #F27F01;
}

.rich-text__text {
    color: #374151;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* Graphic section */
.graphic {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
    padding: 0 32px;
}

.graphic__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.graphic__content {
    display: flex;
    flex-direction: row;
    gap: 79px;
}

.graphic__title {
    color: #111827;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.graphic__intro {
    color: #374151;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.graphic__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: graphic-counter;
}

.graphic__list-item {
    padding-left: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 42px;
}

.graphic__list-item::before {
    counter-increment: graphic-counter;
    content: counter(graphic-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.graphic__list-item:nth-child(1)::before {
    background-color: #FEE2E2;
    color: #DC2626;
}

.graphic__list-item:nth-child(2)::before {
    background-color: #FFEDD5;
    color: #EA580C;
}

.graphic__list-item:nth-child(3)::before {
    background-color: #FEE2E2;
    color: #DC2626;
}

.graphic__list-item:nth-child(4)::before {
    background-color: #F3F4F6;
    color: #4B5563;
}

.graphic__list-item__title {
    color: #111827;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.graphic__list-item__text {
    color: #4B5563;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.graphic__conclusion {
    color: #374151;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
}

.graphic__image {
    border-radius: 8px;
    padding: 16px 24px;
    background: #F9FAFB;
    max-width: 329px;
    max-height: 298px;
}

.graphic__image img {
    width: 281px;
    height: 266px;
    object-fit: cover;
}

/* Points section */
.points {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.points__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.points__title {
    color: #111827;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.points__content {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.points__content-item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.points__content-item__icon {
    width: 48px;
    height: 48px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(242, 127, 1, 0.10);
    margin-bottom: 16px;
}

.points__content-item__title {
    color: #111827;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
    text-wrap: nowrap;
}

.points__content-item__text {
    color: #4B5563;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Problems section */
.problems {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.problems__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 32px;
    background: #F9FAFB;
    border-radius: 8px;
}

.problems__title {
    color: #111827;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.problems__subtitle {
    color: #F27F01;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.problems__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problems__item {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.problems__item-icon {
    width: 16px;
    height: 24px;
}

.problems__item-text {
    color: #374151;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Goal section */
.goal {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.goal__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.goal__title {
    color: #111827;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.goal__content {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.goal__text {
    color: #374151;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.goal__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}

.goal__points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal__points-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.goal-item__icon {
    width: 16px;
    height: 24px;
}

.goal-item__text {
    color: #374151;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.goal__right {
    width: 50%;
    padding: 24px;
    background: #B8CFFF;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 8px;
}

.goal__right-title {
    color: #363636;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.goal__right-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal__right-item {
    color: #363636;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
}

/* Alternative graphic section */
.alt-graphic {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.alt-graphic__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.alt-graphic__title {
    color: #111827;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.alt-graphic__content {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.alt-graphic__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}

.alt-graphic__left-text {
    color: #374151;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.alt-graphic__left-richtext {
    color: #374151;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.alt-graphic__left-bagde {
    color: #F27F01;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(242, 127, 1, 0.10);
}

.alt-graphic__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: -20px;
}

.alt-graphic__right-image {
    max-width: 100%;
    height: 226px;
}

.alt-graphic__right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.alt-graphic__right-text {
    color: #4B5563;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background: #F9FAFB;
    padding: 16px;
}

/* Main block section */
.main-block {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;    
}

.main-block__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 16px;
    background: #F27F01;
}

.main-block__header {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.main-block__header-title {
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main-block__header-subtitle {
    width: 128px;
    height: 32px;
}

.main-block__content {
    display: flex;
    flex-direction: row;
    gap: 28px;
}

.main-block__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-block__left-text {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.main-block__left-icon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-block__left-icon-list-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.main-block__left-icon-list-item-icon {
    width: 16px;
    height: 14px;
}

.main-block__left-icon-list-item-text {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-block__left-review__block {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-block__left-review__block-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.main-block__left-review__block-quote {
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.main-block__left-review__block-author {
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-block__right {
    padding: 24px 0px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-block__right-image {
    max-height: 231.616px;
}

.main-block__right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-block__right-title {
    color: #111827;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.main-block__right-subtitle {
    color: #4B5563;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main-block__right-btn {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 24px;
    background: #F27F01;
    padding: 20px 40px;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.main-block__right-btn:hover {
    background-color: #D87F3A;
}

/* Image Grid Section */
.image-grid {
    position: relative;
    padding: 0;
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.image-grid__item {
    width: 100%;
}

.image-grid__item img {
    width: 100%;
    display: block;
}

/* Reviews section */
.reviews {
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.reviews__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border-radius: 12px;
    background: #FCF7EB;
}

.reviews__title {
    color: #111827;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reviews__subtitle {
    color: #4B5563;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.reviews__icons-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.reviews__icons-list__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 33%;
}

.reviews__icons-list__item-icon {
    padding: 22px;
    border-radius: 9999px;
    border: 0 solid #E5E7EB;
    background: rgba(242, 127, 1, 0.10);
    height: 64px;
}

.reviews__icons-list__item-icon svg {
    width: 20px;
    height: 20px;
}

.reviews__icons-list__item-title {
    color: #111827;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reviews__icons-list__item-subtitle {
    color: #4B5563;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.reviews__trustpilot-block {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.reviews__trustpilot-block__icon {
    width: 105px;
    height: 30px;
}

.reviews__trustpilot-block__icon svg {
    width: 100%;
    height: 100%;
}

.reviews__trustpilot-block__score {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.reviews__trustpilot-block__text {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.reviews__quote {
    padding: 24px;
    border-radius: 8px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews__quote-header {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.reviews__quote-name {
    color: #111827;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reviews__quote-text {
    color: #374151;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Banner section */
.banner {
    position: relative;
    max-width: 864px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.banner__container {
    background: url('images/banner-section.png') no-repeat center center;
    background-size: cover;
    height: 400px;
    border-radius: 16px;
}

.banner__content {
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding: 0 40px 48px 40px;
    position: absolute;
    bottom: 0;
}

.banner__title {
    color: #000413;
    font-family: "Playfair Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
}

.banner__cta {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 24px;
    background: #F27F01;
    padding: 20px 40px;
    width: fit-content;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.banner__cta:hover {
    background-color: #D87F3A;
}

.banner__cta-arrow {
    width: 10px;
    height: 18px;
}

/* Footer */
.footer {
    background: #111827;
    text-align: center;
    margin-top: 64px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 48px 0;

}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer__logo__icon {
    width: 20px;
    height: 20px;
}

.footer__logo__text {
    color: #FFF;
}

.footer__description {
    color: #9CA3AF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Desktop: Show grid */
@media (min-width: 769px) {
    .image-grid {
        display: flex;
        flex-direction: row;
        gap: 4px;
    }
    
    .image-grid-swiper {
        display: flex;
        width: 100%;
    }
    
    .image-grid-swiper .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .image-grid-swiper .swiper-slide {
        width: 25% !important;
        flex-shrink: 0;
    }
    
    .image-grid-nav {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .mobile-hide {
        display: none !important;
    }
    
    .desktop-hide {
        display: flex !important;
    }

    /* Header */
    .header {
        margin-bottom: 0;
    }

    /* Hero Section */
    .hero {
        margin: 0 16px 32px;
    }

    .hero__image {
        height: 218px;
    }

    .hero__bottom {
        padding: 24px 16px;
    }

    .hero__badge {
        font-size: 10px;
    }

    .hero__text {
        font-size: 28px;
    }

    /* Expert Section */
    .expert {
        margin: 0 16px 32px;
    }

    .expert__container {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .expert__image {
        align-self: flex-start;
    }

    .expert__image img {
        width: 60px;
        height: 60px;
    }

    .expert__content {
        gap: 10px;
    }

    .expert__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .expert__name {
        font-size: 16px;
    }

    .expert__title {
        font-size: 14px;
    }

    .expert__text {
        font-size: 14px;
    }

    /* CTA Button Section */
    .cta-button {
        max-width: 328px;
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .cta-button__link {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
    }

    /* Icon Grid Section */
    .icon-grid {
        margin: 0;
        padding: 40px 16px;
    }

    .icon-grid__container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px 8px;
        align-items: center;
        justify-items: center;
    }

    .icon-grid__item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon-grid__item:nth-child(1) {
        grid-column: 4 / 7;
        grid-row: 1;
    }

    .icon-grid__item:nth-child(2) {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .icon-grid__item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .icon-grid__item:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
    }

    .icon-grid__item:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
    }

    .icon-grid__item img,
    .icon-grid__item svg {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Rich text section */
    .rich-text {
        margin: 0 16px 32px;
    }

    /* Graphic Section */
    .graphic {
        margin: 0 16px 32px;
        padding: 0;
    }

    .graphic__container {
        flex-direction: column;
        gap: 24px;
    }

    .graphic__content {
        flex-direction: column;
        gap: 32px;
    }

    .graphic__title {
        font-size: 24px;
    }

    .graphic__intro {
        font-size: 16px;
        line-height: 24px;
    }

    .graphic__list {
        gap: 14px;
    }

    .graphic__list-item {
        padding-left: 48px;
    }

    .graphic__list-item::before {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .graphic__conclusion {
        font-size: 16px;
        line-height: 24px;
    }

    .graphic__image {
        min-width: 100%;
    }

    /* Points section */
    .points {
        margin: 0 16px 32px;
    }

    .points__content {
        flex-direction: column;
    }

    /* Problems section */
    .problems {
        margin: 0 16px 32px;
    }

    /* Goal section */
    .goal {
        margin: 0 16px 32px;
    }

    .goal__content {
        flex-direction: column;
    }

    .goal__left,
    .goal__right {
        width: 100%;
    }

    /* Alternative graphic section */
    .alt-graphic {
        margin: 0 16px 32px;
    }

    .alt-graphic__content {
        flex-direction: column;
    }

    .alt-graphic__left,
    .alt-graphic__right {
        width: 100%;
    }

    /* Main block section */
    .main-block {
        margin: 0 16px 32px;
    }

    .main-block__container {
        padding: 32px 16px;
    }

    /* Image Grid Section */
    .image-grid-swiper {
        width: 100%;
        padding: 0 16px;
    }
    
    .image-grid-swiper .swiper-slide {
        width: auto;
    }
    
    .image-grid-nav {
        position: absolute;
        bottom: 20px;
        left: 70%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }
    
    .image-grid-nav .nav-arrow {
        background: white;
        border: 2px solid #000;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .image-grid-nav .nav-arrow:hover {
        background: #000;
        color: white;
    }
    
    .image-grid-nav .nav-arrow.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Reviews Section */
    .reviews {
        margin: 0 16px 32px;
    }

    .reviews__container {
        padding: 32px 16px;
    }

    .reviews__title {
        font-size: 28px;
    }

    .reviews__subtitle {
        font-size: 14px;
    }
    
    .reviews__icons-list {
        flex-direction: column;
        gap: 24px;
    }

    .reviews__icons-list__item {
        width: 100%;
    }

    .reviews__quote-text {
        font-size: 14px;
    }

    /* Banner Section */
    .banner {
        margin: 0 16px 32px;
    }

    .banner__content {
        max-width: 100%;
        gap: 24px;
        padding: 0 16px 32px 16px;
    }

    .banner__title {
        font-size: 28px;
        line-height: 44px;
    }

    .banner__cta {
        font-size: 16px;
        width: 100%;
    }
}

/* Desktop specific swiper styles */
@media (min-width: 1024px) and (max-width: 1439px) {
    .icon-grid {
        margin: 82px 80px;
    }

    .icon-grid__container {
        gap: 96px;
    }
}
