/*
 * Dr. Boboev Maternity Center — Professional Design Layer
 * Loads after public/css/site.css and changes appearance only.
 */

:root {
    --pro-pink: #c43f72;
    --pro-pink-dark: #94284f;
    --pro-pink-soft: #fff0f5;
    --pro-violet: #7357e8;
    --pro-violet-soft: #f2efff;
    --pro-ink: #2a2024;
    --pro-muted: #75676d;
    --pro-line: rgba(104, 71, 84, 0.13);
    --pro-surface: #ffffff;
    --pro-soft: #fff8fb;
    --pro-shadow-sm: 0 8px 26px rgba(70, 37, 50, 0.07);
    --pro-shadow-md: 0 18px 48px rgba(70, 37, 50, 0.11);
    --pro-shadow-lg: 0 28px 75px rgba(70, 37, 50, 0.16);
}

html {
    scroll-padding-top: 98px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--pro-ink);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    color: #ffffff;
    background: var(--pro-pink);
}

.container {
    width: min(1500px, calc(100% - 48px));
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(87, 55, 67, 0.08);
    box-shadow: 0 4px 22px rgba(62, 35, 46, 0.045);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transition:
        min-height 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.992);
    box-shadow: 0 13px 38px rgba(60, 33, 44, 0.11);
}

.navbar {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: min-height 0.25s ease;
}

.site-header.is-scrolled .navbar {
    min-height: 82px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-logo-full {
    width: 258px;
    height: 74px;
    display: block;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 4px 10px rgba(121, 59, 89, 0.08));
    transition:
        width 0.25s ease,
        height 0.25s ease,
        transform 0.25s ease;
}

.brand:hover .brand-logo-full {
    transform: translateY(-1px);
}

.site-header.is-scrolled .brand-logo-full {
    width: 235px;
    height: 64px;
}

.desktop-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 10px;
}

.desktop-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 10px;
    border-radius: 12px;
    color: #3e3036;
    background: transparent;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 780;
    letter-spacing: -0.014em;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--pro-pink),
        var(--pro-violet)
    );
    transition:
        left 0.22s ease,
        right 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--pro-pink-dark);
    background: rgba(196, 63, 114, 0.075);
    transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    left: 18%;
    right: 18%;
}

.header-actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.header-phones {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 11px 6px 7px;
    border: 1px solid rgba(196, 63, 114, 0.13);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff7fa, #ffffff);
    box-shadow: 0 8px 24px rgba(94, 43, 64, 0.07);
}

.phone-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 50%;
    color: var(--pro-pink);
    background: linear-gradient(145deg, #fff0f5, #f8e8ff);
    box-shadow: inset 0 0 0 1px rgba(196, 63, 114, 0.09);
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.phone-number-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    line-height: 1.08;
}

.phone-number-list a {
    color: #3f3036;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 820;
    letter-spacing: 0.005em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.phone-number-list a:hover {
    color: var(--pro-pink);
}

.locale-switch {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(196, 63, 114, 0.13);
    border-radius: 999px;
    background: #fff5f8;
    box-shadow: inset 0 1px 2px rgba(80, 37, 54, 0.04);
}

.locale-switch a {
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 8px;
    border-radius: 999px;
    color: #7c3650;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.locale-switch a:hover {
    transform: translateY(-1px);
}

.locale-switch a.active {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--pro-pink),
        var(--pro-pink-dark)
    );
    box-shadow: 0 5px 14px rgba(196, 63, 114, 0.25);
}

.header-appointment {
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 13px;
    white-space: nowrap;
}

