:root {
    --primary-blue: #182B47;
    --primary-blue-dark: #0F1E33;
    --gold: #D3BB6E;
    --gold-light: #F6F1F1;
    --gold-dark: #D6BF79;
    --gray-bg: #EEF2F5;
    --white: #FFFFFF;
    --text-dark: #29292A;
    --text-blue: #263C61;
    --border-radius-lg: 101px;
    --border-radius-md: 48px;
    --border-radius-sm: 40px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Geologica', sans-serif;
    background-color: var(--gray-bg);
    color: var(--text-dark);
    line-height: 1.07;
}

section {
    max-width: 80%;
    margin: 0 auto 70px;
    width: 100%;
}

/* Typography */
h2, .title {
    font-size: 40px;
    line-height: 1.07;
    margin: 16px auto 66px;
    font-weight: 400;
    text-align: center;
    color: var(--text-blue);
}

/* Header */
.header {
    max-width: 80%;
    margin: 20px auto 50px;
    background-color: var(--primary-blue);
    border-radius: var(--border-radius-md);
    padding: 5px 40px;
}

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

.header__logo img {
    height: 60px;
    width: auto;
}

.header__geo, .header__time, .header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.2s ease;
}

.header__phone {
    background-color: #374B65;
    padding: 3px 15px 3px 3px;
    gap: 3px;
    border-radius: var(--border-radius-sm);
}

.number{
    font-size: 16px;
}

.header__icon{
    height: 60px;
    width: auto;
}

