:root {
    --navy: #0F4C81;
    --blue: #4FA3D1;
    --white: #FFFFFF;
    --gray: #F5F7FA;
    --text: #1E293B;
    --muted: #64748B;
    --shadow: 0 18px 45px rgba(15, 76, 129, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--gray) 100%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 76, 129, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.navbar {
    width: min(1120px, calc(100% - 40px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-shell {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 76, 129, 0.1);
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 3px;
}

.brand-text strong {
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.2;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: #334155;
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: #0B3D68;
    box-shadow: 0 16px 32px rgba(15, 76, 129, 0.28);
    transform: translateY(-2px);
}

.hero {
    width: 100%;
    min-height: calc(100vh - 86px);
    padding: 72px 0 78px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0.08) 100%),
        url("assets/hero-dra-marina.png") center right / cover no-repeat;
}

.hero-content {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.eyebrow {
    width: fit-content;
    padding: 8px 14px;
    border: 1px solid rgba(79, 163, 209, 0.28);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(79, 163, 209, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero h1 {
    max-width: 680px;
    color: var(--navy);
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-description {
    max-width: 590px;
    color: #475569;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 18px 34px rgba(15, 76, 129, 0.22);
}

.secondary-button {
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(15, 76, 129, 0.16);
}

.primary-button:hover,
.primary-button:focus-visible {
    background: #0B3D68;
    box-shadow: 0 20px 38px rgba(15, 76, 129, 0.3);
    transform: translateY(-2px);
}

.secondary-button:hover,
.secondary-button:focus-visible {
    border-color: rgba(79, 163, 209, 0.62);
    background: rgba(79, 163, 209, 0.1);
    transform: translateY(-2px);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    padding-top: 14px;
}

.hero-highlights span {
    display: grid;
    gap: 3px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-highlights strong {
    color: var(--navy);
    font-size: 1.2rem;
}

.about-section {
    background: var(--white);
    border-top: 1px solid rgba(15, 76, 129, 0.08);
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.about-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 56px;
    align-items: start;
}

.about-copy {
    display: grid;
    gap: 20px;
}

.section-label {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.about-copy h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.about-copy p:not(.section-label) {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-pillars {
    display: grid;
    gap: 14px;
}

.about-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: var(--gray);
}

.about-card span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
}

.about-card h3 {
    color: var(--navy);
    font-size: 1.12rem;
}

.about-card p {
    color: var(--muted);
    line-height: 1.65;
}

.treatments-section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
    display: grid;
    gap: 16px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading p:not(.section-label) {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.75;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.treatment-card {
    min-height: 238px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(15, 76, 129, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.treatment-card:hover {
    border-color: rgba(79, 163, 209, 0.42);
    box-shadow: 0 24px 52px rgba(15, 76, 129, 0.12);
    transform: translateY(-4px);
}

.treatment-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(79, 163, 209, 0.14);
    font-size: 0.78rem;
    font-weight: 800;
}

.treatment-card h3 {
    color: var(--navy);
    font-size: 1.08rem;
    line-height: 1.3;
}

.treatment-card p {
    color: var(--muted);
    line-height: 1.65;
}

.treatments-cta {
    margin-top: 24px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: var(--white);
}

.treatments-cta p {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
}

.features-section {
    background: var(--navy);
    color: var(--white);
}

.features-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 54px;
    align-items: start;
}

.features-copy {
    position: sticky;
    top: 122px;
    display: grid;
    gap: 18px;
}

.section-label-light {
    color: #9BD6F3;
}

.features-copy h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.features-copy p:not(.section-label) {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.75;
}

.features-list {
    display: grid;
    gap: 14px;
}

.feature-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.feature-item span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.feature-item h3 {
    margin-bottom: 8px;
    font-size: 1.14rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.fast-schedule {
    grid-column: 2;
    padding: 24px;
    display: grid;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.fast-schedule strong {
    font-size: 1.2rem;
}

.fast-schedule p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.primary-button-light {
    width: fit-content;
    color: var(--navy);
    background: var(--white);
    box-shadow: none;
}

.primary-button-light:hover,
.primary-button-light:focus-visible {
    color: var(--navy);
    background: #EAF6FC;
    box-shadow: none;
}

.stats-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray) 100%);
}

.stats-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 54px;
    align-items: center;
}

.stats-intro {
    display: grid;
    gap: 18px;
}

.stats-intro h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.stats-intro p:not(.section-label) {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    min-height: 154px;
    padding: 24px;
    display: grid;
    align-content: space-between;
    gap: 18px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 42px rgba(15, 76, 129, 0.07);
}

.stat-card-wide {
    grid-column: span 2;
    min-height: 128px;
    background: var(--navy);
}

.stat-card strong {
    color: var(--navy);
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 0.95;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
}

.stat-card-wide strong,
.stat-card-wide span {
    color: var(--white);
}

.stat-card-wide span {
    color: rgba(255, 255, 255, 0.78);
}

.doctor-section {
    background: var(--white);
    border-top: 1px solid rgba(15, 76, 129, 0.08);
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.doctor-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: center;
}

.doctor-profile {
    padding: 28px;
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    align-items: center;
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(15, 76, 129, 0.96), rgba(79, 163, 209, 0.86)),
        var(--navy);
    box-shadow: 0 28px 70px rgba(15, 76, 129, 0.16);
}

.doctor-photo-frame {
    width: 112px;
    height: 112px;
    border: 3px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    background: #D9ECF6;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(8, 47, 82, 0.22);
}

.doctor-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.doctor-profile-info {
    padding: 0;
}

.doctor-role {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.doctor-profile h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.doctor-profile p:not(.doctor-role) {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.doctor-content {
    display: grid;
    gap: 18px;
}

.doctor-content h3 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.doctor-content p:not(.section-label) {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.75;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}

.doctor-tags span {
    padding: 10px 14px;
    border: 1px solid rgba(79, 163, 209, 0.28);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(79, 163, 209, 0.1);
    font-size: 0.9rem;
    font-weight: 800;
}

.values-section {
    background: var(--gray);
}

.values-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
}

.values-heading {
    max-width: 820px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.value-card {
    min-height: 250px;
    padding: 26px;
    display: grid;
    align-content: start;
    gap: 18px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(15, 76, 129, 0.07);
}

.value-card span {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(79, 163, 209, 0.12);
    font-size: 0.82rem;
    font-weight: 800;
}

.value-card p {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.75;
}

.value-card-wide {
    background: var(--navy);
}

.value-card-wide span {
    color: var(--navy);
    background: var(--white);
}

.value-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.value-card li {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 48px;
    align-items: start;
}

.contact-content {
    display: grid;
    gap: 18px;
}

.contact-content h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.contact-content p:not(.section-label) {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.75;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-card {
    min-height: 142px;
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: var(--gray);
}

.contact-card span {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card p,
.contact-card a {
    color: #475569;
    line-height: 1.65;
}

.contact-card a {
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: var(--navy);
}

.location-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: 8px;
    background: var(--gray);
}

.location-map {
    position: relative;
    min-height: 260px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(135deg, rgba(79, 163, 209, 0.3), rgba(15, 76, 129, 0.96));
    background-size: 44px 44px, 44px 44px, auto;
}

.location-map span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 10px solid var(--white);
    border-radius: 50% 50% 50% 0;
    background: var(--blue);
    transform: translate(-50%, -70%) rotate(-45deg);
    box-shadow: 0 16px 34px rgba(15, 76, 129, 0.32);
}

.location-info {
    padding: 30px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.location-info strong {
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.location-info p {
    color: var(--muted);
    line-height: 1.65;
}

.final-cta-section {
    background: var(--navy);
    color: var(--white);
}

.final-cta-wrapper {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
    display: grid;
    justify-items: center;
    gap: 20px;
    text-align: center;
}

.final-cta-wrapper h2 {
    max-width: 820px;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.final-cta-wrapper p:not(.section-label) {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 8px;
}

.secondary-button-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.secondary-button-light:hover,
.secondary-button-light:focus-visible {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: #082F52;
}

.footer-wrapper {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 62px 0 38px;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.65fr) minmax(240px, 0.85fr);
    gap: 42px;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 18px;
}

.footer-logo .brand-text strong,
.footer-logo .brand-text small {
    color: var(--white);
}

.footer-brand p {
    max-width: 430px;
    line-height: 1.75;
}

.footer-column {
    display: grid;
    gap: 12px;
}

.footer-column h2 {
    color: var(--white);
    font-size: 1rem;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    line-height: 1.6;
}

.brand:focus-visible,
.nav-links a:focus-visible,
.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.footer-column a:focus-visible {
    outline: 3px solid rgba(79, 163, 209, 0.35);
    outline-offset: 4px;
}

@media (max-width: 1040px) {
    .hero {
        min-height: auto;
        padding: 72px 0;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.3) 100%),
            url("assets/hero-dra-marina.png") center right / cover no-repeat;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .features-copy {
        position: static;
    }

    .fast-schedule {
        grid-column: auto;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .doctor-wrapper {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .value-card {
        min-height: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .navbar {
        min-height: auto;
        padding: 18px 0;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 16px;
    }

    .hero {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .navbar {
        width: min(100% - 28px, 1120px);
    }

    .brand-logo-shell {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 0.95rem;
    }

    .brand-text small {
        font-size: 0.72rem;
    }

    .header-cta {
        width: 100%;
    }

    .nav-links {
        gap: 16px;
        font-size: 0.88rem;
    }

    .hero {
        width: 100%;
        padding: 52px 0 56px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.72) 100%),
            url("assets/hero-dra-marina.png") center top / cover no-repeat;
    }

    .hero-content {
        width: min(100% - 28px, 1120px);
    }

    .eyebrow {
        border-radius: 8px;
        font-size: 0.76rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions,
    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlights span {
        min-height: auto;
    }

    .about-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
    }

    .about-card {
        padding: 18px;
    }

    .treatments-section {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
    }

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

    .treatment-card {
        min-height: auto;
        padding: 18px;
    }

    .treatments-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .treatments-cta .secondary-button {
        width: 100%;
    }

    .features-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
        gap: 32px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .fast-schedule {
        padding: 18px;
    }

    .primary-button-light {
        width: 100%;
    }

    .stats-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
        gap: 30px;
    }

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

    .stat-card,
    .stat-card-wide {
        grid-column: auto;
        min-height: 132px;
        padding: 20px;
    }

    .doctor-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
        gap: 30px;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .doctor-photo-frame {
        width: 104px;
        height: 104px;
    }

    .doctor-profile-info {
        padding: 0;
    }

    .values-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
    }

    .value-card {
        padding: 20px;
    }

    .contact-wrapper {
        width: min(100% - 28px, 1120px);
        padding: 58px 0;
        gap: 30px;
    }

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

    .contact-actions,
    .contact-actions .primary-button,
    .contact-actions .secondary-button {
        width: 100%;
    }

    .contact-card {
        min-height: auto;
    }

    .location-info {
        padding: 22px;
    }

    .final-cta-wrapper {
        width: min(100% - 28px, 900px);
        padding: 62px 0;
    }

    .final-cta-actions,
    .final-cta-actions .primary-button,
    .final-cta-actions .secondary-button {
        width: 100%;
    }

    .footer-wrapper,
    .footer-bottom {
        width: min(100% - 28px, 1120px);
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 46px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
