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

body {
    font-family: 'Manrope', sans-serif;
    background: #FDF8F0;
    color: #2C2C2C;
    line-height: 1.45;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== ШАПКА ===== */
.header {
    padding: 24px 0;
    background: rgba(253, 248, 240, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2A9D8F, #D96C4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo p {
    font-size: 0.7rem;
    color: #7A6A5A;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2C2C2C;
    transition: 0.2s;
}
.nav-links a:hover {
    color: #D96C4A;
}
.header-phone a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C2C2C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFFD0;
    padding: 8px 20px;
    border-radius: 60px;
    transition: 0.2s;
}
.header-phone a:hover {
    background: #D96C4A;
    color: white;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    gap: 16px;
    border-radius: 28px;
    margin-top: 16px;
}
@media (max-width: 820px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .header-flex { position: relative; }
    .mobile-nav.open { display: flex; }
}

/* ===== ГЕРОЙ (минимализм) ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2A9D8F, #D96C4A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 900px;
    margin: 0 auto 20px;
}
.hero p {
    font-size: 1.2rem;
    color: #5A4A3A;
    max-width: 700px;
    margin: 0 auto 32px;
}
.hero-badge {
    display: inline-flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
}
.badge-item {
    background: white;
    padding: 8px 24px;
    border-radius: 60px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.btn {
    display: inline-block;
    background: #D96C4A;
    color: white;
    padding: 14px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid #D96C4A;
    color: #D96C4A;
    margin-left: 16px;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -10px #D96C4A80;
}

/* ===== ПРЕИМУЩЕСТВА (две большие карточки) ===== */
.features-duo {
    padding: 60px 0;
}
.feature-block {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    border-radius: 48px;
    padding: 48px;
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.05);
}
.feature-block:nth-child(even) {
    flex-direction: row-reverse;
}
.feature-icon {
    font-size: 3.5rem;
    color: #2A9D8F;
    min-width: 100px;
    text-align: center;
}
.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}
@media (max-width: 780px) {
    .feature-block { flex-direction: column !important; text-align: center; padding: 32px; }
    .feature-text h3 { font-size: 1.5rem; }
}

/* ===== ЦЕНЫ (карточки) ===== */
.pricing-cards {
    background: #FFFFFF;
    padding: 70px 0;
    border-radius: 64px 64px 0 0;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
}
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.price-card-new {
    background: #FDF8F0;
    border-radius: 40px;
    padding: 32px 28px;
    flex: 1;
    min-width: 260px;
    transition: 0.2s;
    border: 1px solid #F0E4D8;
}
.price-card-new h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #D96C4A;
    margin: 20px 0;
}
.price-card-new ul {
    list-style: none;
    margin: 20px 0;
}
.price-card-new li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-card-new li i {
    color: #2A9D8F;
    width: 20px;
}

/* ===== ВРАЧИ (горизонтальный скролл с аватарками) ===== */
.doctors-scroll-new {
    padding: 70px 0;
    background: #FFFFFF;
}
.scroll-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding-bottom: 16px;
}
.doctor-avatar {
    min-width: 160px;
    text-align: center;
}
.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #D96C4A;
}
.doctor-avatar h4 { font-size: 1.1rem; margin-bottom: 4px; }

/* ===== ОТЗЫВЫ (большие цитаты) ===== */
.reviews-big {
    background: #2A9D8F10;
    padding: 80px 0;
}
.review-quote {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    padding: 32px;
    background: white;
    border-radius: 48px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.review-quote .stars {
    color: #F4B942;
    margin-bottom: 16px;
}

/* ===== ФОРМА ===== */
.form-soft {
    padding: 70px 0;
    text-align: center;
    background: #FDF8F0;
}
.inline-group {
    max-width: 560px;
    margin: 28px auto 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.inline-group input {
    flex: 2;
    padding: 14px 20px;
    border: 1px solid #E0D0C0;
    border-radius: 60px;
    background: white;
    font-size: 1rem;
}

/* ===== КАРТА ===== */
.map-soft {
    padding: 0 0 60px;
}
.map-rounded {
    border-radius: 48px;
    overflow: hidden;
    height: 360px;
}

/* ===== ФУТЕР ===== */
footer {
    background: #2C2C2C;
    color: #C0B0A0;
    padding: 40px 0;
    text-align: center;
}

/* ===== ПЛАВАЮЩИЕ КНОПКИ ===== */
.floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}
.float-item {
    width: 52px;
    height: 52px;
    border-radius: 60px;
    background: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: 0.2s;
}
.float-item.call { background: #D96C4A; color: white; }
.float-item.tg { background: #27A6E5; color: white; }
.float-item.wa { background: #25D366; color: white; }
.float-item:hover { transform: scale(1.08); }

@media (max-width: 640px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .float-item { width: 46px; height: 46px; font-size: 1.3rem; }
}

.footer__link {
    color: #C0B0A0;
}
.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 640px) {
.hero a {
   width: 100%;
    margin: 10px 0; 
}
}
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    font-family: inherit;
}

.form-notification button:hover {
    opacity: 0.8;
}

.mobile-nav a {
    color: #2A9D8F;
}