.header__button {
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    font-family: 'Geologica', sans-serif;
    border: none;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.header__button:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

/* Hero */
.hero {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 0 0 60px;
    margin-bottom: 50px;
}

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

.hero__content {
    flex: 0 0 45%;
}

.hero__title {
    font-size: 40px;
    color: var(--text-blue);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    margin-bottom: 50px;
}

.hero__list {
    list-style: none;
    padding: 20px 30px;
    background: linear-gradient(116.57deg, rgba(53, 82, 124, 0.12) 6.62%, rgba(246, 206, 78, 0.054) 96.88%);
    border-radius: 49px;
    margin-bottom: 10px;
}

.hero__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero__list-item:last-child {
    margin-bottom: 0;
}

.hero__list-text {
    font-size: 20px;
    color: #35354E;
}

.hero__image {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-self: end;
}

.hero__image img:first-child {
    position: absolute;
    max-width: 100%;
    height: auto;
    z-index: 1;
    bottom: 0;
    right: 0;
}

.hero__image img:last-child {
    position: relative;

    max-width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

/* CTA Buttons */
.cta {
    text-align: center;
}

.cta__title {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 0 auto 30px;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta__button {
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.cta__button--primary {
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    color: var(--primary-blue);
}

.cta__button--secondary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cta__button:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.advantages {
    background: url("../img/advantages.png") center/cover no-repeat;
    max-width: 80%;
    margin: 20px auto 70px;
    background-color: white;
    border-radius: 101px;
    padding: 1px;
    z-index: -1;
    overflow: hidden;
}

.advantages {
    background: url("../img/advantages/advantages.png") center/cover no-repeat;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 20px 20px 0;
    z-index: -2;
}

/* GRID */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* CARD */
.adv-card {
    position: relative;
    width: 227px;
    height: 250px;
}

.adv-title{
    margin: 56px auto 20px;
}

.adv-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* POSITIONING */
.card-exp {
    grid-column: 1;
    grid-row: 1;
    left: 80px;
}

.card-premium {
    grid-column: 3;
    grid-row: 1;
}

.card-operations {
    grid-column: 5;
    grid-row: 1;
    right: 40px;
    bottom: 10px;
    z-index: 1;
}

.card-guarantee {
    grid-column: 2;
    grid-row: 2;
    margin-top: -80px;
    bottom: 90px;
    left: 40px;
}

.card-standards {
    grid-column: 4;
    grid-row: 2;
    margin-top: -80px;
    bottom: 90px;
    left: -40px;
    z-index: 1;
}

.card-dentures {
    grid-column: 3;
    grid-row: 3;
    margin-top: -350px;
}

.card-doctors {
    grid-column: 5;
    grid-row: 2 / span 2;
    width: 320px;
    height: 360px;
    margin-top: -60px;
    z-index: 0;
    bottom: 110px;
    right: 90px;
}
/* Process */
.process {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process__step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.process__step-text {
    font-size: 18px;
}

.process__image {
    text-align: center;
}

/* Reviews */
.reviews {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.reviews__grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews__card {
    background-color: #D3E6F7;
    border-radius: 111px;
    padding: 40px;
    max-width: 30%;
    text-align: center;
}

.reviews__avatar {
    width: 45%;
    margin-bottom: 50px;
}

.reviews__text-container {
    background-color: var(--white);
    border-radius: 34px;
    padding: 30px;
}

.reviews__stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.reviews__text {
    font-size: 12px;
}

/* Offers */
.offers {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 62px;
}

.offers__grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offers__card {
    border-radius: 35px;
    overflow: hidden;
}

.offers__card--large {
    background: #B9921B;
    padding: 30px;
    color: var(--white);
    max-width: 610px;
}

.offers__card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.offers__card-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.offers__brand{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offers__badges {
    display: flex;
    gap: 10px;
}

.offers__badge {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.offers__badge--old {
    background: var(--white);
    color: #ff5d5d;
}

.offers__badge--discount {
    background: #ececec;
    color: #444;
}

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

.offers__price {
    font-size: 36px;
}

.offers__link {
    color: var(--white);
    text-decoration: underline;
}

.offers__card--small{
    padding: 49px 34px;
    max-width: 230px;
}

.offers-first{
    background: url(../img/offers/small-first.svg) center/cover no-repeat;

}

.offers-second{
    background: url(../img/offers/small-second.svg) center/cover no-repeat;
}

.offers__card-content{
    display: flex;
    flex-direction: column;
    height: 55%;
    justify-content: space-between;
}

.offers__small-title {
    font-size: 26px;
    color: #b88e17;
    font-weight: 400;
    min-height: 78px;
}

.offers__image{
    max-width: 300px;
}

.offers__time {
    color: #b9a17b;
}

.offers__tag {
    background: #c79b1e;
    color: var(--white);
    padding: 5px 5px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
}

/* FAQ */
.faq {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.faq__item {
    margin-bottom: 20px;
}

.faq__question {
    width: 90%;
    background: #183055;
    color: var(--white);
    font-size: 24px;
    padding: 20px;
    border: none;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
}

.faq__icon {
    width: 22px;
    height: 22px;
    position: relative;
}

.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    border-radius: 2px;
}

.faq__icon::before {
    width: 22px;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq__icon::after {
    width: 3px;
    height: 22px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--white);
    border-radius: 0 0 12px 12px;
}

.faq__answer p {
    padding: 20px;
    color: #333;
}

/* Lead Magnet */
.lead-magnet {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.lead-magnet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lead-magnet__offer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 50px;
    color: var(--white);
}

.lead-magnet__badge {
    background-color: #D5BD74;
    color: var(--primary-blue);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 40px;
    margin-bottom: 40px;
}

.lead-magnet__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.lead-magnet__title span {
    color: #E7D9B9;
}

.lead-magnet__saving{
    color: #B5C9EA;
    font-size: 14px;
    margin-left: 10px;
    font-weight: 400;
    opacity: 0.5;
}

.lead-magnet__highlight {
    background: rgba(211, 187, 110, 0.12);
    border-left: 4px solid var(--gold);
    padding: 15px;
    margin: 20px 0;
}

.lead-magnet__timer {
    background: #62859B5C;
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
}

.lead-magnet__timer-label{
    font-size: 15px;
    color: #FFE79F;
}

.lead-magnet__timer-digits {
    display: flex;
    justify-content: center;
    margin: 10px auto;
    gap: 15px;
    flex-wrap: wrap;
}

.lead-magnet__timer-block {
    background: rgba(0,0,0,0.3);
    padding: 10px 19px 20px;
    border-radius: 16px;
}

.lead-magnet__timer-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold)
}

.lead-magnet__timer-unit{
    font-size: 14px;
    color: #92A6B4;
}

.lead-magnet__form {
    padding: 50px;
}

.lead-magnet__form-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.lead-magnet__footer{
    font-size: 14px;
    font-weight: 400;
}

.lead-magnet__form-sub{
    border-left: 3px solid var(--gold);
    margin: 15px 0;
    padding-left: 15px;
    color: #798AA7;
    font-size: 15px;
    min-height: 20px;
    display: flex;
    align-items: center; /* вертикальное центрирование */
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
    color: #294163;
    font-size: 13px;
}

.form__group input, .form__group select {
    width: 100%;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #E2E8F0;
    font-family: inherit;
}

.form__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.form__button {
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form__button--primary {
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border: none;
    color: #1A3141;
    font-size: 20px;

}

.form__button--secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: #1A3141;
    font-size: 18px;
}

.form__privacy{
    font-size: 10px;
    text-align: center;
    color: #BFBFBF;
    margin-top: 20px;
}

/* Contacts */
.contacts {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    overflow: hidden;
}

.contacts-title{
    margin: 46px auto 56px;
    color: var(--primary-blue);
}

.contacts__container {
    display: flex;
    gap: 50px;
}

.contacts__info {
    flex: 1;
}

.contacts__label {
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    padding: 5px 20px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 28px;
}

.contacts__card {
    background: var(--primary-blue);
    border-radius: 40px;
    padding: 30px;
    color: var(--white);
    margin: 30px 0;
}

.contacts__item {
    margin-bottom: 20px;
}

.contacts__item:last-child{
    margin-bottom: 0;
}

.contacts__item-title {
    color: #EFDFC0;
    font-size: 16px;
    letter-spacing: 1px;

}

.contacts__item-number{
    text-decoration: underline;
    color: white
}

.contacts__parking {
    background: var(--gray-bg);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 18px;
}

.contacts__messenger {
    background: var(--primary-blue);
    border-radius: 40px;
    padding: 30px;
    margin-top: 30px;
}

.contacts__messenger-title{
    font-size: 15px;
    color: white;
}

.contacts__answer-time{
    color: white;
    font-size: 10px;
    opacity: 0.6;
}

.contacts__messenger-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.contacts__messenger-link--whatsapp { background: #25D366; }
.contacts__messenger-link--telegram { background: #0088cc; }
.contacts__messenger-link {
    padding: 8px 20px;
    border-radius: 40px;
    color: var(--white);
    text-decoration: none;
}

.contacts__media {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.contacts__map {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
}

.contacts__map iframe,
.contacts__map .dg-widget-link,
.contacts__map .dg-widget-link a {
    width: 100% !important;
    max-width: 100%;
}

.contacts__map script + script + div,
.contacts__map div[style] {
    width: 100% !important;
    max-width: 100%;
}

.contacts__building {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
}

.contacts__building img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Callback */
.callback {
    background: url(../img/callback_bg.svg) center/cover no-repeat;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.callback__card {
    display: flex;
    align-items: stretch;
    position: relative;
}

.callback__content {
    width: 50%;
    padding: 60px 0 60px 50px;
    position: relative;
    z-index: 2;
}

.callback__content h2 {
    text-align: left;
    font-size: 35px;
    font-weight: 700;
    color: #294163;
    margin: 0 0 50px;
}

.callback__description {
    margin-bottom: 30px;
    font-size: 18px;
}

.callback__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* или center, если нужно центрировать */
    max-width: 400px; /* ограничиваем ширину всей формы */
    width: 100%;
}

.callback__input {
    width: 100%;
    padding: 15px 22px;
    border-radius: 30px;
    border: 1px solid #E2E8F0;
    margin-bottom: 20px;
    font-size: 16px; /* для удобства ввода на мобильных */
    transition: border-color 0.3s ease;
}

.callback__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 146, 27, 0.1);
}

.callback__checkbox {
    display: flex;
    align-items: flex-start; /* меняем с center на flex-start для многострочного текста */
    gap: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
}

.callback__checkbox-input {
    flex-shrink: 0; /* чтобы чекбокс не сжимался */
    margin-top: 2px; /* небольшой отступ сверху для выравнивания с текстом */
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.callback__checkbox-text {
    line-height: 1.4;
    color: #666;
}

.callback__checkbox-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.callback__checkbox-text a:hover {
    opacity: 0.8;
}

.callback__form button {
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.callback__image {
    width: 45%;
    display: flex;
    align-items: flex-end;
}

.callback__image img {
    width: 100%;
    display: block;
}

/* Footer */
.footer {
    max-width: 80%;
    margin: 30px auto 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 15px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo img {
    max-width: 120px;
    height: auto;
}

.footer__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer__phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(215, 191, 120, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    transition: border-color 0.3s ease;
}

.footer__phone-container:hover {
    border-color: rgba(215, 191, 120, 0.6);
}

.footer__phone-container img {
    width: 24px;
    height: 24px;
}

.footer__phone__number {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #D7BF78;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer__phone__number:hover {
    color: var(--gold-dark);
}

.footer__callback-btn {
    margin-top: 12px;
    background: linear-gradient(163deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border: none;
    padding: 10px 35px;
    border-radius: 40px;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.footer__callback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 146, 27, 0.3);
}

.footer__callback-btn:active {
    transform: translateY(0);
}

.footer__license {
    background: var(--gray-bg);
    padding: 12px 16px;
    border-radius: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
}

.footer__policy {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.footer__policy a {
    display: inline-block;
    color: var(--gold);
    margin-top: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer__policy a:hover {
    opacity: 0.8;
    text-decoration: underline;
}


/* ========== МЕДИАЗАПРОСЫ ========== */

/* Базовые стили — для экранов больше 1280px */
/* (все основные стили остаются без изменений) */

@media (max-width: 1421px) {
    /* Offers */
    .offers {
        padding: 32px;
    }

    .offers__card--small{
        padding: 39px 24px;
        max-width: 230px;
    }

}

/* 1280px */
@media (max-width: 1280px) {
    /* Header */
    .title{
        font-size: 30px;
        margin: 20px auto 16px;
    }

    .header {
        padding: 5px 30px;
    }

    .header__logo img {
        height: 50px;
        width: auto;
    }

    .header__icon{
        height: 50px;
    }

    .header__text{
        font-size: 12px;
    }

    .header__phone img{
        height: 35px;
    }

    .header__button {
        font-size: 22px;
        padding: 8px 24px;
    }

    .header__button {
        font-size: 18px;
        padding: 8px 18px;
    }

    .hero{
        padding-top: 10px;
    }

    .hero__title{
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero__list-icon {
        width: 40px;
    }

    .hero__list-text{
        font-size: 16px;
    }

    /* Advantages */
    .advantages-grid {
        transform: scale(0.9);
        transform-origin: center center;
    }

    /* GRID */
    .advantages-grid {
        margin-left: 60px;
    }

    /* CARD */
    .adv-card__img{
        width: 80%;
        height: 80%;
    }

    /* POSITIONING */
    .card-exp {
        left: 150px;
    }

    .card-operations {
        right: 123px;
        bottom: 15px;
    }

    .card-guarantee {
        bottom: 114px;
        left: 75px;
    }

    .card-standards {
        bottom: 112px;
        left: -78px;
    }

    .card-dentures {
        margin-top: -440px;
    }

    .card-doctors {
        bottom: 122px;
        right: 160px;
    }

    .process {
        padding: 20px;
    }

    .process__grid {
        gap: 30px;
    }

    .process__step {
        gap: 20px;
    }

    .process__step__icon{
        width: 90%;
    }

    .process__step-text {
        font-size: 16px;
    }

    .process__image img {
        width: 70%;
    }


    .reviews {
        padding: 20px;
    }

    .reviews__grid {
        gap: 20px;
    }

    .reviews__title{
        margin-bottom: 40px;
    }

    .reviews__card {
        border-radius: 51px;
        padding: 30px 20px;
        max-width: 30%;
    }

    .reviews__avatar {
        width: 45%;
        margin-bottom: 30px;
    }

    .reviews__text-container {
        padding: 20px;
    }

    .reviews__stars {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .reviews__text {
        font-size: 12px;
    }

    /* Offers */

    .offers {
        padding: 32px;
    }

    .offers__grid {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .offers__card--large {
        background: #B9921B;
        padding: 30px;
        color: var(--white);
        max-width: 610px;
    }

    .offers__card-top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .offers__card-title {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .offers__brand{
        font-size: 12px;
        gap: 5px;
    }

    .offers__badges {
        display: flex;
        gap: 10px;
    }

    .offers__badge {
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 10px;
    }

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

    .offers__price {
        font-size: 28px;
    }

    .offers__card--small{
        padding: 39px 24px;
        max-width: 230px;
    }

    .offers__card-content{
        height: 50%;
    }

    .offers__small-title {
        font-size: 16px;
        min-height: 48px;
    }

    .offers__image{
        max-width: 200px;
    }

    .offers__image img{
        max-width: 200px;
    }

    .offers__time {
        font-size: 14px
    }

    .offers__tag {
        padding: 5px 5px;
        font-size: 11px;
    }

    .faq__question {
        padding: 15px;
    }

    .lead-magnet__offer {
        padding: 40px;
    }

    .lead-magnet__badge {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .lead-magnet__title {
        font-size: 25px;
        margin-bottom: 40px;
    }

    .lead-magnet__title span {
        color: #E7D9B9;
    }

    .lead-magnet__saving{
        font-size: 12px;
    }

    .lead-magnet__highlight {
        font-size: 14px;
        border-left: 3px solid var(--gold);
        padding: 10px;
        margin: 15px 0;
    }

    .lead-magnet__timer {
        padding: 28px;
        margin: 35px 0;
    }

    .lead-magnet__timer-label{
        font-size: 14px;
        color: #FFE79F;
    }

    .lead-magnet__timer-digits {
        gap: 13px;
    }

    .lead-magnet__timer-block {
        background: rgba(0,0,0,0.3);
        padding: 8px 10px 10px;
        border-radius: 16px;
    }

    .lead-magnet__timer-note{
        font-size: 12px;
    }

    .lead-magnet__timer-number {
        font-size: 26px;
    }

    .lead-magnet__timer-unit{
        font-size: 12px;
    }

    .lead-magnet__footer{
        font-size: 10px;
    }

    .lead-magnet__form {
        padding: 40px;
    }

    .lead-magnet__form-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .lead-magnet__form-sub{
        font-size: 15px;
    }

    .form__group {
        margin-bottom: 20px;
    }

    .form__group label {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .form__group input, .form__group select {
        padding: 10px 16px;
    }

    .form__buttons {
        gap: 18px;
        margin-top: 35px;
    }

    .form__button {
        padding: 10px;
    }

    .form__button--primary {
        font-size: 18px;
    }

    .form__button--secondary {
        font-size: 16px;
    }

    .form__privacy{
        font-size: 10px;
        margin-top: 20px;
    }

    .contacts-title{
        margin: 36px auto 46px;
        font-size: 28px;
    }

    .contacts__label {
        padding: 5px 15px;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .contacts__item {
        margin-bottom: 15px;
    }

    .contacts__item-title, p {
        font-size: 14px;
    }

    .contacts__parking {
        padding: 8px 15px;
        font-size: 16px;
    }

    .contacts__messenger {
        margin-top: 25px;
    }

    .contacts__messenger-title{
        font-size: 14px;
    }

    .contacts__messenger-link {
        padding: 6px 15px;
        border-radius: 40px;
        color: var(--white);
        text-decoration: none;
        font-size: 14px;
    }

    .contacts__building {
        border-radius: 0px;
    }

    /* Callback */

    .callback__content {
        padding: 50px 0 50px 40px;
    }

    .callback__content h2 {
        font-size: 26px;
        margin: 0 0 30px;
    }

    .callback__description {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .callback__form {
        width: 90%;
    }

    .callback__input {
        width: 80%;
        padding: 8px 15px;
        border-radius: 10px;
    }

    .callback__form button {
        padding: 10px 20px;
    }

    .callback__image {
        width: 45%;
        display: flex;
        align-items: flex-end;
    }

    .callback__image img {
        width: 100%;
        display: block;
    }


    .footer {
        margin: 30px auto 10px;
        padding: 10px 25px;
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 15px;
    }

    .footer__logo img {
        max-width: 110px;
    }

    .footer__phone-container {
        gap: 6px;
        padding: 4px 12px;
    }

    .footer__phone-container img {
        width: 22px;
        height: 22px;
    }

    .footer__phone__number {
        font-size: 14px;
    }

    .footer__callback-btn {
        padding: 6px 26px;
        font-size: 14px;
    }

    .footer__license {
        font-size: 12px;
    }

}

/* 1024px */
@media (max-width: 1024px) {
    /* Header */
    .adapt{
        max-width: 90%;
    }

    .header {
        padding: 5px 30px;
    }

    .header__time{
        display: none;
    }

    /* Hero */

    section{
        margin-bottom: 30px;
    }

    .adapt{
        border-radius: var(--border-radius-sm);
    }

    .title {
        font-size: 20px;
        margin: 20px auto 16px;
    }

    .hero {
        padding-top: 10px;
        margin-bottom: 30px;
    }

    .hero__row{
        gap: 20px;
    }

    .hero__title{
        font-size: 20px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero__list-icon {
        width: 30px;
    }

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

    .cta__button{
        font-size: 14px;
    }


    /*Advantages*/
    .advantages{
        max-width: 90%;
        margin-bottom: 30px;
    }

    .advantages-grid {
        margin: 0;
        grid-template-rows: 150px 150px 50px;
        grid-template-columns: 150px 150px 150px 150px 150px;
    }

    .adv-card__img{
        width: 70%;
        height: 70%;
    }

    .card-exp{
        left:40px;
    }

    .card-operations {
        left: -18px;
        bottom: 0;
    }

    .card-guarantee{
        bottom: 0;
        left: 20px;
    }

    .card-standards {
        bottom: 0;
        left: -20px;
    }

    .card-dentures {
        margin-top: 0;
        bottom: 50px;
    }

    .card-doctors {
        bottom: -25px;
        right: 50px;
    }

    .card-exp, .card-premium, .card-operations {
        top: 50px;
    }

    .card-guarantee, .card-standards {
        top: 20px;
    }

    /* Process */
    .process {
        padding: 30px;
    }

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

    .process__step img {
        width: 45px;
    }

    .process__image img {
        max-width: 50%;
    }

    /* Reviews */
    .reviews {
        padding: 20px;
    }

    .reviews__grid {
        margin-top: 20px;
    }

    .reviews__card {
        padding: 15px;
        max-width: 45%;
    }

    .reviews__avatar {
        width: 40%;
        margin-bottom: 35px;
    }

    .reviews__text-container {
        padding: 25px;
    }

    .reviews__text {
        font-size: 10px;
    }

    .reviews__stars {
        font-size: 12px;
        margin-bottom: 10px;
    }

    /* Offers */

    .offers {
        padding: 28px;
    }

    .offers__grid {
        gap: 20px;
    }

    .offers__card--large {
        padding: 25px;
    }

    .offers__card-top {
        margin-bottom: 10px;
    }

    .offers__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .offers__badges {
        gap: 5px;
    }

    .offers__badge {
        padding: 3px 10px;
    }

    .offers__image img{
        max-width: 160px;
        margin-top: 10px;
    }

    .offers__price {
        font-size: 20px;
    }

    .offers__card--small{
        padding: 20px 12px;
        max-width: 230px;
    }

    .offers__card-content{
        height: 50%;
    }

    .offers__small-title {
        font-size: 15px;
        min-height: 48px;
    }

    .offers__time {
        font-size: 12px
    }

    .offers__tag {
        padding: 3px 3px;
        font-size: 10px;
    }

    /*lead*/

    .lead-magnet__offer {
        padding: 35px;
    }

    .lead-magnet__badge {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .lead-magnet__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .lead-magnet__saving{
        font-size: 10px;
    }

    .lead-magnet__highlight {
        font-size: 12px;
    }

    .lead-magnet__timer {
        padding: 20px;
        margin: 35px 0;
    }

    .lead-magnet__timer-label{
        font-size: 12px;
    }

    .lead-magnet__timer-digits {
        gap: 12px;
    }

    .lead-magnet__timer-block {
        padding: 8px 10px 10px;
    }

    .lead-magnet__timer-note{
        font-size: 10px;
    }

    .lead-magnet__timer-number {
        font-size: 22px;
    }

    .lead-magnet__timer-unit{
        font-size: 10px;
    }

    .lead-magnet__footer{
        font-size: 9px;
    }

    .lead-magnet__form {
        padding: 30px;
    }

    .lead-magnet__form-title {
        font-size: 20px;
    }

    .lead-magnet__form-sub{
        font-size: 12px;
    }

    .form__group {
        margin-bottom: 15px;
    }

    .form__group input, .form__group select {
        padding: 6px 12px;
    }

    .form__buttons {
        gap: 14px;
        margin-top: 20px;
    }

    .form__button {
        padding: 5px;
    }

    .form__button--primary {
        font-size: 16px;
    }

    .form__button--secondary {
        font-size: 14px;
    }

    .form__privacy{
        font-size: 10px;
        margin-top: 15px;
    }

    /*FAQ*/

    .faq{
        padding: 30px;
    }

    .faq__question {
        padding: 10px;
        font-size: 16px;
    }

    /* Contacts */

    .contacts{
        padding: 40px;
    }

    .contacts-title{
        margin: 26px auto 25px;
        font-size: 20px;
    }

    .contacts__container{
        gap: 30px;
        height: 500px;
    }

    .contacts__label {
        padding: 5px 15px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .contacts__card {
        padding: 15px;
        margin: 15px 0;
    }

    .contacts__item {
        margin-bottom: 15px;
    }

    .contacts__item-title, p {
        font-size: 12px;
    }

    .contacts__item-number{
        font-size: 12px;
    }

    .contacts__parking {
        padding: 8px 15px;
        font-size: 12px;
    }

    .contacts__messenger {
        padding: 20px;
        margin-top: 15px;
    }

    .contacts__messenger-title{
        font-size: 12px;
    }

    .contacts__messenger-link {
        padding: 5px 12px;
        font-size: 12px;
    }

    .contacts__messenger-buttons{
        margin: 10px 0;
    }

    .contacts__map{
        height: 50%;
    }

    /* Callback */

    .callback__content {
        padding: 40px 0 40px 30px;
    }

    .callback__content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .callback__description {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .callback__input {
        padding: 4px 12px;
    }

    .callback__form button {
        padding: 8px 15px;
    }

    .callback__image {
        width: 40%;
    }

    /*FOOTER*/

    .footer__logo img {
        max-width: 100px;
    }

    .footer__phone__number {
        font-size: 12px;
    }

    .footer__callback-btn {
        padding: 6px 26px;
        font-size: 12px;
    }

    .footer__license {
        font-size: 10px;
    }

    .footer__policy{
        font-size: 10px;
    }
}

/* 800px */
@media (max-width: 800px) {

    .title {
        font-size: 16px;
    }

    /* Header */
    .adapt{
        max-width: 95%;
        border-radius: 20px;
    }

    .header{
        padding: 5px 15px;
    }

    .header__logo img {
        height: 40px;
    }

    .header__icon{
        height: 40px;
    }

    .header__text{
        font-size: 10px;
    }

    .header__phone img{
        height: 30px;
    }

    .header__button {
        font-size: 14px;
        padding: 8px 18px;
    }

    /* Hero */

    .hero {
        padding: 10px 0 0 20px;
    }

    .hero__row{
        gap: 15px;
    }

    .hero__subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero__list {
        list-style: none;
        padding: 10px 20px;
    }

    .hero__list-icon {
        width: 20px;
    }

    .hero__list-text{
        font-size: 12px;
    }

    .cta__button{
        font-size: 14px;
        padding: 10px 20px;
    }

    .cta__buttons {
        gap: 10px;
    }


    /*Advantages*/

    .advantages-grid {
        margin: 0;
        margin-right: 40px;
        grid-template-rows: 130px 130px 50px;
        grid-template-columns: repeat(5, 120px);
    }

    .adv-card__img{
        width: 55%;
        height: 55%;
    }

    /* Process */
    .process {
        padding: 25px;
    }

    .process__step-text {
        font-size: 12px;
    }

    .process__step img {
        width: 35px;
    }

    .process__image img {
        max-width: 40%;
    }

    /* Reviews */
    .reviews {
        padding: 20px;
    }

    .reviews__avatar {
        width: 40%;
        margin-bottom: 20px;
    }

    /* Offers */

    .offers {
        padding: 20px;
    }

    .offers__card--large {
        padding: 20px;
    }

    .offers__card-title {
        font-size: 16px;
    }

    .offers__image img{
        max-width: 130px;
    }

    .offers__price {
        font-size: 16px;
    }

    .offers__card-bottom {
        gap: 10px;
    }

    .offers__card--small{
        padding: 15px 10px;
    }

    .offers__small-title {
        font-size: 14px;
        min-height: 42px;
    }

    .offers__time {
        font-size: 10px
    }

    .offers__tag {
        padding: 3px 3px;
        font-size: 8px;
    }

    /*FAQ*/

    .faq{
        padding: 20px;
    }

    .faq__question {
        padding: 10px;
        font-size: 14px;
    }

    /*lead*/

    .lead-magnet__offer {
        padding: 30px;
    }

    .lead-magnet__badge {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .lead-magnet__title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .lead-magnet__saving{
        font-size: 9px;
    }

    .lead-magnet__highlight {
        font-size: 11px;
    }

    .lead-magnet__timer {
        padding: 15px 10px;
        margin: 20px 0;
    }

    .lead-magnet__timer-label{
        font-size: 10px;
    }

    .lead-magnet__timer-digits {
        gap: 8px;
    }

    .lead-magnet__timer-block {
        padding: 10px 16px 12px;
    }

    .lead-magnet__timer-note{
        font-size: 10px;
    }

    .lead-magnet__timer-number {
        font-size: 24px;
    }

    .lead-magnet__timer-unit{
        font-size: 10px;
    }

    .lead-magnet__form {
        padding: 30px;
    }

    .lead-magnet__form-title {
        font-size: 18px;
    }

    /* Contacts */

    .contacts-title{
        margin: 26px auto 25px;
        font-size: 22px;
    }

    .contacts__container{
        flex-direction: column;
        min-height: 1200px;
    }

    .contacts__card {
        padding: 25px 25px 25px 45px;
    }

    .contacts__item {
        margin-bottom: 15px;
    }

    .contacts__item-title, p {
        font-size: 16px;
    }

    .contacts__item-number{
        font-size: 16px;
    }

    .contacts__parking {
        display: none;
    }

    .contacts__messenger {
        padding: 25px 25px 25px 45px;
    }

    .contacts__messenger-title{
        font-size: 18px;
    }

    .contacts__messenger-link {
        font-size: 16px;
    }

    /* Callback */

    .callback__image {
        width: 50%;
    }

    /*FOOTER*/

    .footer__logo img {
        max-width: 90px;
    }

    .footer__phone__number {
        font-size: 10px;
    }

    .footer__callback-btn {
        padding: 6px 26px;
        font-size: 10px;
    }

    .footer__license {
        font-size: 9px;
    }

    .footer__policy{
        font-size: 9px;
    }

    .footer__phone-container {
        gap: 6px;
        padding: 2px 12px;
    }
}

/* 576px */
@media (max-width: 576px) {

    .title {
        font-size: 14px;
        margin-top: 10px;
    }

    .header{
        padding: 5px 15px;
    }

    .header__logo img {
        height: 30px;
    }

    .header__geo{
        display: none;
    }

    .header__icon{
        height: 30px;
    }

    /* Hero */

    .hero {
        padding: 10px 0 0 20px;
    }

    .hero__row{
        gap: 10px;
    }

    .hero__subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .hero__list {
        list-style: none;
        padding: 8px 16px;
        border-radius: 20px;
    }

    .hero__list-icon {
        width: 15px;
    }

    .hero__list-text{
        font-size: 10px;
    }

    .hero__list-item{
        margin-bottom: 8px;
    }

    .cta__button{
        font-size: 12px;
        padding: 7px 14px;
    }

    .cta__buttons {
        gap: 10px;
    }


    /*Advantages*/

    .advantages{
        height: 240px;
    }

    .advantages-grid {
        margin-right: 10px;
        grid-template-rows: 110px 110px 20px;
        grid-template-columns: repeat(5, 88px);
    }

    .adv-card__img{
        width: 35%;
        height: 35%;
    }

    .card-doctors{
        left: -35px;
        top: 45px;
    }

    /* Process */
    .process {
        padding: 15px;
    }

    .process__grid {
        gap: 15px;
    }

    .process__step-text {
        font-size: 10px;
    }

    .process__step{
        gap: 10px;
    }

    .process__image img {
        max-width: 45%;
    }

    /* Reviews */
    .reviews {
        padding: 20px;
    }

    .reviews__title{
        font-size: 18px;
    }

    .reviews__avatar {
        width: 40%;
        margin-bottom: 20px;
    }

    .reviews__card{
        max-width: 90%;
        padding: 25px;
    }

    /* Offers */
    /*    
        .offers {
            padding: 20px;
        }
    
        .offers__grid{
            display: flex;
            flex-direction: column;
        }
    
        .offers__card--large {
            padding: 20px;
        }
    
        .offers__card-title {
            font-size: 16px;
        }
    
        .offers__image img{
            max-width: 130px;
        }
    
        .offers__price {
            font-size: 16px;
        }
    
        .offers__card-bottom {
            gap: 10px;
        }
    
        .offers__card--small{
            padding: 15px 10px;
        }
    
        .offers__small-title {
            font-size: 14px;
            min-height: 42px;
        }
    
        .offers__time {
            font-size: 10px
        }
    
        .offers__tag {
            padding: 3px 3px;
            font-size: 8px;
        } */

    /*FAQ*/

    .faq{
        padding: 20px;
    }

    .faq__question {
        padding: 8px;
        font-size: 12px;
    }

    /*lead*/

    .lead-magnet__offer {
        padding: 15px;
    }

    .lead-magnet__badge {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .lead-magnet__title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .lead-magnet__saving{
        font-size: 8px;
    }

    .lead-magnet__highlight {
        font-size: 10px;
    }

    .lead-magnet__timer {
        padding: 15px 10px;
        margin: 10px 0;
    }

    .lead-magnet__timer-label{
        font-size: 10px;
    }

    .lead-magnet__timer-digits {
        gap: 8px;
    }

    .lead-magnet__timer-block {
        padding: 8px 12px 10px;
    }

    .lead-magnet__timer-note{
        font-size: 9px;
    }

    .lead-magnet__timer-number {
        font-size: 20px;
    }

    .lead-magnet__timer-unit{
        font-size: 9px;
    }


    .form__group {
        margin-bottom: 10px;
    }

    .form__group input, .form__group select {
        padding: 3px 6px;
        font-size: 12px;
    }

    .form__buttons {
        gap: 12px;
        margin-top: 20px;
    }

    .form__button {
        padding: 5px;
    }

    .form__button--primary {
        font-size: 12px;
    }

    .form__button--secondary {
        font-size: 10px;
    }

    .form__privacy{
        font-size: 8px;
        margin-top: 10px;
    }


    /* Callback */

    .callback__content {
        padding: 20px 0 20px 20px;
    }

    .callback__content h2 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .callback__description {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .callback__form {
        width: 90%;
    }

    .callback__input {
        width: 80%;
        padding: 3px 6px;
        border-radius: 10px;
        font-size: 12px;
    }

    .callback__form button {
        padding: 5px 10px;
    }

    .callback__checkbox-text{
        font-size: 10px;
        line-height: 1.2;
    }

    /*FOOTER*/

    .footer{
        padding: 4px 10px;
        gap: 8px;
    }

    .footer__logo img {
        max-width: 70px;
    }

    .footer__phone__number {
        font-size: 8px;
    }

    .footer__phone-container img{
        width: 15px;
        height: 20px;
    }

    .footer__phone-container{
        padding: 2px 6px;
        gap: 4px;
    }

    .footer__callback-btn {
        padding: 5px 10px;
        font-size: 9px;
        margin-top: 6px;
    }

    .footer__license {
        padding: 6px 8px;
        border-radius: 10px;
    }

    .footer__policy{
        font-size: 8px;
        line-height: 1.2;
    }
}