.mobile-menu-button {
    width: 46px;
    height: 46px;
    display: none;
    flex: 0 0 46px;
    padding: 10px;
    border: 1px solid rgba(196, 63, 114, 0.14);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff4f8, #f6efff);
    box-shadow: 0 8px 20px rgba(91, 43, 62, 0.08);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.mobile-menu-button:hover {
    border-color: rgba(196, 63, 114, 0.28);
    box-shadow: 0 11px 25px rgba(91, 43, 62, 0.13);
    transform: translateY(-1px);
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 5px auto;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--pro-pink),
        var(--pro-violet)
    );
    transition:
        transform 0.22s ease,
        opacity 0.18s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu[hidden] {
    display: none !important;
}

.mobile-menu {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    z-index: 1002;
    max-height: calc(100dvh - 116px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(103, 65, 80, 0.13);
    border-radius: 0 0 24px 24px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(115, 87, 232, 0.10),
            transparent 30%
        ),
        linear-gradient(145deg, #ffffff, #fff8fb);
    box-shadow: 0 25px 70px rgba(54, 28, 39, 0.19);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.site-header.is-scrolled .mobile-menu {
    top: 82px;
}

.mobile-menu-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 18px;
}

.mobile-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(103, 65, 80, 0.09);
    border-radius: 14px;
    color: #3f3036;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 6px 18px rgba(73, 37, 51, 0.045);
    text-decoration: none;
    font-size: 15px;
    font-weight: 780;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mobile-menu a::after {
    content: "›";
    color: var(--pro-pink);
    font-size: 22px;
    line-height: 1;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
    color: var(--pro-pink-dark);
    border-color: rgba(196, 63, 114, 0.24);
    background: #fff3f7;
    box-shadow: 0 10px 25px rgba(91, 43, 62, 0.09);
    transform: translateY(-2px);
}

.mobile-menu a:last-child {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(
        135deg,
        var(--pro-pink),
        var(--pro-pink-dark)
    );
    box-shadow: 0 12px 28px rgba(181, 49, 102, 0.24);
}

.mobile-menu a:last-child::after {
    color: #ffffff;
}

body.menu-open {
    overflow: hidden;
}


/* Announcement */
.announcement {
    position: relative;
    z-index: 7;
    padding: 12px 0;
    border-bottom: 1px solid rgba(196, 63, 114, 0.11);
    background:
        linear-gradient(90deg, rgba(242, 239, 255, 0.95), rgba(255, 240, 245, 0.98));
}

.announcement-inner strong {
    letter-spacing: -0.01em;
}

.announcement-inner a {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

/* Hero */
.hero {
    min-height: 680px;
    padding: 105px 0 128px;
    isolation: isolate;
    background: #fff4f8;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero::before {
    width: 430px;
    height: 430px;
    left: -210px;
    top: -180px;
    background: radial-gradient(circle, rgba(115, 87, 232, 0.15), transparent 68%);
}

.hero::after {
    width: 340px;
    height: 340px;
    left: 31%;
    bottom: -240px;
    background: radial-gradient(circle, rgba(196, 63, 114, 0.13), transparent 70%);
}

.hero-slide {
    background-position: center center;
    filter: saturate(0.96) contrast(1.015);
    transform: scale(1.012);
    transition: opacity 1s ease-in-out, transform 7s ease;
}

.hero-slide.active {
    transform: scale(1);
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(255, 249, 251, 0.995) 0%,
            rgba(255, 247, 250, 0.985) 25%,
            rgba(255, 247, 250, 0.82) 40%,
            rgba(255, 247, 250, 0.28) 58%,
            rgba(255, 247, 250, 0.03) 74%
        ),
        linear-gradient(0deg, rgba(65, 28, 44, 0.02), transparent 45%);
}

.hero-container {
    z-index: 4;
}

.hero-content {
    max-width: 700px;
}

.hero-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 14px;
    border: 1px solid rgba(196, 63, 114, 0.15);
    border-radius: 999px;
    color: #8f3154;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 22px rgba(86, 43, 60, 0.07);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pro-pink), var(--pro-violet));
    box-shadow: 0 0 0 5px rgba(196, 63, 114, 0.10);
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 22px;
    color: #281e22;
    font-size: clamp(46px, 4.35vw, 68px);
    line-height: 1.045;
    letter-spacing: -0.044em;
    text-wrap: balance;
}

