        /* ========== HOME-SPECIFIC PREMIUM STYLES ========== */

        /* 15px Border Radius System for Cards, Inputs, and Section Containers */
        .stat-card,
        .service-card,
        .why-card,
        .doctor-card-home,
        .promo-card,
        .clinic-home-card,
        .cta-form-block,
        .cta-form-card,
        .home-form-input,
        .main-photo-wrapper,
        .clinic-card,
        .map-container,
        .dms-perk-card,
        .dms-insurers,
        .dms-tag,
        .service-icon,
        .why-icon,
        .dms-perk-icon {
            border-radius: 15px !important;
        }

        /* Exceptions: Global buttons and navigation tabs are pills */
        .btn-home-secondary,
        .clinic-tab,
        .promo-btn,
        .clinic-btn-call,
        .clinic-btn-map,
        .btn-action-main,
        .cta-label,
        .cta-perk-dot,
        .doctor-spec,
        .promo-tag {
            border-radius: 100px !important;
        }

        /* ========== HERO HOME IMAGE OVERLAPS FIX ========== */
        @media (min-width: 993px) {
            .hero-left {
                max-width: 510px; /* Restores elegant width for beautiful headline wrap */
            }

            .hero-center {
                left: 55.5%; /* Shifts the pointing girl even more to the right */
                top: -65px; /* Moves the girl even higher */
                height: 102%;
            }

            .hero-home .woman-image {
                transform: scale(0.85); /* как на проде seo.ai-res.ru — флекс-раскладка hero (см. stylenew.css блок hero-home 2026-06-22) */
                transform-origin: bottom center;
            }
        }

        /* ========== STATS ========== */
        .stats-section {
            padding: 0 0 80px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            background: white;
            padding: 36px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(11, 28, 59, 0.04);
            border: 1px solid rgba(11, 28, 59, 0.02);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(11, 28, 59, 0.08);
        }

        .stat-card.accent {
            background: var(--orange-gradient);
            box-shadow: 0 10px 30px rgba(255, 127, 34, 0.2);
            border: none;
        }

        .stat-card.accent .stat-number {
            color: white;
        }

        .stat-card.accent .stat-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .stat-number {
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-gray);
            line-height: 1.35;
        }

        /* ========== SERVICES ========== */
        .services-section {
            padding: 80px 0;
        }

        .section-label {
            display: block;
            color: var(--orange);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 42px;
            font-weight: 850;
            color: var(--dark-blue);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-title span {
            color: var(--orange);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 60px;
            max-width: 560px;
        }

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

        .service-card {
            background: white;
            padding: 36px 30px;
            box-shadow: 0 10px 30px rgba(11, 28, 59, 0.02);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(11, 28, 59, 0.03);
            min-height: 230px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(11, 28, 59, 0.06);
            border-color: rgba(59, 130, 246, 0.15);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(59, 130, 246, 0.12);
            box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(59, 130, 246, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            padding: 10px;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
            transform: scale(1.08) rotate(-3deg);
        }

        .service-card:hover .service-icon img {
            transform: scale(1.12);
        }

        .service-name {
            font-size: 19px;
            font-weight: 850;
            color: var(--dark-blue);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .service-price {
            font-size: 14px;
            color: var(--orange);
            font-weight: 750;
            margin-top: auto;
        }

        .service-arrow {
            position: absolute;
            top: 36px;
            right: 30px;
            width: 32px;
            height: 32px;
            background: var(--bg-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--text-gray);
        }

        .service-card:hover .service-arrow {
            background: var(--orange);
            color: white;
            transform: translateX(4px);
        }

        /* ========== NEW PREMIUM PRICE CARDS GRID ========== */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .price-card {
            background: white;
            padding: 24px;
            border-radius: 15px; /* 15px border-radius guidelines */
            box-shadow: 0 10px 30px rgba(11, 28, 59, 0.02);
            border: 1px solid rgba(11, 28, 59, 0.03);
            display: flex;
            gap: 24px;
            align-items: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(11, 28, 59, 0.08);
            border-color: rgba(59, 130, 246, 0.15);
        }

        .price-card-image {
            width: 130px;
            height: 130px;
            border-radius: 15px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
        }

        .price-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .price-card:hover .price-card-image img {
            transform: scale(1.08);
        }

        .price-card-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            height: 100%;
            justify-content: space-between;
        }

        .price-card-title {
            font-size: 19px;
            font-weight: 850;
            color: var(--dark-blue);
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }

        .price-card-title svg {
            color: var(--text-gray);
            opacity: 0.5;
            transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
        }

        .price-card:hover .price-card-title svg {
            transform: translateX(3px);
            color: var(--orange);
            opacity: 1;
        }

        .price-card-desc {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.45;
            margin: 0;
            font-weight: 500;
        }

        .price-card-price-block {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 4px;
        }

        .price-card-price {
            font-size: 21px;
            font-weight: 900;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
        }

        .price-card-badge {
            background: #ff7f22;
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: none;
            letter-spacing: normal;
            display: inline-block;
            line-height: 1;
        }

        .price-card-btn {
            background: var(--orange-gradient);
            color: white;
            border: none;
            font-size: 13px;
            font-weight: 750;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            margin-top: 6px;
            box-shadow: 0 4px 12px rgba(255, 113, 31, 0.15);
        }

        .price-card:hover .price-card-btn {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255, 113, 31, 0.3);
            filter: brightness(1.05);
        }

        /* Mobile adaptation */
        @media (max-width: 991px) {
            .price-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .price-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding: 20px;
            }

            .price-card-image {
                width: 100%;
                height: 180px;
            }
        }

        .services-action {
            display: flex;
            justify-content: center;
            margin-top: 48px;
        }

        .btn-more-prices {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            border: 2px solid var(--primary-blue);
            border-radius: 12px;
            color: var(--primary-blue);
            font-size: 15px;
            font-weight: 750;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05);
            background: transparent;
            cursor: pointer;
        }

        .btn-more-prices:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
        }

        .btn-more-prices:active {
            transform: translateY(-1px);
        }

        /* ========== WHY US REDESIGN ========== */
        .why-section {
            padding: 100px 0;
            position: relative;
        }

        .why-container-2col {
            display: grid;
            grid-template-columns: 1.1fr 1.2fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .why-visual-wrapper {
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 55px rgba(11, 28, 59, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.6);
            height: 540px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 15px;
        }

        .why-visual-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 70px rgba(11, 28, 59, 0.18);
        }

        .why-visual-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .why-visual-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 20px 40px rgba(11, 28, 59, 0.15);
            display: flex;
            align-items: center;
            gap: 16px;
            border-radius: 12px;
        }

        .why-badge-num {
            font-size: 38px;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            font-family: var(--font-main);
        }

        .why-badge-text {
            font-size: 14px;
            font-weight: 750;
            color: var(--dark-blue);
            line-height: 1.4;
        }

        .why-badge-text span {
            display: block;
            font-size: 12px;
            color: var(--text-gray);
            font-weight: 600;
            margin-top: 2px;
        }

        .why-cards-stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .why-card {
            background: white;
            padding: 20px 24px;
            box-shadow: 0 8px 24px rgba(11, 28, 59, 0.02);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(11, 28, 59, 0.03);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            border-radius: 15px;
        }

        .why-card:hover {
            transform: translateX(6px);
            box-shadow: 0 20px 45px rgba(11, 28, 59, 0.06);
            border-color: rgba(255, 127, 34, 0.15);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #fff5eb 0%, #ffdcc0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 127, 34, 0.12);
            box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(255, 127, 34, 0.04);
            color: var(--orange);
            flex-shrink: 0;
            transition: all 0.3s ease;
            margin-bottom: 0;
            border-radius: 12px;
        }

        .why-card:hover .why-icon {
            background: var(--orange-gradient);
            color: white;
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(255, 127, 34, 0.25);
            transform: scale(1.08) rotate(4deg);
        }

        .why-card-content {
            flex: 1;
        }

        .why-card-content h3 {
            font-size: 18px;
            font-weight: 850;
            color: var(--dark-blue);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .why-card-content p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ========== DOCTORS ========== */
        .doctors-section {
            padding: 80px 0;
        }

        .doctors-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

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

        .doctor-card-home {
            background: white;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(11, 28, 59, 0.04);
            display: grid;
            grid-template-columns: 240px 1fr;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(11, 28, 59, 0.02);
        }

        .doctor-card-home:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 60px rgba(11, 28, 59, 0.08);
            border-color: rgba(59, 130, 246, 0.1);
        }

        .doctor-photo {
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .doctor-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .doctor-card-home:hover .doctor-photo img {
            transform: scale(1.04);
        }

        .doctor-info {
            padding: 32px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .doctor-info-top {
            display: flex;
            flex-direction: column;
        }

        .doctor-spec {
            display: inline-block;
            background: #f0f7ff;
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 14px;
            margin-bottom: 12px;
            width: fit-content;
        }

        .doctor-name-home {
            font-size: 21px;
            font-weight: 850;
            color: var(--dark-blue);
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .doctor-exp {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 16px;
        }

        .doctor-exp strong {
            color: var(--dark-blue);
            font-weight: 700;
        }

        .doctor-quote-home {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.6;
            font-style: italic;
            background: #fef9f5;
            padding: 12px 16px;
            border-left: 3px solid var(--orange);
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            margin-bottom: 16px;
        }

        .doctor-btn-cta {
            align-self: center;
            margin-top: 8px;
            background: var(--orange-gradient);
            color: white;
            border: none;
            padding: 11px 24px;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 6px 15px rgba(255, 127, 34, 0.18);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 100px !important;
        }

        .doctor-btn-cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 20px rgba(255, 127, 34, 0.3);
        }

        .link-all-doctors {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            border-bottom: 1px dashed rgba(59, 130, 246, 0.4);
            padding-bottom: 2px;
            transition: all 0.2s;
        }

        .link-all-doctors:hover {
            border-color: var(--primary-blue);
            color: #2563eb;
        }

        /* ========== PROMOS ========== */
        .promos-section {
            padding: 80px 0;
        }

        .promos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .promo-card {
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 280px;
            border: 1px solid transparent;
            box-shadow: 0 10px 30px rgba(11, 28, 59, 0.02);
            transition: all 0.3s ease;
        }

        .promo-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 50px rgba(11, 28, 59, 0.08);
        }

        .promo-card.blue {
            background: linear-gradient(135deg, #0b1c3b, #1e355e);
            color: white;
        }

        .promo-card.orange {
            background: var(--orange-gradient);
            color: white;
        }

        .promo-card.light {
            background: white;
            color: var(--dark-blue);
            border-color: rgba(11, 28, 59, 0.05);
            box-shadow: 0 10px 30px rgba(11, 28, 59, 0.05);
        }

        .promo-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 12px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .promo-card.blue .promo-tag {
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.9);
        }

        .promo-card.orange .promo-tag {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .promo-card.light .promo-tag {
            background: #ffecd9;
            color: var(--orange);
        }

        .promo-title {
            font-size: 24px;
            font-weight: 850;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .promo-desc {
            font-size: 14px;
            opacity: 0.85;
            line-height: 1.6;
            flex: 1;
        }

        .promo-price {
            margin-top: 24px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: baseline;
        }

        .promo-old-price {
            text-decoration: line-through;
            opacity: 0.6;
            margin-right: 8px;
        }

        .promo-new-price {
            font-size: 22px;
            font-weight: 900;
        }

        .promo-card.blue .promo-new-price { color: #7dd3fc; }
        .promo-card.orange .promo-new-price { color: white; }
        .promo-card.light .promo-new-price { color: var(--orange); }

        .promo-btn {
            margin-top: 24px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            width: fit-content;
        }

        .promo-card.blue .promo-btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .promo-card.blue .promo-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .promo-card.orange .promo-btn {
            background: white;
            color: var(--orange);
        }

        .promo-card.orange .promo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .promo-card.light .promo-btn {
            background: var(--orange-gradient);
            color: white;
        }

        .promo-card.light .promo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(255,127,34,0.2);
        }

        .promo-deco {
            position: absolute;
            right: -30px;
            bottom: -30px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            opacity: 0.08;
        }

        .promo-card.blue .promo-deco { background: white; }
        .promo-card.orange .promo-deco { background: white; }
        .promo-card.light .promo-deco { background: var(--orange); opacity: 0.06; }

        /* ========== CLINICS MAP (interactive loader placeholder) ========== */
        .clinics-section {
            padding: 80px 0;
        }

        .clinics-header {
            margin-bottom: 40px;
        }

        .clinics-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .clinic-tab {
            padding: 12px 24px;
            border: 2px solid rgba(11,28,59,0.15);
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-blue);
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
        }

        .clinic-tab:hover {
            border-color: var(--dark-blue);
            background: rgba(11,28,59,0.04);
        }

        .clinic-tab.active {
            background: var(--dark-blue);
            color: #fff;
            border-color: var(--dark-blue);
        }

        .clinic-layout {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 32px;
            align-items: start;
        }

        .clinic-gallery {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .main-photo-wrapper {
            position: relative;
            overflow: hidden;
            height: 380px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .main-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s ease;
        }

        .gallery-nav {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 8px;
        }

        .gallery-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--dark-blue);
            transition: all 0.2s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .gallery-btn:hover {
            background: #fff;
            transform: scale(1.05);
        }

        .thumbnails {
            display: flex;
            gap: 12px;
        }

        .thumb {
            width: 90px;
            height: 64px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: border-color 0.2s ease;
            flex-shrink: 0;
        }

        .thumb.active {
            border-color: var(--orange);
        }

        .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .clinic-card {
            background: #fff;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            box-shadow: 0 4px 40px rgba(11,28,59,0.06);
            border: 1px solid rgba(11,28,59,0.02);
        }

        .card-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 8px;
        }

        .clinic-address {
            font-size: 20px;
            font-weight: 850;
            color: var(--dark-blue);
            line-height: 1.35;
        }

        .map-container {
            height: 200px;
            overflow: hidden;
        }

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

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .hours-row .label {
            color: var(--text-gray);
            font-weight: 500;
        }

        .hours-row .time {
            font-weight: 700;
            color: var(--dark-blue);
        }

        .clinic-actions-row {
            display: flex;
            gap: 12px;
        }

        .btn-action-main {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 16px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
        }

        .btn-action-main.call {
            background: var(--orange);
            color: #fff;
        }

        .btn-action-main.call:hover {
            background: #e06610;
            transform: translateY(-2px);
        }

        .btn-action-main.vk {
            background: rgba(11,28,59,0.06);
            color: var(--dark-blue);
        }

        .btn-action-main.vk:hover {
            background: rgba(11,28,59,0.1);
            transform: translateY(-2px);
        }

        /* ========== DMS SECTION ========== */
        .dms-section {
            padding: 80px 0;
            position: relative;
        }

        .dms-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .dms-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59,130,246,0.1);
            color: #3b82f6;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .dms-title {
            font-size: 42px;
            font-weight: 900;
            color: var(--dark-blue);
            line-height: 1.2;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }

        .dms-title span {
            color: var(--orange);
        }

        .dms-sub {
            font-size: 17px;
            line-height: 1.65;
            color: var(--text-gray);
            max-width: 620px;
            margin: 0 auto;
        }

        .dms-perks-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 56px;
        }

        .dms-perk-card {
            background: #fff;
            padding: 30px 24px;
            box-shadow: 0 10px 30px rgba(11,28,59,0.04);
            border: 1px solid rgba(11,28,59,0.02);
            transition: all 0.25s ease;
        }

        .dms-perk-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(11,28,59,0.08);
        }

        .dms-perk-icon {
            width: 52px;
            height: 52px;
            background: rgba(59,130,246,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: var(--primary-blue);
        }

        .dms-perk-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .dms-perk-desc {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.55;
        }

        .dms-insurers {
            background: #fff;
            padding: 40px 44px;
            box-shadow: 0 10px 30px rgba(11,28,59,0.04);
            border: 1px solid rgba(11,28,59,0.02);
            margin-bottom: 44px;
        }

        .dms-insurers-title {
            font-size: 28px;
            font-weight: 850;
            color: var(--dark-blue);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }

        @media (max-width: 600px) {
            .dms-insurers-title {
                font-size: 22px;
            }
        }

        .dms-logos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-top: 15px;
        }

        .dms-logo-card {
            background: #ffffff;
            border: 1px solid rgba(11, 28, 59, 0.08);
            border-radius: 15px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            box-shadow: 0 4px 12px rgba(11, 28, 59, 0.02);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .dms-logo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(11, 28, 59, 0.06);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .dms-logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @media (max-width: 900px) {
            .dms-perks-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 36px;
            }
            .dms-logos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 600px) {
            .dms-perks-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 30px;
            }
            .dms-perk-card {
                padding: 24px 20px;
            }
            .dms-logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .dms-logo-card {
                height: 65px;
            }
        }

        .dms-cta {
            text-align: center;
        }

        /* ========== CTA FORM SECTION ========== */
        .cta-form-section {
            padding: 0 0 120px;
        }

        .cta-form-block {
            background: #ffffff;
            border: 1px solid rgba(11, 28, 59, 0.08);
            padding: 80px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(11, 28, 59, 0.05);
        }

        .cta-form-block::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(68, 200, 245, 0.06) 0%, transparent 70%);
        }

        .cta-form-block::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 127, 34, 0.05) 0%, transparent 70%);
        }

        .cta-left {
            position: relative;
            z-index: 2;
        }

        .cta-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 127, 34, 0.1);
            color: var(--orange);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 16px;
            border: none;
            margin-bottom: 24px;
        }

        .cta-title {
            font-size: 38px;
            font-weight: 900;
            color: var(--dark-blue);
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .cta-title span {
            color: var(--primary-blue);
        }

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

        .cta-perk {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--dark-blue);
            font-weight: 500;
        }

        .cta-perk-dot {
            width: 22px;
            height: 22px;
            background: rgba(59, 130, 246, 0.1);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 11px;
            color: var(--primary-blue);
            font-weight: 900;
        }

        .cta-right {
            position: relative;
            z-index: 2;
        }

        .cta-form-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 44px 40px;
            box-shadow: 0 15px 40px rgba(11, 28, 59, 0.05);
            border: 1px solid rgba(11, 28, 59, 0.05);
        }

        .cta-form-card h3 {
            font-size: 22px;
            font-weight: 850;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .cta-form-card p {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .home-form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            font-size: 15px;
            font-family: var(--font-main);
            color: var(--dark-blue);
            margin-bottom: 14px;
            transition: all 0.2s;
            background: #fafbfc;
        }

        .home-form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
        }

        .home-form-btn {
            width: 100%;
            padding: 18px;
            background: var(--orange-gradient);
            color: white;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(255,127,34,0.25);
            animation: pulse-orange 3s infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .home-form-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 18px 35px rgba(255,127,34,0.4);
        }

        .home-form-agree {
            font-size: 11px;
            color: var(--text-gray);
            text-align: center;
            margin-top: 14px;
            line-height: 1.5;
        }

        .home-form-agree a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        /* ========== RESPONSIVE ========== */

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .why-container-2col {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-top: 30px;
            }

            .why-visual-wrapper {
                height: 360px;
            }

            .why-visual-badge {
                bottom: 20px;
                left: 20px;
                right: 20px;
                padding: 16px;
                gap: 12px;
            }

            .why-badge-num {
                font-size: 32px;
            }

            .why-badge-text {
                font-size: 13px;
            }

            .doctors-grid {
                grid-template-columns: 1fr;
            }

            .promos-grid {
                grid-template-columns: 1fr;
            }

            .clinics-home-grid {
                grid-template-columns: 1fr;
            }

            .cta-form-block {
                grid-template-columns: 1fr;
                padding: 50px 40px;
                gap: 40px;
            }

            .cta-title {
                font-size: 30px;
            }
        }

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

            .doctor-card-home {
                grid-template-columns: 1fr;
            }

            .doctor-photo {
                height: 260px;
            }

            .doctors-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .cta-form-block {
                padding: 40px 24px;
            }

            .cta-form-card {
                padding: 32px 24px;
            }

            .cta-title {
                font-size: 26px;
            }

            .section-title {
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .stat-number {
                font-size: 38px;
            }

            .why-visual-wrapper {
                height: 250px;
            }

            .why-visual-badge {
                bottom: 12px;
                left: 12px;
                right: 12px;
                padding: 12px;
            }

            .why-badge-num {
                font-size: 26px;
            }

            .why-badge-text {
                font-size: 11px;
            }
        }
