@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0100-02FF, U+1E00-1EFF;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-400-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-500.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    unicode-range: U+0100-02FF, U+1E00-1EFF;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-500-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-600.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    unicode-range: U+0100-02FF, U+1E00-1EFF;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-600-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    unicode-range: U+0100-02FF, U+1E00-1EFF;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-700-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}

:root {
    --navy: #031b4e;
    --navy-2: #0d2b63;
    --navy-3: #183f78;
    --cyan: #08bdd3;
    --cyan-2: #15c8da;
    --pink: #fb5b7e;
    --text: #566593;
    --soft: #edf7ff;
    --soft-2: #e8f3fc;
    --white: #fff;
    --container: 1300px;
    --radius: 28px;
    --shadow: 0 18px 50px rgba(28, 90, 140, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid rgba(8, 189, 211, 0.42);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(32px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.sr-only,
.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: var(--navy);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 36px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: var(--cyan);
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
    background: #00a9c2;
    box-shadow: 0 13px 30px rgba(8, 189, 211, 0.24);
    transform: translateY(-2px);
}

.button:active {
    box-shadow: 0 6px 16px rgba(8, 189, 211, 0.2);
    transform: translateY(0) scale(0.98);
}

.button:disabled,
.button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none;
    transform: none;
}

.button-small {
    min-height: 50px;
    padding-inline: 32px;
    border-radius: 18px;
}

.button-outline {
    color: var(--navy);
    background: transparent;
    border: 1px solid rgba(3, 27, 78, 0.13);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 18px;
    border-radius: 999px;
    color: #00a9c2;
    background: linear-gradient(90deg, rgba(252, 84, 126, 0.18), rgba(255, 255, 255, 0));
    font-weight: 600;
    text-transform: none;
}

.eyebrow-icon {
    padding: 0;
    background: transparent;
    text-transform: uppercase;
}

.eyebrow-dark {
    padding: 0;
    color: var(--cyan-2);
    background: transparent;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 80px;
    border-bottom: 1px solid rgba(3, 27, 78, 0.045);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 7px 25px rgba(3, 27, 78, 0.04);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 34px rgba(3, 27, 78, 0.09);
}

.header-inner {
    display: flex;
    height: 80px;
    align-items: center;
}

.brand {
    margin-right: auto;
}

.brand img,
.nav-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 0;
    margin: 0 42px 0 0;
    list-style: none;
}

.main-nav a,
.submenu-toggle {
    border: 0;
    color: var(--navy);
    background: transparent;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
    color: var(--cyan);
}

.submenu-toggle {
    display: flex;
    gap: 10px;
    padding: 16px 0;
}