.hero p {
    max-width: 650px;
    margin-bottom: 30px;
    color: #64545b;
    font-size: 19px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-primary {
    min-width: 190px;
}

.hero-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 19px;
    border: 1px solid rgba(133, 72, 96, 0.20);
    border-radius: 13px;
    color: #603348;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 9px 25px rgba(73, 38, 52, 0.07);
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-secondary:hover {
    border-color: rgba(196, 63, 114, 0.35);
    box-shadow: 0 14px 30px rgba(73, 38, 52, 0.12);
    transform: translateY(-2px);
}

.hero-secondary span {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.hero-secondary:hover span {
    transform: translateX(4px);
}

.hero-confidence {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    color: #6d5b62;
    font-size: 14px;
    font-weight: 700;
}

.hero-confidence span::first-letter {
    color: var(--pro-pink);
}

.hero-dots {
    bottom: 88px;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(196, 63, 114, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 9px 25px rgba(74, 39, 53, 0.10);
    backdrop-filter: blur(10px);
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(196, 63, 114, 0.30);
}

.hero-dot.active {
    width: 30px;
    background: linear-gradient(90deg, var(--pro-pink), var(--pro-violet));
}

/* Benefit strip */
.premium-benefits {
    position: relative;
    z-index: 8;
    margin-top: -58px;
    padding-bottom: 24px;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(103, 65, 80, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--pro-shadow-lg);
    backdrop-filter: blur(18px);
}

.premium-benefit {
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 24px;
    border-right: 1px solid rgba(103, 65, 80, 0.10);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 251, 0.92));
}

.premium-benefit:last-child {
    border-right: 0;
}

.premium-benefit-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    flex: 0 0 49px;
    border-radius: 15px;
    color: var(--pro-pink);
    background: linear-gradient(145deg, #fff0f5, #f2efff);
    box-shadow: inset 0 0 0 1px rgba(196, 63, 114, 0.09);
}

.premium-benefit:nth-child(even) .premium-benefit-icon {
    color: var(--pro-violet);
}

.premium-benefit-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.premium-benefit strong,
.premium-benefit small {
    display: block;
}

.premium-benefit strong {
    margin-bottom: 6px;
    color: #35262c;
    font-size: 16px;
    line-height: 1.25;
}

.premium-benefit small {
    color: var(--pro-muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Sections */
.section {
    position: relative;
    padding: 96px 0;
    scroll-margin-top: 105px;
}

.section-soft {
    background:
        radial-gradient(circle at 7% 10%, rgba(196, 63, 114, 0.07), transparent 27%),
        radial-gradient(circle at 92% 80%, rgba(115, 87, 232, 0.055), transparent 28%),
        #fff8fb;
}

.center-heading {
    max-width: 790px;
    margin-bottom: 48px;
}

.center-heading::before {
    content: "";
    width: 56px;
    height: 5px;
    display: block;
    margin: 0 auto 17px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pro-pink), var(--pro-violet));
    box-shadow: 0 5px 14px rgba(196, 63, 114, 0.20);
}

.center-heading h2 {
    margin-bottom: 14px;
    color: #2c2025;
    font-size: clamp(35px, 3vw, 46px);
    line-height: 1.14;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.center-heading p {
    color: #75676d;
    font-size: 17px;
    line-height: 1.7;
}

.secondary-button {
    min-height: 48px;
    padding: 12px 20px;
    border-color: rgba(196, 63, 114, 0.20);
    border-radius: 13px;
    color: #8b3153;
    box-shadow: 0 8px 24px rgba(78, 38, 54, 0.06);
}

.secondary-button:hover {
    border-color: transparent;
    background: linear-gradient(135deg, var(--pro-pink), var(--pro-pink-dark));
    box-shadow: 0 13px 28px rgba(196, 63, 114, 0.22);
}

/* Cards */
.card {
    border-color: rgba(93, 58, 72, 0.105);
    border-radius: 23px;
    box-shadow: var(--pro-shadow-sm);
    transform: translateZ(0);
}

.card:hover {
    border-color: rgba(196, 63, 114, 0.25);
    box-shadow: var(--pro-shadow-md);
    transform: translateY(-8px);
}

.card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--pro-pink), var(--pro-violet));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.card {
    position: relative;
}

