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

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #4B4A4A;
    background-color: #F5F5F5;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.header {
    padding: 20px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: block;
}

.logo__img {
    height: 80px;
    width: auto;
}


.header__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header__phone {
    font-size: 18px;
    color: #4B4A4A;
    text-decoration: none;
    font-weight: 550;
}

.header__callback {
    font-size: 15px;
    font-weight: 550;
    color: #4B4A4A;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
}

.header__callback:hover {
    opacity: 0.8;
}

.header__mobile-buttons {
    display: none;
    gap: 15px;
}

.header__mobile-call,
.header__mobile-whatsapp,
.header__mobile-telegram {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header__mobile-call {
    background: linear-gradient(90deg, #FFCC00 0%, #FFE566 100%);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.header__mobile-whatsapp {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.header__mobile-telegram {
    background: linear-gradient(90deg, #0088cc 0%, #00a2ff 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.header__mobile-call:hover,
.header__mobile-whatsapp:hover,
.header__mobile-telegram:hover {
    transform: translateY(-2px);
}

.header__mobile-call:hover {
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.header__mobile-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header__mobile-telegram:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.header__mobile-call-icon,
.header__mobile-whatsapp-icon,
.header__mobile-telegram-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero {
    padding: 140px 0 40px;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__text {
    max-width: 600px;
}

.hero__title {
    font-size: 36px;
    font-weight: 700;
    color: #4B4A4A;
    margin: 0 0 20px;
}

.hero__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4B4A4A;
    margin: 0 0 30px;
}

.hero__image {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__button-wrapper {
    grid-column: 1;
    grid-row: 2;
}

.hero__button,
.catalog__button,
.test__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4B4A4A;
    background: linear-gradient(90deg, #FFCC00 0%, #FFE566 100%);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
    min-width: 200px;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    outline: none;
}

.hero__button:hover,
.catalog__button:hover,
.test__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.hero__button:active,
.catalog__button:active,
.test__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.hero__button-icon,
.catalog__button-icon,
.test__button-icon {
    width: 24px;
    height: 24px;
    order: 2;
    pointer-events: none;
}

.hero__button span,
.catalog__button span,
.test__button span {
    order: 1;
    pointer-events: none;
}

/* Добавляем стили для wrapper'ов кнопок */
.hero__button-wrapper,
.catalog__button-wrapper,
.test__button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Why We Section */
.why-we {
    padding: 40px 0 80px;
}

.why-we__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #4B4A4A;
}

.why-we__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-we__card {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-we__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.why-we__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #4B4A4A;
    margin: 0;
}

.why-we__card-icon {
    width: 32px;
    height: 32px;
}

.why-we__card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #4B4A4A;
    margin: 0;
}

/* Help Section */
.help {
    padding: 80px 0;
    background-color: #4B4A4A;
}

.help__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.help__text {
    flex: 1;
    max-width: 600px;
}

.help__description {
    font-size: 36px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.help__image {
    flex: 1;
}

.help__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Catalog Section */
.catalog {
    padding: 80px 0 40px;
}

.catalog__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.catalog__image {
    flex: 1;
}

.catalog__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.catalog__text {
    flex: 1;
    max-width: 600px;
}

.catalog__title {
    font-size: 32px;
    font-weight: 700;
    color: #4B4A4A;
    margin-bottom: 20px;
}

.catalog__description {
    font-size: 18px;
    line-height: 1.5;
    color: #4B4A4A;
    margin-bottom: 30px;
}

.catalog__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* Plans Section */
.plans {
    padding: 40px 0 80px;
}

.plans__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #4B4A4A;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.plans__item {
    text-align: center;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
}

.plans__image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.plans__description {
    font-size: 18px;
    font-weight: 500;
    color: #4B4A4A;
    margin-top: auto;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: #4B4A4A;
}

.contacts__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.contacts__content {
    max-width: 800px;
    margin: 0 auto;
}

.contacts__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contacts__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.contacts__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #FFCC00;
    margin-bottom: 20px;
}

.contacts__phone {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.contacts__phone:hover {
    color: #FFCC00;
}

.contacts__time {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.contacts__address {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 15px;
}

/* Test Section */
.test {
    padding: 80px 0;
}

.test__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.test__text {
    max-width: 600px;
}

.test__title {
    font-size: 36px;
    font-weight: 700;
    color: #4B4A4A;
    margin: 0 0 20px;
}

.test__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4B4A4A;
    margin: 0 0 30px;
}

.test__image {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.test__img {
    width: 100%;
    height: auto;
    display: block;
}

.test__button-wrapper {
    grid-column: 1;
    grid-row: 2;
}

.test__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4B4A4A;
    background: linear-gradient(90deg, #FFCC00 0%, #FFE566 100%);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
    min-width: 200px;
    justify-content: center;
}

.test__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.test__button-icon {
    width: 24px;
    height: 24px;
    order: 2;
}

.test__button span {
    order: 1;
}

/* Медиа-запросы для адаптивной верстки */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero__content,
    .help__content,
    .catalog__content {
        flex-direction: column;
        text-align: center;
    }

    .hero__text,
    .help__text,
    .catalog__text {
        max-width: 100%;
    }

    .hero__image,
    .help__image,
    .catalog__image {
        margin-top: 30px;
    }

    .why-we__grid,
    .plans__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .header__contact {
        display: none;
    }

    .header__mobile-buttons {
        display: flex;
    }

    .header__mobile-call,
    .header__mobile-whatsapp,
    .header__mobile-telegram {
        display: flex;
    }

    .logo__img {
        height: 60px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__image {
        grid-column: 1;
        grid-row: 2;
    }

    .hero__button-wrapper {
        grid-column: 1;
        grid-row: 3;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    .why-we {
        padding: 40px 0 60px;
    }

    .help {
        padding: 60px 0;
    }

    .catalog {
        padding: 60px 0 40px;
    }

    .plans {
        padding: 40px 0 60px;
    }

    .contacts {
        padding: 60px 0;
    }

    .why-we__grid,
    .plans__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-we__title,
    .plans__title,
    .catalog__title,
    .contacts__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .help__description {
        font-size: 28px;
    }

    .contacts__info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts__item {
        min-height: auto;
        padding: 20px 0;
    }

    .test__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .test__text {
        max-width: 100%;
    }

    .test__image {
        grid-column: 1;
        grid-row: 2;
    }

    .test__button-wrapper {
        grid-column: 1;
        grid-row: 3;
    }

    .test__title {
        font-size: 28px;
    }

    .test__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__button,
    .catalog__button,
    .test__button {
        width: 100%;
    }

    .why-we__card-title {
        font-size: 18px;
    }

    .why-we__card-text {
        font-size: 14px;
    }

    .plans__description {
        font-size: 16px;
    }

    .contacts__phone,
    .contacts__address {
        font-size: 20px;
    }

    .contacts__time {
        font-size: 16px;
    }

    .test__button {
        width: 100%;
        justify-content: center;
    }
}

/* Здесь будут ваши стили */