.submenu-toggle span {
    color: var(--cyan);
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: -26px;
    width: 330px;
    padding: 12px;
    margin: 0;
    border-radius: 18px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: var(--shadow);
    list-style: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.submenu li + li {
    border-top: 1px solid #edf2f7;
}

.submenu a {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.open .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle,
.menu-close,
.nav-brand,
.menu-backdrop,
.mobile-contact {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    background: var(--soft) url("../img/hero-bg.webp") center / cover no-repeat;
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 800px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 65px 0 135px;
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 10px;
    font-size: clamp(48px, 4.3vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: normal;
}

.hero-copy h1 span {
    color: var(--cyan);
}

.hero-copy p {
    max-width: 600px;
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 1.7;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 500;
}

.play-mark {
    color: var(--cyan);
    font-size: 30px;
}

.hero-visual {
    position: relative;
    height: 100%;
}

.hero-visual > img {
    position: absolute;
    right: -20px;
    bottom: -12px;
    width: 750px;
    max-width: none;
    height: 750px;
    object-fit: contain;
}

.care-card {
    position: absolute;
    z-index: 3;
    top: 200px;
    left: 10px;
    width: 220px;
    padding: 28px 26px 18px;
    border-radius: 26px;
    color: var(--navy);
    background: #fff;
    box-shadow: var(--shadow);
}

.care-ring {
    display: grid;
    width: 142px;
    height: 142px;
    margin: 0 auto 14px;
    place-items: center;
    border: 5px solid var(--cyan);
    border-bottom-color: transparent;
    border-radius: 50%;
    color: var(--cyan);
}

.care-ring strong {
    font-size: 40px;
}

.care-card > div:last-child {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.care-card b {
    font-size: 15px;
    line-height: 1.35;
}

.care-card span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #d6e7ef;
    border-radius: 50%;
    color: var(--cyan);
    font-size: 26px;
}

.phone-card {
    position: absolute;
    z-index: 4;
    bottom: 48px;
    left: 45px;
    display: flex;
    width: 210px;
    min-height: 105px;
    align-items: end;
    padding: 45px 22px 14px 62px;
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 13px;
    line-height: 1.4;
}

.phone-card-icon {
    position: absolute;
    top: -28px;
    left: -15px;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.phone-card strong {
    display: block;
    color: var(--cyan);
    font-size: 19px;
}

/* About */
.about {
    min-height: 800px;
}

.about-grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-visual {
    position: relative;
    min-height: 520px;
}

.about-visual::before {
    display: none;
}

.about-visual > img {
    position: absolute;
    z-index: 1;
    top: 145px;
    left: 45px;
    width: 310px;
}

.experience-card {
    position: absolute;
    z-index: 2;
    top: 55px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 30px;
    border-radius: 20px;
    background: var(--soft);
}

.experience-card strong {
    color: var(--pink);
    font-size: 64px;
    line-height: 1;
}

.experience-card span {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.about-copy p {
    max-width: 620px;
    margin-bottom: 24px;
}

.about-copy {
    position: relative;
    top: -40px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--pink);
    content: "✓";
    font-weight: 700;
}

/* Stats */
.stats {
    position: relative;
    padding: 58px 0;
    overflow: hidden;
    background: var(--soft);
}

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

.stats-grid > div {
    display: flex;
    min-height: 130px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d4e7f5;
    text-align: center;
}

.stats-grid > div:last-child {
    border-right: 0;
}

.stats strong {
    color: var(--cyan);
    font-size: 44px;
    line-height: 1.1;
}

.stats span {
    color: var(--navy);
    font-weight: 600;
}

/* Services */
.services {
    min-height: 0;
    padding: 96px 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(8, 189, 211, 0.11), transparent 28%),
        linear-gradient(180deg, #f3faff 0%, var(--soft) 100%);
}

.section-intro {
    margin-bottom: 42px;
}

.section-intro h2 {
    margin-bottom: 0;
}

.section-intro h2 span {
    color: var(--cyan);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 34px 30px 72px;
    overflow: hidden;
    border: 1px solid rgba(3, 27, 78, 0.07);
    border-radius: 26px;
    background: linear-gradient(155deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 14px 35px rgba(24, 87, 133, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), #45d8c3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.service-card:hover,
.service-card:focus-within {
    border-color: rgba(8, 189, 211, 0.24);
    box-shadow: 0 24px 60px rgba(24, 87, 133, 0.15);
    transform: translateY(-7px);
}

.service-card:hover::before,
.service-card:focus-within::before {
    transform: scaleX(1);
}

.service-card:nth-child(5) {
    grid-column: auto;
    width: auto;
    min-width: 0;
    justify-self: stretch;
}

.service-icon-shell {
    display: grid;
    width: 82px;
    height: 82px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(8, 189, 211, 0.16);
    border-radius: 24px;
    background: linear-gradient(145deg, #f1fbfd, #fff);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-icon {
    width: 66px;
    height: 66px;
    margin: 0;
    object-fit: contain;
    transition: transform 0.28s ease;
}

.service-card:hover .service-icon-shell,
.service-card:focus-within .service-icon-shell {
    box-shadow: 0 14px 30px rgba(8, 189, 211, 0.13);
    transform: rotate(-2deg) scale(1.03);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.35;
}

.service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.service-card > a {
    position: absolute;
    right: -1px;
    bottom: -1px;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 9px solid #edf7ff;
    border-radius: 50%;
    color: #fff;
    background: var(--cyan);
    font-size: 24px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-card > a::after {
    position: absolute;
    inset: -260px -10px -10px -260px;
    content: "";
}

.service-card:hover > a,
.service-card:focus-within > a {
    background: var(--navy);
    transform: rotate(8deg);
}

/* Appointment */
.appointment {
    min-height: 620px;
    overflow: hidden;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 80px;
}

.appointment-visual {
    position: relative;
    min-height: 460px;
    align-self: center;
    border-radius: 45px 180px 0 0;
    overflow: hidden;
    background: #25aba8;
}

.appointment-visual > img {
    position: absolute;
    left: 10px;
    bottom: -170px;
    width: 510px;
}

.mini-experience {
    position: absolute;
    right: 25px;
    bottom: 120px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.mini-experience strong {
    color: var(--cyan);
    font-size: 52px;
}

.mini-experience span {
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.appointment-card {
    align-self: center;
    padding: 52px;
    border-radius: 24px;
    background: var(--soft);
}

.appointment-card h2 {
    margin-bottom: 2px;
}

.appointment-card > p {
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.form-grid label {
    color: #7484ad;
    font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 0;
    border: 0;
    border-bottom: 2px solid #8091ae;
    border-radius: 0;
    outline: 0;
    color: var(--navy);
    background: transparent;
}

.form-grid input,
.form-grid select {
    height: 44px;
}

.form-grid textarea {
    min-height: 116px;
    padding: 12px 0;
    line-height: 1.65;
    resize: vertical;
}

.form-grid .form-message {
    grid-column: 1 / -1;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: transparent;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--cyan);
}

.submit-button {
    width: 100%;
    margin-top: 28px;
}

.form-status {
    min-height: 26px;
    margin-top: 12px;
    color: var(--navy);
    font-size: 14px;
}

.form-status.error {
    color: #b42318;
}

.form-status.success {
    color: #087e71;
}

/* Benefits */
.benefits {
    position: relative;
    min-height: 855px;
    overflow: hidden;
    color: #c5d2ed;
    background: linear-gradient(rgba(7, 37, 91, 0.93), rgba(7, 37, 91, 0.96)), url("../img/hospital-bg.webp") center / cover no-repeat;
    padding: 42px 0 60px;
}

.benefits-grid {
    display: grid;
    min-height: 675px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.benefits-art {
    position: relative;
    align-self: stretch;
}

.benefits-art > img:first-child {
    position: absolute;
    bottom: -155px;
    left: -70px;
    width: 585px;
}

.years-badge {
    position: absolute;
    z-index: 2;
    top: 185px;
    left: 305px;
    display: grid;
    width: 180px;
    height: 180px;
    place-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    text-align: center;
}

.years-badge strong {
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

.years-badge small {
    color: var(--cyan);
}

.years-badge span {
    color: var(--cyan);
    font-weight: 600;
    text-transform: uppercase;
}

.benefit-chart {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: -70px;
    width: 150px;
}

.benefits-content h2,
.testimonial-content h2 {
    color: #fff;
}

.benefits-content h2,
.testimonial-content h2 {
    text-transform: capitalize;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-grid article {
    position: relative;
    min-height: 230px;
    padding: 28px 22px 22px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(38, 87, 141, 0.86);
}

.benefit-number {
    position: absolute;
    top: 7px;
    right: 12px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.benefit-icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    object-fit: contain;
    filter: brightness(0) invert(71%) sepia(67%) saturate(1169%) hue-rotate(137deg) brightness(93%) contrast(92%);
}

.benefit-grid h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: #fff;
    font-size: 17px;
}

.benefit-grid p {
    margin: 0;
    color: #c6d2e7;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    min-height: 875px;
    color: #c7d5ee;
    background: #0d2c63 url("../img/footer-bg.png") center / cover no-repeat;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: stretch;
}

.testimonial-image {
    position: relative;
    min-height: 630px;
    margin-top: -90px;
}

.testimonial-image > img {
    width: 100%;
    height: 630px;
    border-radius: 32px 0 0 32px;
    object-fit: cover;
}

.happy-patients {
    position: absolute;
    bottom: 26px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow);
}

.happy-patients strong {
    color: var(--cyan);
    font-size: 22px;
}

.happy-patients span {
    color: var(--text);
}

.testimonial-content {
    align-self: center;
}

.testimonial-stage {
    position: relative;
    padding: 10px 42px;
}

.testimonial-card {
    display: grid;
    min-height: 250px;
    grid-template-columns: 200px 1fr;
    border-radius: 28px;
    overflow: hidden;
    color: var(--text);
    background: #fff;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    background: var(--soft);
    text-align: center;
}

.review-author img {
    width: 105px;
    height: 90px;
    object-fit: contain;
}

.review-author strong {
    color: var(--navy);
    font-size: 18px;
}

.review-author span {
    color: var(--cyan);
    font-weight: 600;
}

.review-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 35px 30px;
}

.review-copy h3 {
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 19px;
}

.review-copy p {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
}

.slider-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 35px;
    transform: translateY(-50%);
}

.slider-button.previous {
    left: -25px;
}

.slider-button.next {
    right: -25px;
}

.review-button {
    margin: 90px 0 0 100px;
    border-radius: 8px;
    background: #4388f4;
}

/* Process */
.process {
    min-height: 625px;
    background: #fff url("../img/process-bg.png") center / cover no-repeat;
}

.process .section-intro {
    text-align: center;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-grid::before {
    position: absolute;
    z-index: 0;
    top: -75px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/process-line.svg") center / 65% auto no-repeat;
    content: "";
}

.process-grid::after {
    display: none;
}

.process-grid article {
    position: relative;
    z-index: 1;
    min-height: 275px;
    padding: 20px 34px;
    text-align: center;
}

.process-grid img {
    width: 150px;
    height: 150px;
    margin: 0 auto 22px;
    object-fit: contain;
}

.process-grid h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.process-grid p {
    margin: 0;
    font-size: 14px;
}

.step-number {
    display: none;
}

/* Footer */
.site-footer {
    min-height: 673px;
    padding: 80px 0 0;
    color: #8b9cc2;
    background: var(--navy) url("../img/footer-bg.png") center / cover no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 75px;
    padding-bottom: 52px;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 19px;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer li a {
    font-size: 14px;
}

.site-footer li a::before {
    margin-right: 8px;
    color: var(--cyan);
    content: "›";
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.site-footer dl {
    margin: 0;
}

.site-footer dl > div + div {
    margin-top: 22px;
}

.site-footer dt {
    color: #8193b8;
    font-size: 13px;
}

.site-footer dd {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter h2,
.newsletter p {
    margin-bottom: 4px;
}

.newsletter p {
    font-size: 13px;
}

.newsletter-form {
    display: flex;
    padding: 6px;
    border-radius: 15px;
    background: #fff;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 0 18px;
    border: 0;
    outline: 0;
}

.newsletter-form button {
    min-height: 42px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--cyan);
}

.footer-bottom {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.anpc-links {
    display: flex;
    gap: 10px;
}

.anpc-links img {
    width: 112px;
}

/* Fixed helpers */
.chat-launcher {
    position: fixed;
    z-index: 1200;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 15px 35px rgba(3, 27, 78, 0.28);
}

.chat-launcher > img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.chat-launcher > span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.chat-launcher small {
    color: #d6e1f5;
}

.chat-panel {
    position: fixed;
    z-index: 1201;
    bottom: 82px;
    left: 18px;
    width: 310px;
    padding: 24px;
    border-radius: 22px;
    color: var(--text);
    background: #fff;
    box-shadow: 0 24px 70px rgba(3, 27, 78, 0.28);
}

.chat-panel strong {
    color: var(--navy);
}

.chat-panel a {
    display: block;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--cyan);
    text-align: center;
}

.chat-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    color: var(--navy);
    background: transparent;
    font-size: 24px;
}

.back-to-top {
    position: fixed;
    z-index: 1100;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 10px 25px rgba(3, 27, 78, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    :root {
        --container: 960px;
    }

    .main-nav > ul {
        gap: 25px;
        margin-right: 25px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .care-card {
        left: -30px;
        transform: scale(0.9);
    }

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

    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .appointment-grid {
        gap: 40px;
    }

    .benefits-grid,
    .testimonial-grid {
        gap: 35px;
    }

    .years-badge {
        left: 245px;
    }
}

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

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

    .section {
        padding: 65px 0;
    }

    .site-header,
    .header-inner {
        height: 64px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: var(--navy);
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .main-nav {
        position: fixed;
        z-index: 1301;
        top: 0;
        left: 0;
        width: min(280px, 82vw);
        height: 100dvh;
        padding: 25px 20px;
        overflow-y: auto;
        background: #fff;
        box-shadow: var(--shadow);
        transform: translateX(-105%);
        transition: transform 0.25s ease;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav > ul {
        display: block;
        margin: 30px 0 0;
    }

    .nav-brand img {
        width: 145px;
        height: 145px;
        margin: 0 auto 22px;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid #e8eef5;
    }

    .main-nav a,
    .submenu-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 14px 5px;
        text-align: left;
    }

    .mobile-contact,
    .nav-brand {
        display: block;
    }

    .menu-close {
        position: fixed;
        z-index: 1302;
        top: 12px;
        right: 15px;
        display: none;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 10px;
        color: #fff;
        background: var(--navy);
        font-size: 30px;
    }

    .menu-open .menu-close {
        display: block;
    }

    .submenu {
        position: static;
        width: auto;
        max-height: 0;
        padding: 0 0 0 12px;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        transform: none;
        transition: max-height 0.25s ease;
    }

    .has-submenu.open .submenu {
        max-height: 440px;
    }

    .submenu a {
        padding: 10px 8px;
    }

    .menu-backdrop {
        position: fixed;
        z-index: 1300;
        inset: 0;
        display: block;
        background: rgba(3, 27, 78, 0.62);
    }

    .menu-backdrop[hidden] {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        min-height: auto;
        flex-direction: column;
    }

    .hero-copy {
        order: 1;
        padding: 65px 0 20px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 9vw, 52px);
    }

    .hero-copy p {
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        height: 500px;
    }

    .hero-visual > img {
        right: -10%;
        bottom: -5px;
        width: 680px;
        height: 500px;
    }

    .care-card {
        top: 60px;
        left: 4%;
    }

    .phone-card {
        position: relative;
        order: 3;
        bottom: auto;
        left: auto;
        margin: 20px 0 50px;
    }

    .about-grid,
    .appointment-grid,
    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .appointment-grid {
        gap: 20px;
    }

    .appointment-card {
        order: 1;
    }

    .appointment-visual {
        order: 2;
    }

    .benefits-art {
        display: none;
    }

    .testimonial-grid {
        display: block;
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
        order: 1;
    }

    .testimonial-image {
        position: absolute;
        z-index: 0;
        right: 35px;
        bottom: -60px;
        width: 270px;
    }

    .about-grid {
        gap: 45px;
    }

    .about-copy {
        top: 0;
    }

    .about-visual {
        min-height: 480px;
    }

    .experience-card {
        right: 5%;
    }

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

    .stats-grid > div:nth-child(2) {
        border-right: 0;
    }

    .stats-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid #d4e7f5;
    }

    .services {
        min-height: auto;
    }

    .testimonials,
    .site-footer {
        min-height: auto;
    }

    .appointment-visual {
        min-height: 500px;
    }

    .appointment-card {
        padding: 40px;
    }

    .benefits-art {
        min-height: 540px;
    }

    .benefits-art > img:first-child {
        bottom: -170px;
        left: 0;
    }

    .benefit-chart {
        left: 0;
    }

    .testimonial-image > img {
        border-radius: 28px;
    }

    .review-button {
        margin-left: 42px;
    }

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

    .process-grid::before,
    .process-grid::after {
        display: none;
    }

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

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .newsletter {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 560px) {
    .service-card {
        min-height: 0;
        padding: 28px 24px 68px;
    }

    .service-icon-shell {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 55px 0;
    }

    h2 {
        font-size: 29px;
        line-height: 1.28;
    }

    .hero-copy {
        padding-top: 45px;
    }

    .hero-copy h1 {
        font-size: 39px;
        line-height: 1.13;
        letter-spacing: normal;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .button {
        min-height: 52px;
        padding: 10px 28px;
    }

    .hero-visual {
        height: 390px;
    }

    .hero-visual > img {
        right: -12%;
        width: 520px;
        height: 390px;
    }

    .care-card {
        display: none;
    }

    .phone-card {
        display: none;
    }

    .about {
        min-height: auto;
    }

    .about-grid {
        gap: 20px;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-visual > img {
        top: 45px;
        left: 20px;
        width: 235px;
    }

    .experience-card {
        top: 15px;
        right: -5px;
        padding: 15px 18px;
    }

    .experience-card strong {
        font-size: 40px;
    }

    .experience-card span {
        font-size: 14px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 15px 0;
    }

    .stats-grid > div {
        min-height: 96px;
        padding: 12px;
    }

    .stats strong {
        font-size: 34px;
    }

    .stats span {
        font-size: 12px;
    }

    .section-intro h2 br {
        display: none;
    }

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

    .service-card:nth-child(5) {
        grid-column: auto;
        width: auto;
        min-width: 0;
    }

    .appointment-visual {
        min-height: 210px;
        border-radius: 35px 100px 0 0;
    }

    .appointment-visual > img {
        bottom: -155px;
        width: 320px;
    }

    .mini-experience {
        right: 12px;
        bottom: 65px;
        padding: 8px 14px;
    }

    .mini-experience strong {
        font-size: 34px;
    }

    .mini-experience span {
        font-size: 12px;
    }

    .appointment-card {
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefits-art {
        min-height: 390px;
    }

    .benefits-art > img:first-child {
        bottom: -75px;
        left: -50px;
        width: 420px;
    }

    .years-badge {
        top: 90px;
        left: auto;
        right: 0;
        width: 125px;
        height: 125px;
    }

    .years-badge strong {
        font-size: 40px;
    }

    .benefit-chart {
        bottom: -30px;
        width: 100px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-grid article {
        min-height: 190px;
    }

    .testimonial-image {
        min-height: 240px;
        margin-top: 0;
    }

    .testimonials {
        position: relative;
        overflow: hidden;
    }

    .testimonial-image > img {
        height: 300px;
    }

    .happy-patients {
        left: 12px;
    }

    .testimonial-stage {
        padding: 10px 0 65px;
    }

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

    .review-author {
        padding-bottom: 16px;
    }

    .review-copy {
        padding: 25px;
    }

    .slider-button {
        top: auto;
        bottom: 4px;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        transform: none;
    }

    .slider-button.previous {
        left: calc(50% - 58px);
    }

    .slider-button.next {
        right: calc(50% - 58px);
    }

    .review-button {
        display: flex;
        width: max-content;
        margin: 30px auto 0;
    }

    .process-grid article {
        min-height: 220px;
        padding: 24px;
    }

    .process-grid img {
        width: 82px;
        height: 82px;
    }

    .process {
        padding: 45px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 70px;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .newsletter-form {
        display: block;
        padding: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 46px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 35px 0;
    }

    .site-footer {
        padding-top: 100px;
    }

    .site-footer li + li {
        margin-top: 12px;
    }

    .chat-launcher {
        width: 56px;
        height: 56px;
        left: 10px;
        bottom: 10px;
        justify-content: center;
        padding: 0;
    }

    .chat-launcher > span {
        display: none;
    }

    .chat-panel {
        right: 10px;
        bottom: 70px;
        left: 10px;
        width: auto;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
        width: 46px;
        height: 46px;
    }
}

/* Progressive enhancement: reveal motion is enabled only after JavaScript loads. */
.motion-ready .reveal-item:not(.is-revealed) {
    opacity: 0;
    transform: translateY(22px);
}

.motion-ready .reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s cubic-bezier(.2, .72, .2, 1), transform .55s cubic-bezier(.2, .72, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .care-card {
    animation: care-float 5s ease-in-out infinite;
}

@keyframes care-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .motion-ready .reveal-item,
    .motion-ready .reveal-item:not(.is-revealed) {
        opacity: 1 !important;
        transform: none !important;
    }
}