.card-body {
    padding: 23px;
}

.card-body h3 {
    color: #33262b;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.card-body p {
    color: #74656b;
    line-height: 1.65;
}

.card-body span,
.card-body strong,
.card-body time {
    color: var(--pro-pink);
}

.services-grid {
    gap: 20px;
}

.service-card img {
    height: 184px;
}

.service-card .card-body {
    min-height: 222px;
}

.service-card h3 {
    min-height: 52px;
    font-size: 18px;
}

.doctors-grid {
    gap: 30px;
}

.doctor-card {
    max-width: 315px;
}

.doctor-card img {
    height: 420px;
    background: linear-gradient(145deg, #fff0f5, #f4f0ff);
}

.doctor-card .card-body {
    padding: 24px;
}

.three-grid {
    gap: 28px;
}

.news-card img,
.gallery-card img {
    height: 250px;
}

.video-cover img,
.video-card iframe {
    height: 240px;
}

.play {
    width: 66px;
    height: 66px;
    border: 7px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(135deg, var(--pro-pink), var(--pro-violet));
    box-shadow: 0 14px 34px rgba(61, 28, 44, 0.28);
}

.gallery-preview-grid {
    gap: 24px;
}

.gallery-preview {
    height: 315px;
    border: 1px solid rgba(93, 58, 72, 0.10);
    border-radius: 23px;
    box-shadow: var(--pro-shadow-sm);
}

.gallery-preview span {
    padding: 58px 22px 22px;
    font-size: 18px;
    background: linear-gradient(transparent, rgba(34, 22, 28, 0.82));
}

/* Contact */
.contact-grid {
    gap: 32px;
}

.contact-cards {
    gap: 18px;
}

.info-card {
    min-height: 150px;
    padding: 25px;
    border-color: rgba(93, 58, 72, 0.11);
    border-radius: 21px;
    box-shadow: var(--pro-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    box-shadow: var(--pro-shadow-md);
    transform: translateY(-4px);
}

.info-card strong {
    position: relative;
    margin-bottom: 12px;
    padding-left: 17px;
    color: var(--pro-pink);
    font-size: 16px;
}

.info-card strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pro-pink), var(--pro-violet));
}

.map-frame {
    min-height: 414px;
    border: 8px solid #ffffff;
    border-radius: 25px;
    box-shadow: var(--pro-shadow-md);
}

.map-frame iframe {
    min-height: 398px;
    border-radius: 17px;
}

.contact-socials a {
    min-width: 108px;
    padding: 11px 17px;
    border-color: rgba(196, 63, 114, 0.20);
    box-shadow: 0 7px 18px rgba(73, 37, 51, 0.05);
    transition: all 0.2s ease;
}

.contact-socials a:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--pro-pink), var(--pro-violet));
    box-shadow: 0 12px 25px rgba(196, 63, 114, 0.22);
    transform: translateY(-2px);
}

/* Form */
.appointment-form {
    position: relative;
    max-width: 980px;
    padding: 42px;
    border: 1px solid transparent;
    border-radius: 27px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(196, 63, 114, 0.28), rgba(115, 87, 232, 0.23)) border-box;
    box-shadow: var(--pro-shadow-md);
}

.form-grid {
    gap: 22px;
}

.form-grid label {
    color: #44343b;
    font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    min-height: 51px;
    padding: 14px 16px;
    border-color: rgba(95, 66, 77, 0.18);
    border-radius: 13px;
    background: #fffdfd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid textarea {
    min-height: 130px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: rgba(196, 63, 114, 0.70);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(196, 63, 114, 0.10);
}

.appointment-form > .button {
    min-width: 190px;
}

/* Inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 70px;
    background:
        radial-gradient(circle at 15% 15%, rgba(196, 63, 114, 0.10), transparent 28%),
        radial-gradient(circle at 88% 25%, rgba(115, 87, 232, 0.09), transparent 27%),
        linear-gradient(135deg, #fff7fa, #ffffff 48%, #f8f5ff);
}

.page-hero::after {
    content: "";
    width: 84px;
    height: 5px;
    display: block;
    margin: 24px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pro-pink), var(--pro-violet));
}

.page-hero h1 {
    color: #2c2025;
    font-size: clamp(40px, 5vw, 62px);
    letter-spacing: -0.04em;
}

.content-panel,
.article-card,
.detail-card,
.price-box {
    border-color: rgba(93, 58, 72, 0.10);
    border-radius: 24px;
    box-shadow: var(--pro-shadow-md);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 62px;
    background:
        radial-gradient(circle at 85% 10%, rgba(115, 87, 232, 0.20), transparent 30%),
        linear-gradient(135deg, #34242b, #24191e 70%);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pro-pink), var(--pro-violet), var(--pro-pink));
}

.footer-grid {
    gap: 40px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.social-buttons a {
    padding: 9px 12px;
    border-color: rgba(255, 255, 255, 0.17);
    background: rgba(255, 255, 255, 0.055);
}

/* Subtle reveal animation */
.professional-js .reveal-ready {
    opacity: 0;
    transform: translateY(22px);
}

.professional-js .reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Responsive */
@media (max-width: 1600px) {
    .container {
        width: min(1440px, calc(100% - 42px));
    }

    .desktop-nav {
        gap: 7px;
    }

    .desktop-nav a {
        padding-inline: 9px;
        font-size: 16.5px;
    }

    .brand-logo-full {
        width: 245px;
    }

    .header-appointment {
        padding-inline: 18px;
    }
}

@media (max-width: 1450px) {
    .container {
        width: min(1360px, calc(100% - 36px));
    }

    .navbar {
        gap: 14px;
    }

    .brand-logo-full {
        width: 225px;
    }

    .desktop-nav {
        gap: 4px;
    }

    .desktop-nav a {
        padding-inline: 7px;
        font-size: 15.5px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-appointment {
        min-height: 46px;
        padding: 11px 16px;
        font-size: 14px;
    }
}

@media (max-width: 1320px) {
    .header-phones {
        display: none;
    }

    .desktop-nav {
        gap: 7px;
    }

    .desktop-nav a {
        padding-inline: 9px;
        font-size: 16px;
    }
}

@media (max-width: 1240px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-phones {
        display: none;
    }

    .premium-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-benefit:nth-child(2) {
        border-right: 0;
    }

    .premium-benefit:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(103, 65, 80, 0.10);
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 86px;
    }

    .container {
        width: min(100% - 30px, 1180px);
    }

    .navbar {
        min-height: 86px;
        gap: 12px;
    }

    .site-header.is-scrolled .navbar {
        min-height: 78px;
    }

    .brand-logo-full {
        width: 215px;
        height: 62px;
    }

    .site-header.is-scrolled .brand-logo-full {
        width: 198px;
        height: 56px;
    }

    .header-appointment {
        display: none;
    }

    .locale-switch {
        display: flex;
    }

    .mobile-menu {
        top: 86px;
        left: 14px;
        right: 14px;
        max-height: calc(100dvh - 104px);
    }

    .site-header.is-scrolled .mobile-menu {
        top: 78px;
    }

    .hero {
        min-height: 610px;
        padding: 82px 0 125px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 248, 251, 0.99),
                rgba(255, 248, 251, 0.91) 54%,
                rgba(255, 248, 251, 0.55)
            );
    }

    .hero h1 {
        font-size: clamp(42px, 7vw, 56px);
    }

    .hero-dots {
        bottom: 76px;
    }

    .premium-benefits {
        margin-top: -48px;
    }

    .section {
        padding: 82px 0;
    }
}

@media (max-width: 650px) {
    html {
        scroll-padding-top: 78px;
    }

    .container {
        width: min(100% - 22px, 1180px);
    }

    .navbar {
        min-height: 78px;
        gap: 8px;
    }

    .site-header.is-scrolled .navbar {
        min-height: 72px;
    }

    .brand-logo-full {
        width: 168px;
        height: 54px;
    }

    .site-header.is-scrolled .brand-logo-full {
        width: 158px;
        height: 50px;
    }

    .header-actions {
        gap: 7px;
    }

    .locale-switch {
        min-height: 38px;
        padding: 3px;
    }

    .locale-switch a {
        min-width: 29px;
        padding: 6px 7px;
        font-size: 10.5px;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px;
    }

    .mobile-menu {
        top: 78px;
        left: 10px;
        right: 10px;
        max-height: calc(100dvh - 90px);
        border-radius: 0 0 20px 20px;
    }

    .site-header.is-scrolled .mobile-menu {
        top: 72px;
    }

    .mobile-menu-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 13px;
    }

    .mobile-menu a {
        min-height: 47px;
        padding: 11px 12px;
        border-radius: 12px;
        font-size: 13.5px;
    }

    .mobile-menu a::after {
        font-size: 19px;
    }

    .hero {
        min-height: 590px;
        padding: 62px 0 128px;
    }

    .hero-slide {
        background-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 248, 251, 0.99),
                rgba(255, 248, 251, 0.93) 70%,
                rgba(255, 248, 251, 0.64)
            );
    }

    .hero-kicker {
        max-width: 100%;
        padding: 8px 11px;
        font-size: 11px;
    }

    .hero h1 {
        max-width: 520px;
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.08;
    }

    .hero p {
        max-width: 500px;
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 310px;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-confidence {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        font-size: 13px;
    }

    .hero-dots {
        bottom: 76px;
    }

    .premium-benefits {
        margin-top: -54px;
    }

    .premium-benefits-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .premium-benefit,
    .premium-benefit:nth-child(2),
    .premium-benefit:nth-child(-n + 2) {
        min-height: auto;
        padding: 19px;
        border-right: 0;
        border-bottom: 1px solid rgba(103, 65, 80, 0.10);
    }

    .premium-benefit:last-child {
        border-bottom: 0;
    }

    .premium-benefit-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .section {
        padding: 68px 0;
    }

    .center-heading {
        margin-bottom: 35px;
    }

    .center-heading h2 {
        font-size: 34px;
    }

    .center-heading p {
        font-size: 15.5px;
    }

    .card {
        border-radius: 20px;
    }

    .service-card img {
        height: 225px;
    }

    .doctor-card img {
        height: 440px;
    }

    .appointment-form {
        padding: 24px;
        border-radius: 21px;
    }

    .map-frame {
        min-height: 340px;
    }

    .map-frame iframe {
        min-height: 324px;
    }
}

@media (max-width: 520px) {
    .mobile-menu-inner {
        grid-template-columns: 1fr;
    }

    .mobile-menu a {
        min-height: 48px;
        padding-inline: 14px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 16px, 1180px);
    }

    .navbar {
        gap: 6px;
    }

    .brand-logo-full {
        width: 148px;
        height: 49px;
    }

    .site-header.is-scrolled .brand-logo-full {
        width: 142px;
        height: 47px;
    }

    .locale-switch a {
        min-width: 27px;
        padding-inline: 6px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        padding: 9px;
    }

    .hero h1 {
        font-size: 34px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .professional-js .reveal-ready,
    .professional-js .reveal-ready.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
