:root {
    --ink: #0e222d;
    --ink-soft: #3d5867;
    --brand: #8fbed2;
    --brand-dark: #3d7691;
    --brand-soft: #d2e7f0;
    --sand: #eef5f8;
    --white: #ffffff;
    --border: rgba(14, 34, 45, 0.1);
    --shadow: 0 18px 45px rgba(14, 34, 45, 0.08);
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(238, 245, 248, 0.9), transparent 32%),
        #f4fbff;
    line-height: 1.65;
}

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

a {
    color: inherit;
}

main {
    overflow: clip;
    padding-bottom: 52px;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: #081720;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.topbar-wrap {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.topbar-link {
    text-decoration: none;
    font-weight: 700;
    color: #d3f0fe;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 251, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(14, 34, 45, 0.08);
    border-bottom-color: rgba(14, 34, 45, 0.08);
    background: rgba(246, 251, 255, 0.97);
}

.nav-wrap {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
    line-height: 0;
}

.logo-image {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
    overflow: visible;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-dark);
    background: rgba(143, 190, 210, 0.12);
}

.main-nav .btn-nav,
.main-nav .btn-nav:hover,
.main-nav .btn-nav.active {
    color: #fff;
    background: linear-gradient(135deg, #8bc1d6, #3d7691);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(14, 34, 45, 0.12);
    background: var(--white);
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    background: linear-gradient(135deg, #87bdd4, #366d88);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 28px rgba(61, 118, 145, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 32px rgba(61, 118, 145, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.btn-soft {
    background: rgba(143, 190, 210, 0.12);
    color: var(--brand-dark);
    border: 1px solid rgba(61, 118, 145, 0.18);
    box-shadow: none;
}

.btn-soft:hover {
    background: rgba(143, 190, 210, 0.2);
    box-shadow: none;
}

.btn-nav {
    color: #fff;
    background: linear-gradient(135deg, #8bc1d6, #3d7691);
}

.hero {
    position: relative;
    padding: 64px 0 56px;
    background:
        linear-gradient(120deg, rgba(6, 17, 24, 0.84), rgba(6, 17, 24, 0.56)),
        url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    color: #fff;
}

.hero-gradient {
    position: absolute;
    inset: auto auto -110px -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 190, 210, 0.28), transparent 68%);
    pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.feature-split,
.appointment-grid,
.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.hero h1,
.page-hero h1,
.section h2,
.site-footer h3,
.hero-info-card h3,
.feature-panel h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero h1 {
    margin-top: 14px;
    font-size: clamp(2.7rem, 4.7vw, 4.4rem);
    max-width: 9ch;
}

.hero p {
    margin: 16px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-metrics {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
}

.hero-metrics div,
.contact-point,
.feature-panel,
.page-side-card,
.benefit-card,
.testimonial-card,
.appointment-form,
.contact-panel,
.section-shell,
.card,
.hero-card {
    border-radius: var(--radius-lg);
}

.hero-metrics div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hero-metrics strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 36px rgba(6, 17, 24, 0.22);
}

.hero-visual-card {
    align-self: stretch;
    min-height: 100%;
}

.hero-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.hero-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(246, 251, 255, 0.9);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-visual-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(246, 251, 255, 0.92);
    color: var(--ink);
}

.hero-visual-note strong {
    display: block;
    font-size: 1.05rem;
}

.hero-visual-note p {
    margin: 6px 0 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.mini-kicker,
.card-kicker,
.footer-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-dark);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    color: #f7fff8;
}

.eyebrow-soft {
    background: rgba(143, 190, 210, 0.12);
    color: var(--brand-dark);
}

.bullet-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--ink-soft);
}

.bullet-list li + li {
    margin-top: 8px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 800;
}

.section {
    padding: 32px 0;
}

.hero-benefits {
    padding-top: 20px;
    position: relative;
}

.hero-benefits .section-shell {
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.18), transparent 26%),
        radial-gradient(circle at right bottom, rgba(238, 245, 248, 0.96), transparent 32%),
        linear-gradient(145deg, rgba(246, 251, 255, 0.98), rgba(245, 250, 248, 0.92));
    border: 1px solid rgba(14, 34, 45, 0.07);
    box-shadow: 0 24px 46px rgba(14, 34, 45, 0.08);
}

.hero-benefits .section-shell::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 190, 210, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-benefits .section-shell::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -34px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.68), transparent 70%);
    pointer-events: none;
}

.hero-benefits .benefit-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.benefit-card,
.page-side-card,
.feature-panel,
.contact-point,
.contact-panel {
    padding: 22px;
    background: rgba(246, 251, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
}

.hero-benefits .benefit-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 252, 0.94));
    border: 1px solid rgba(61, 118, 145, 0.1);
    box-shadow: 0 16px 36px rgba(14, 34, 45, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-benefits .benefit-card > * {
    position: relative;
    z-index: 1;
}

.hero-benefits .benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #87bdd4, rgba(88, 188, 176, 0));
}

.hero-benefits .benefit-card:nth-child(2)::before {
    background: linear-gradient(90deg, #3d7691, rgba(61, 118, 145, 0));
}

.hero-benefits .benefit-card:nth-child(3)::before {
    background: linear-gradient(90deg, #8fbed2, rgba(208, 170, 116, 0));
}

.hero-benefits .benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(61, 118, 145, 0.18);
    box-shadow: 0 24px 42px rgba(14, 34, 45, 0.12);
}

.hero-benefits .benefit-card .mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(143, 190, 210, 0.1);
    border: 1px solid rgba(61, 118, 145, 0.12);
}

.hero-benefits .benefit-card .mini-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

.benefit-card h3,
.feature-panel h3,
.page-side-card h3 {
    margin: 10px 0 8px;
    font-size: 1.35rem;
}

.hero-benefits .benefit-card h3 {
    margin: 4px 0 0;
    font-size: clamp(1.45rem, 2vw, 1.72rem);
    line-height: 1.12;
    max-width: 18ch;
}

.benefit-card p,
.feature-panel p,
.page-side-card p {
    margin: 0;
    color: var(--ink-soft);
}

.hero-benefits .benefit-card p {
    max-width: 31ch;
    font-size: 0.98rem;
}

.section-shell {
    padding: 34px;
    background: rgba(246, 251, 255, 0.88);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section-shell-soft {
    background: rgba(246, 251, 255, 0.82);
}

.feature-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.08), rgba(246, 251, 255, 0.86) 34%),
        rgba(246, 251, 255, 0.9);
}

.accent-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.12), rgba(238, 245, 248, 0.72)),
        rgba(246, 251, 255, 0.9);
}

.appointment-shell {
    background:
        linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(230, 244, 250, 0.88)),
        rgba(246, 251, 255, 0.92);
}

.widget-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.1), rgba(246, 251, 255, 0.96) 34%),
        rgba(246, 251, 255, 0.94);
}

.booking-shell {
    background:
        linear-gradient(180deg, rgba(230, 244, 250, 0.82), rgba(246, 251, 255, 0.96)),
        rgba(246, 251, 255, 0.92);
}

.section-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.section-intro > div {
    max-width: 660px;
}

.section-intro h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 3.3vw, 3rem);
    max-width: 15ch;
}

.section-intro p {
    max-width: 420px;
    margin: 0;
    padding-top: 36px;
}

#gallery .section-intro h2 {
    max-width: none;
    white-space: nowrap;
}

.section-intro p,
.feature-copy p,
.appointment-copy p,
.page-hero p,
.blog-detail-card p,
.service-detail-card p,
.card p {
    color: var(--ink-soft);
}

.feature-copy h2,
.appointment-copy h2,
.page-hero h1 {
    margin-top: 14px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    max-width: 11ch;
}

.feature-panels {
    display: grid;
    gap: 18px;
}

.feature-copy .btn-secondary {
    background: rgba(143, 190, 210, 0.12);
    border-color: rgba(61, 118, 145, 0.18);
    color: var(--brand-dark);
}

.feature-copy .btn-secondary:hover {
    background: rgba(143, 190, 210, 0.2);
}

.feature-panel h3 {
    font-size: 1.8rem;
}

.dark-panel {
    background: #0e222d;
    border-color: transparent;
    color: #fff;
}

.dark-panel .mini-kicker {
    color: #aee2f7;
}

.dark-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.grid {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

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

.services-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 18px 28px;
    align-items: center;
    margin-bottom: 22px;
}

.services-intro > div:first-child {
    max-width: 660px;
}

.services-intro h2 {
    max-width: 14ch;
}

.services-intro-side {
    display: grid;
    align-content: center;
    gap: 16px;
    max-width: 420px;
    justify-self: end;
    min-height: 100%;
}

.services-intro-side p {
    max-width: none;
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.services-intro-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.services-intro-list li {
    position: relative;
    padding: 0 0 10px 18px;
    border-bottom: 1px solid rgba(14, 34, 45, 0.08);
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.45;
}

.services-intro-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87bdd4, #3d7691);
}

.services-intro-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

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

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

.card {
    overflow: hidden;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 16px 32px rgba(14, 34, 45, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 34px rgba(14, 34, 45, 0.1);
}

.card-content {
    display: grid;
    gap: 10px;
}

.card h3,
.card h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1.14;
}

.card-title {
    font-weight: 800;
    color: var(--brand-dark);
}

.card-image,
.doctor-image {
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 18px;
}

.card-image {
    height: 210px;
}

.doctor-image {
    height: 290px;
}

.section-accent {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.1), rgba(14, 34, 45, 0.02)),
        var(--sand);
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 26px;
    align-items: start;
}

.testimonial-copy h2 {
    margin-top: 12px;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    max-width: 12ch;
}

.testimonial-card {
    padding: 24px;
    background: rgba(246, 251, 255, 0.9);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-card p {
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 1.02rem;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-meta {
    display: block;
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr;
    grid-template-areas:
        "feature detail-a detail-b"
        "feature detail-c detail-c";
    gap: 16px;
}

.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 250px;
    border: 1px solid rgba(14, 34, 45, 0.08);
    background: #dce8e4;
    box-shadow: 0 18px 32px rgba(14, 34, 45, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transform-origin: center;
    border-radius: inherit;
    transition: transform 0.32s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(14, 34, 45, 0), rgba(14, 34, 45, 0.72));
    pointer-events: none;
}

.gallery-feature {
    grid-area: feature;
    min-height: 520px;
}

.gallery-detail-a {
    grid-area: detail-a;
}

.gallery-detail-b {
    grid-area: detail-b;
}

.gallery-detail-c {
    grid-area: detail-c;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 20px;
    color: #fff;
}

.gallery-caption span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.gallery-caption p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.instagram-shell {
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(246, 251, 249, 0.98));
    border: 1px solid rgba(14, 34, 45, 0.08);
    padding: 22px;
}

.instagram-shell .section-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    max-width: 8ch;
}

.instagram-type {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(143, 190, 210, 0.12);
    color: var(--brand-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.instagram-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 14px 26px rgba(14, 34, 45, 0.07);
    background: rgba(143, 190, 210, 0.08);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-card:hover img {
    transform: scale(1.05);
}

.instagram-card-overlay {
    position: absolute;
    inset: auto 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 16px;
    background: rgba(246, 251, 255, 0.92);
    color: var(--ink);
}

.instagram-date {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.instagram-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.instagram-empty {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(14, 34, 45, 0.14);
    display: grid;
    gap: 14px;
    justify-items: start;
}

.instagram-empty p {
    margin: 0;
    color: var(--ink-soft);
}

.section-appointment {
    scroll-margin-top: 96px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.appointment-copy {
    max-width: 520px;
}

.contact-points,
.contact-panel {
    display: grid;
    gap: 14px;
}

.whatsapp-panel {
    align-self: stretch;
    display: flex;
}

.whatsapp-card {
    width: 100%;
    min-height: 100%;
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(232, 248, 238, 0.96), rgba(247, 251, 253, 0.98)),
        #fff;
    border: 1px solid rgba(22, 163, 74, 0.14);
    box-shadow: 0 22px 48px rgba(8, 47, 68, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.whatsapp-card h3 {
    margin: 14px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.08;
    color: var(--brand-deep);
}

.whatsapp-card p {
    max-width: 34ch;
    margin: 16px 0 0;
    color: var(--ink-soft);
}

.whatsapp-text-link {
    margin-top: 18px;
    color: #128c7e;
    font-weight: 800;
    text-decoration: none;
}

.whatsapp-text-link:hover,
.whatsapp-text-link:focus-visible {
    color: #075e54;
}

.whatsapp-text-link:focus-visible {
    border-radius: 8px;
    outline: 3px solid rgba(37, 211, 102, 0.22);
    outline-offset: 4px;
}

.whatsapp-button {
    margin-top: 26px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 18px 30px rgba(18, 140, 126, 0.2);
}

.whatsapp-button:hover {
    box-shadow: 0 22px 34px rgba(18, 140, 126, 0.26);
}

.whatsapp-mark {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    flex: 0 0 auto;
}

.whatsapp-mark svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #fff;
}

.widget-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: start;
}

.widget-copy h2 {
    margin-top: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    line-height: 1.08;
    max-width: 10ch;
}

.widget-copy p {
    color: var(--ink-soft);
}

.widget-card-surface {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 18px 36px rgba(14, 34, 45, 0.08);
}

.doktortakvimi-widget-box {
    min-height: 420px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(238, 248, 245, 0.92), rgba(255, 255, 255, 0.94));
    border: 1px dashed rgba(61, 118, 145, 0.24);
    overflow: hidden;
}

.doktortakvimi-widget-box iframe {
    display: block;
    width: 100%;
    min-height: 620px;
    border: 0;
}

.widget-status {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.widget-fallback-btn {
    margin-top: 16px;
}

.widget-demo-card {
    min-height: 420px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.widget-demo-card h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1.12;
}

.widget-demo-card p {
    margin: 0;
    color: var(--ink-soft);
}

.widget-demo-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(143, 190, 210, 0.14);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.widget-demo-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.widget-demo-slots span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(14, 34, 45, 0.06);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.booking-actions-card,
.booking-widget-surface {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 16px 32px rgba(14, 34, 45, 0.06);
}

.booking-actions-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: center;
}

.booking-actions-card h3 {
    margin: 10px 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1.12;
}

.booking-actions-card p {
    margin: 0;
    color: var(--ink-soft);
}

.booking-actions {
    display: grid;
    gap: 12px;
}

.booking-widget-surface {
    max-width: 540px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.booking-widget-surface::before,
.booking-widget-surface::after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    width: 56px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76));
    pointer-events: none;
    z-index: 0;
}

.booking-widget-surface::before {
    left: 10px;
}

.booking-widget-surface::after {
    right: 10px;
}

.booking-widget-live {
    width: fit-content;
    max-width: none;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    zoom: 1.12;
    position: relative;
    z-index: 1;
}

.booking-widget-live > * {
    max-width: 100%;
}

@supports not (zoom: 1) {
    .booking-widget-live {
        transform: scale(1.12);
        transform-origin: top center;
    }

    .booking-widget-surface {
        padding-bottom: 56px;
    }
}

.booking-widget-stack {
    display: grid;
    gap: 16px;
}

.booking-widget-stack iframe {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
}

.booking-widget-live iframe {
    min-height: 0;
}

.booking-widget-fallback {
    display: grid;
    gap: 14px;
    justify-items: start;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(143, 190, 210, 0.08);
    border: 1px solid rgba(61, 118, 145, 0.14);
}

.booking-widget-fallback p {
    margin: 0;
    color: var(--ink-soft);
}

.booking-shell {
    padding: 24px;
}

.booking-shell .section-intro {
    margin-bottom: 18px;
}

.booking-shell .section-intro p {
    padding-top: 10px;
}

@media (max-width: 1080px) {
    .booking-widget-surface {
        max-width: 500px;
    }

    .booking-widget-live {
        zoom: 1.05;
    }

    @supports not (zoom: 1) {
        .booking-widget-live {
            transform: scale(1.05);
        }
    }
}

@media (max-width: 820px) {
    .booking-widget-surface {
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .booking-widget-live {
        zoom: 1;
    }

    @supports not (zoom: 1) {
        .booking-widget-live {
            transform: none;
        }

        .booking-widget-surface {
            padding-bottom: 0;
        }
    }

    .booking-widget-surface::before,
    .booking-widget-surface::after {
        width: 24px;
        opacity: 0.75;
    }

    .booking-widget-surface::before {
        left: 0;
    }

    .booking-widget-surface::after {
        right: 0;
        left: auto;
    }
}

.appointment-form {
    padding: 28px;
    background: rgba(246, 251, 255, 0.95);
    border: 1px solid rgba(14, 34, 45, 0.09);
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    height: 100%;
}

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

input,
textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(14, 34, 45, 0.12);
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: rgba(143, 190, 210, 0.8);
    box-shadow: 0 0 0 4px rgba(143, 190, 210, 0.12);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 14px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.alert.success {
    background: rgba(34, 162, 107, 0.12);
    color: #13724a;
}

.alert.error {
    background: rgba(198, 47, 70, 0.12);
    color: #92263a;
}

.page-hero {
    padding: 56px 0 18px;
}

.page-hero-grid {
    align-items: stretch;
}

.muted {
    color: var(--ink-soft);
}

.blog-detail-card,
.service-detail-card {
    padding: 28px;
}

.blog-list-card {
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-article-shell {
    background:
        linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(255, 255, 255, 0.92)),
        rgba(246, 251, 255, 0.96);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 800;
}

.blog-article {
    max-width: 840px;
    margin: 0 auto;
}

.blog-article-image {
    width: 100%;
    height: clamp(280px, 42vw, 480px);
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 18px 34px rgba(14, 34, 45, 0.08);
}

.blog-prose {
    display: grid;
    gap: 16px;
}

.blog-prose p {
    margin: 0;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.82;
}

.empty-state {
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(14, 34, 45, 0.16);
}

.empty-state h2 {
    margin: 0 0 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
}

.empty-state p {
    margin: 0;
    color: var(--ink-soft);
}

.contact-layout {
    align-items: start;
}

.site-footer {
    margin-top: 24px;
    padding: 48px 0 20px;
    background:
        linear-gradient(135deg, rgba(18, 59, 70, 0.96), rgba(11, 33, 41, 0.98)),
        #0c2730;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.35fr;
    gap: 24px;
}

.site-footer h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
    color: #fff;
}

.site-footer a {
    color: #bcfff2;
    text-decoration: none;
}

.footer-contact-inline {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 6px;
    white-space: nowrap;
}

.footer-contact-inline a {
    white-space: nowrap;
}

.footer-brand p {
    max-width: 320px;
}

.footer-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 0 18px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.54);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero-grid,
    .feature-split,
    .appointment-grid,
    .contact-layout,
    .testimonial-layout,
    .widget-layout {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .feature-copy h2,
    .appointment-copy h2,
    .page-hero h1,
    .section-intro h2 {
        max-width: none;
    }

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

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

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

    #gallery .section-intro h2 {
        white-space: normal;
    }
}

@media (max-width: 820px) {
    .topbar-wrap,
    .section-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-intro p {
        max-width: none;
        padding-top: 0;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-intro > div:first-child,
    .services-intro-side {
        max-width: none;
        justify-self: stretch;
    }

    .services-intro-side {
        align-content: start;
    }

    .services-intro-side p {
        padding-top: 0;
    }

    .benefit-strip,
    .hero-benefits .benefit-strip,
    .cards-2,
    .cards-3,
    .instagram-feed-grid,
    .hero-metrics,
    .footer-grid,
    .form-grid,
    .booking-actions-card {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "feature"
            "detail-a"
            "detail-b"
            "detail-c";
    }

    .gallery-feature,
    .gallery-item {
        min-height: 240px;
    }

    .section-shell {
        padding: 26px;
    }

    .hero-benefits .section-shell {
        padding: 24px;
    }

    .hero-benefits .benefit-card {
        padding: 24px 22px 22px;
    }

    .hero-visual-card img {
        min-height: 320px;
    }

    .empty-state {
        padding: 26px;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .logo-image {
        width: 132px;
    }

    .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: rgba(246, 251, 255, 0.98);
        border-radius: 24px;
        border: 1px solid rgba(14, 34, 45, 0.08);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        text-align: center;
    }

    .hero {
        padding-top: 46px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-visual-note {
        position: static;
        border-radius: 0;
    }

    .hero-info-card,
    .appointment-form,
    .benefit-card,
    .feature-panel,
    .page-side-card,
    .contact-point,
    .contact-panel {
        padding: 22px;
    }
}

/* Billboard-inspired redesign */
:root {
    --ink: #123c52;
    --ink-soft: #527184;
    --brand: #88cae2;
    --brand-dark: #0c415a;
    --brand-deep: #082f44;
    --brand-soft: #ebf8fe;
    --sand: #f2fbff;
    --white: #ffffff;
    --border: rgba(8, 47, 68, 0.12);
    --shadow: 0 24px 60px rgba(9, 57, 79, 0.12);
    --radius-lg: 30px;
}

body,
input,
textarea,
button {
    font-family: "Manrope", "Segoe UI", sans-serif;
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 0% 12%, rgba(255, 255, 255, 0.94), transparent 24%),
        radial-gradient(circle at 100% 18%, rgba(144, 203, 225, 0.3), transparent 22%),
        linear-gradient(180deg, #ecf8fd 0%, #d6eef7 35%, #effaff 100%);
}

main {
    padding-bottom: 72px;
}

.hero h1,
.page-hero h1,
.section h2,
.site-footer h3,
.hero-info-card h3,
.feature-panel h3,
.card h2,
.card h3,
.widget-copy h2,
.booking-actions-card h3,
.widget-demo-card h3,
.empty-state h2,
.testimonial-copy h2,
.feature-copy h2,
.appointment-copy h2 {
    font-family: "Sora", "Manrope", sans-serif;
    letter-spacing: -0.045em;
}

.topbar {
    background: linear-gradient(90deg, #0d4058, #082d41);
    color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrap {
    min-height: 48px;
    gap: 18px;
}

.topbar-info,
.topbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}

.topbar-actions a,
.topbar-link {
    color: #ddf5ff;
    font-weight: 700;
    text-decoration: none;
}

.site-header {
    background: rgba(240, 249, 253, 0.82);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(8, 47, 68, 0.08);
}

.site-header.is-scrolled {
    background: rgba(247, 252, 255, 0.95);
    box-shadow: 0 18px 40px rgba(8, 47, 68, 0.09);
    border-bottom-color: rgba(8, 47, 68, 0.1);
}

.nav-wrap {
    min-height: 82px;
}

.logo-image {
    width: clamp(150px, 18vw, 208px);
}

.main-nav {
    gap: 10px;
}

.main-nav a {
    font-size: 0.92rem;
    font-weight: 800;
    padding: 11px 16px;
    color: var(--brand-deep);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-deep);
    background: rgba(136, 202, 226, 0.18);
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(8, 47, 68, 0.12);
}

.btn,
.btn-nav {
    background: linear-gradient(135deg, #104a66, #082f44);
    box-shadow: 0 18px 34px rgba(8, 47, 68, 0.22);
}

.btn:hover,
.btn-nav:hover {
    box-shadow: 0 24px 42px rgba(8, 47, 68, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.54);
    color: var(--brand-deep);
    border: 1px solid rgba(8, 47, 68, 0.12);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.7);
}

.btn-soft {
    background: rgba(12, 65, 90, 0.08);
    border-color: rgba(12, 65, 90, 0.12);
    color: var(--brand-deep);
}

.eyebrow {
    background: rgba(12, 65, 90, 0.08);
    color: var(--brand-deep);
    border: 1px solid rgba(8, 47, 68, 0.1);
}

.eyebrow-soft {
    background: rgba(136, 202, 226, 0.16);
    color: var(--brand-dark);
}

.mini-kicker,
.card-kicker,
.footer-eyebrow {
    color: var(--brand-dark);
    letter-spacing: 0.18em;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
    background:
        linear-gradient(112deg, rgba(234, 248, 253, 0.98) 0%, rgba(173, 214, 230, 0.78) 48%, rgba(224, 245, 251, 0.92) 100%),
        url("../uploads/clinic/DSCF4450.jpg") center/cover no-repeat;
    color: var(--brand-deep);
    border-bottom: 1px solid rgba(8, 47, 68, 0.08);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(239, 249, 253, 0.96) 0%, rgba(239, 249, 253, 0.72) 46%, rgba(239, 249, 253, 0.18) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: -130px;
    top: 38px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    border: 58px solid rgba(120, 185, 208, 0.16);
    transform: rotate(18deg);
    pointer-events: none;
}

.hero-gradient,
.hero-orbit {
    position: absolute;
    pointer-events: none;
}

.hero-gradient {
    inset: auto auto -110px -70px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 192, 217, 0.3), transparent 68%);
}

.hero-orbit {
    border-radius: 50%;
    border: 1px solid rgba(8, 47, 68, 0.1);
}

.hero-orbit-left {
    width: 440px;
    height: 440px;
    left: -150px;
    bottom: -180px;
}

.hero-orbit-right {
    width: 520px;
    height: 520px;
    right: -120px;
    top: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 66%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 44px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-brand-lockup {
    margin-bottom: 22px;
}

.hero-logo {
    width: min(244px, 62%);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(8, 47, 68, 0.08));
}

.hero-poster-title {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.hero-role {
    display: inline-flex;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(8, 47, 68, 0.12);
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 8.2ch;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.94;
    color: #fff;
    text-shadow:
        0 2px 0 rgba(8, 47, 68, 0.14),
        0 18px 34px rgba(8, 47, 68, 0.18);
}

.hero-announcement {
    margin: 22px 0 0;
    max-width: 19ch;
    color: var(--brand-deep);
    font-size: clamp(1.18rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.18;
}

.hero p {
    margin-top: 14px;
    max-width: 58ch;
    color: rgba(8, 47, 68, 0.82);
}

.hero-actions {
    margin-top: 28px;
}

.hero-metrics.hero-spotlight-grid {
    margin-top: 30px;
    max-width: 820px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-spotlight-grid div {
    min-height: 138px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(8, 47, 68, 0.1);
    box-shadow: 0 18px 36px rgba(8, 47, 68, 0.12);
    backdrop-filter: blur(16px);
}

.hero-spotlight-grid span {
    display: block;
    margin-bottom: 10px;
    color: rgba(8, 47, 68, 0.66);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-spotlight-grid strong {
    display: block;
    color: var(--brand-deep);
    font-size: 1.02rem;
    line-height: 1.42;
}

.hero-spotlight-grid strong a {
    color: inherit;
    text-decoration: none;
}

.hero-visual-card {
    min-height: 650px;
    overflow: visible;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 30px 70px rgba(8, 47, 68, 0.18);
}

.hero-visual-card > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.hero-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-visual-glow {
    left: -44px;
    top: -38px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-badge {
    top: 22px;
    left: 22px;
    background: rgba(10, 52, 72, 0.82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.hero-visual-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 26px;
    background: rgba(245, 251, 255, 0.82);
    color: var(--brand-deep);
    backdrop-filter: blur(16px);
    z-index: 3;
}

.hero-visual-note strong {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.12rem;
    line-height: 1.2;
}

.hero-visual-note p {
    margin-top: 8px;
    color: rgba(8, 47, 68, 0.72);
}

.hero-floating-card {
    position: absolute;
    left: -22px;
    top: 88px;
    z-index: 3;
    max-width: 250px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(8, 47, 68, 0.1);
    box-shadow: 0 20px 40px rgba(8, 47, 68, 0.16);
    backdrop-filter: blur(16px);
}

.hero-floating-card strong {
    display: block;
    margin-top: 12px;
    color: var(--brand-deep);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.1rem;
    line-height: 1.25;
}

.hero-floating-card p {
    margin: 6px 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.hero-floating-image {
    position: absolute;
    right: -22px;
    bottom: 110px;
    z-index: 3;
    width: min(35%, 220px);
    overflow: hidden;
    border-radius: 26px;
    border: 8px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 42px rgba(8, 47, 68, 0.18);
}

.hero-floating-image img {
    width: 100%;
    aspect-ratio: 0.82 / 1;
    object-fit: cover;
}

.section {
    padding: 38px 0;
}

.section-shell,
.instagram-shell,
.booking-shell,
.appointment-shell,
.widget-shell,
.blog-article-shell,
.empty-state,
.booking-widget-surface,
.widget-card-surface,
.booking-actions-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 250, 254, 0.92));
    border: 1px solid rgba(8, 47, 68, 0.08);
    box-shadow: var(--shadow);
}

.hero-benefits .section-shell {
    background:
        radial-gradient(circle at top left, rgba(149, 204, 223, 0.22), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 248, 253, 0.9));
}

.benefit-card,
.page-side-card,
.feature-panel,
.contact-point,
.contact-panel,
.testimonial-card,
.appointment-form,
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 254, 0.92));
    border: 1px solid rgba(8, 47, 68, 0.08);
    box-shadow: 0 18px 40px rgba(8, 47, 68, 0.08);
}

.hero-benefits .benefit-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 255, 0.92));
    border-color: rgba(8, 47, 68, 0.08);
}

.section-intro h2,
.feature-copy h2,
.appointment-copy h2,
.page-hero h1,
.testimonial-copy h2,
.widget-copy h2 {
    color: var(--brand-deep);
}

.section-intro p,
.feature-copy p,
.appointment-copy p,
.page-hero p,
.blog-detail-card p,
.service-detail-card p,
.card p,
.blog-prose p,
.widget-copy p,
.booking-actions-card p {
    color: var(--ink-soft);
}

.card {
    border-radius: 28px;
}

.card h2,
.card h3 {
    color: var(--brand-deep);
    font-size: 1.55rem;
}

.card-image,
.doctor-image,
.blog-article-image {
    border-radius: 24px;
}

.dark-panel {
    background: linear-gradient(145deg, #0d4058, #082f44);
    color: #fff;
}

.dark-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.testimonial-card p {
    color: var(--brand-deep);
}

.gallery-item {
    border-radius: 30px;
    border-color: rgba(8, 47, 68, 0.08);
    background: #dceef6;
}

.gallery-item::after {
    background: linear-gradient(180deg, rgba(8, 47, 68, 0), rgba(8, 47, 68, 0.8));
}

.instagram-shell {
    background:
        radial-gradient(circle at top left, rgba(136, 202, 226, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 254, 0.96));
}

.instagram-card-overlay,
.booking-widget-surface,
.widget-card-surface {
    background: rgba(255, 255, 255, 0.9);
}

.appointment-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 253, 0.94));
}

input,
textarea {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 47, 68, 0.12);
}

input:focus,
textarea:focus {
    border-color: rgba(12, 65, 90, 0.6);
    box-shadow: 0 0 0 4px rgba(136, 202, 226, 0.2);
}

.page-hero {
    position: relative;
    padding: 74px 0 24px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.92), transparent 28%),
        linear-gradient(180deg, rgba(223, 244, 251, 0.66), rgba(240, 250, 254, 0));
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-side-card {
    backdrop-filter: blur(14px);
}

.text-link,
.blog-back-link {
    color: var(--brand-deep);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 58px 0 0;
    background: linear-gradient(180deg, rgba(230, 246, 252, 0.92), rgba(203, 230, 242, 0.94));
    color: var(--ink);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: -160px;
    top: -80px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: 120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 192, 217, 0.2), rgba(127, 192, 217, 0) 72%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: stretch;
    padding-bottom: 36px;
}

.footer-brand,
.footer-cta-card {
    padding: 30px;
    border-radius: 32px;
    border: 1px solid rgba(8, 47, 68, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.footer-brand {
    background: rgba(255, 255, 255, 0.7);
}

.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 65, 90, 0.08);
    border: 1px solid rgba(8, 47, 68, 0.1);
}

.footer-logo {
    width: 210px;
    margin: 18px 0;
}

.footer-brand p {
    max-width: 46ch;
    color: var(--ink-soft);
}

.footer-cta-card {
    background: linear-gradient(160deg, rgba(13, 64, 88, 0.96), rgba(8, 47, 68, 0.98));
    color: #fff;
}

.footer-cta-card .mini-kicker {
    color: #bfe6f4;
}

.footer-cta-card h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(1.8rem, 2.2vw, 2.45rem);
    line-height: 1.1;
}

.footer-cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.footer-cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-band {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #0d4058, #082d41);
    color: #fff;
    padding: 0 0 18px;
}

.footer-band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-band-item {
    min-height: 106px;
    padding: 20px 22px;
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    background: rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease;
}

.footer-band-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.footer-band-item strong {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(191, 230, 244, 0.82);
}

.footer-band-item span {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.44;
}

.footer-bottom {
    margin-top: 0;
    padding-top: 16px;
    border-top: 0;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
    color: inherit;
}

@media (max-width: 1080px) {
    .hero-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-visual-card {
        min-height: 600px;
    }

    .hero-visual-card > img {
        min-height: 600px;
    }

    .hero-floating-card {
        left: 22px;
        top: 22px;
    }

    .hero-floating-image {
        right: 22px;
    }

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

@media (max-width: 820px) {
    .topbar-wrap {
        align-items: flex-start;
    }

    .hero {
        padding: 58px 0 50px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 12vw, 4.5rem);
    }

    .hero-metrics.hero-spotlight-grid,
    .footer-band-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: auto;
        overflow: hidden;
    }

    .hero-visual-card > img {
        min-height: 420px;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin: 18px 20px 0;
    }

    .hero-floating-image {
        right: 20px;
        bottom: 132px;
        width: 160px;
    }

    .footer-brand,
    .footer-cta-card {
        padding: 24px;
    }
}

@media (max-width: 760px) {
    .topbar-wrap {
        padding: 12px 0;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .main-nav {
        background: rgba(248, 252, 255, 0.98);
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-badge {
        left: 20px;
        top: 20px;
    }

    .hero-visual-note {
        position: static;
        margin: 20px;
    }

    .hero-floating-image {
        position: static;
        width: calc(100% - 40px);
        margin: 0 20px 22px;
    }
}

/* Tone refinement after feedback */
:root {
    --ink: #183b4d;
    --ink-soft: #627d8c;
    --brand: #b9d9e6;
    --brand-dark: #1f536b;
    --brand-deep: #123f56;
    --brand-soft: #f2f9fc;
    --sand: #f7fbfd;
    --border: rgba(18, 63, 86, 0.1);
    --shadow: 0 18px 40px rgba(18, 63, 86, 0.08);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 26%),
        linear-gradient(180deg, #eff8fb 0%, #e3f1f7 34%, #f7fbfd 100%);
}

.topbar {
    background: #17465d;
}

.site-header,
.site-header.is-scrolled {
    background: rgba(251, 254, 255, 0.92);
}

.btn,
.btn-nav {
    background: linear-gradient(135deg, #1f536b, #123f56);
    box-shadow: 0 14px 28px rgba(18, 63, 86, 0.18);
}

.btn:hover,
.btn-nav:hover {
    box-shadow: 0 18px 34px rgba(18, 63, 86, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(18, 63, 86, 0.1);
    backdrop-filter: none;
}

.hero {
    padding: 72px 0 62px;
    background:
        linear-gradient(90deg, rgba(233, 246, 251, 0.96) 0%, rgba(190, 220, 232, 0.86) 52%, rgba(224, 241, 248, 0.74) 100%),
        url("../uploads/clinic/DSCF4450.jpg") center/cover no-repeat;
}

.hero::before {
    background: linear-gradient(90deg, rgba(239, 248, 252, 0.95) 0%, rgba(239, 248, 252, 0.84) 44%, rgba(239, 248, 252, 0.34) 100%);
}

.hero::after {
    left: -110px;
    top: 46px;
    width: 620px;
    height: 620px;
    border-width: 34px;
    border-color: rgba(103, 160, 183, 0.14);
}

.hero-gradient,
.hero-orbit,
.hero-visual-glow,
.hero-floating-card,
.hero-floating-image {
    display: none;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 34px;
}

.hero-logo {
    filter: none;
}

.hero-role {
    background: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    max-width: 9ch;
    color: var(--brand-deep);
    text-shadow: none;
}

.hero-announcement {
    max-width: 22ch;
    color: var(--brand-dark);
}

.hero p {
    color: rgba(18, 63, 86, 0.8);
}

.hero-metrics.hero-spotlight-grid {
    max-width: 760px;
}

.hero-spotlight-grid div {
    min-height: 122px;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(18, 63, 86, 0.08);
    box-shadow: 0 12px 28px rgba(18, 63, 86, 0.07);
    backdrop-filter: none;
}

.hero-visual-card {
    min-height: 560px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0 24px 52px rgba(18, 63, 86, 0.12);
}

.hero-visual-card > img {
    min-height: 560px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-deep);
    border-color: rgba(18, 63, 86, 0.1);
    backdrop-filter: none;
}

.hero-visual-note {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
    box-shadow: 0 10px 24px rgba(18, 63, 86, 0.08);
}

.section-shell,
.instagram-shell,
.booking-shell,
.appointment-shell,
.widget-shell,
.blog-article-shell,
.empty-state,
.booking-widget-surface,
.widget-card-surface,
.booking-actions-card,
.benefit-card,
.page-side-card,
.feature-panel,
.contact-point,
.contact-panel,
.testimonial-card,
.appointment-form,
.card,
.instagram-card-overlay {
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.section-shell,
.instagram-shell,
.booking-shell,
.appointment-shell,
.widget-shell,
.blog-article-shell,
.empty-state,
.booking-widget-surface,
.widget-card-surface,
.booking-actions-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 253, 0.96));
}

.hero-benefits .section-shell,
.instagram-shell {
    background:
        radial-gradient(circle at top left, rgba(185, 217, 230, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 252, 0.96));
}

.benefit-card,
.page-side-card,
.feature-panel,
.contact-point,
.contact-panel,
.testimonial-card,
.appointment-form,
.card {
    background: rgba(255, 255, 255, 0.96);
}

.dark-panel {
    background: linear-gradient(145deg, #1c5269, #123f56);
}

.page-hero::before {
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.94), transparent 26%),
        linear-gradient(180deg, rgba(222, 240, 247, 0.5), rgba(247, 251, 253, 0));
}

.site-footer {
    background: linear-gradient(180deg, #edf7fb, #dfedf4);
}

.site-footer::before,
.site-footer::after {
    opacity: 0.6;
}

.footer-brand,
.footer-cta-card {
    background: rgba(255, 255, 255, 0.9);
}

.footer-cta-card {
    color: var(--ink);
}

.footer-cta-card .mini-kicker,
.footer-cta-card h3 {
    color: var(--brand-deep);
}

.footer-cta-card p {
    color: var(--ink-soft);
}

.footer-cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-deep);
    border-color: rgba(18, 63, 86, 0.1);
}

.footer-band {
    background: #123f56;
}

.footer-band-item {
    background: rgba(255, 255, 255, 0.03);
}

.footer-band-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1080px) {
    .hero-visual-card,
    .hero-visual-card > img {
        min-height: 460px;
    }
}

@media (max-width: 820px) {
    .hero {
        padding: 56px 0 46px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-visual-card,
    .hero-visual-card > img {
        min-height: 400px;
    }
}

/* Hero rollback after visual feedback */
.hero {
    padding: 80px 0 70px;
    background:
        linear-gradient(90deg, rgba(233, 246, 251, 0.94) 0%, rgba(190, 220, 232, 0.72) 50%, rgba(224, 241, 248, 0.28) 100%),
        url("../uploads/clinic/DSCF4450.jpg") center/cover no-repeat;
}

.hero::before {
    background: linear-gradient(90deg, rgba(239, 248, 252, 0.92) 0%, rgba(239, 248, 252, 0.68) 44%, rgba(239, 248, 252, 0.1) 100%);
}

.hero::after {
    left: -130px;
    top: 38px;
    width: 720px;
    height: 720px;
    border-width: 44px;
    border-color: rgba(103, 160, 183, 0.16);
}

.hero-gradient {
    display: block;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(127, 192, 217, 0.22), transparent 68%);
}

.hero-orbit {
    display: block;
}

.hero-orbit-left {
    width: 420px;
    height: 420px;
    left: -150px;
    bottom: -190px;
}

.hero-orbit-right {
    display: none;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 44px;
}

.hero h1 {
    max-width: 8.2ch;
}

.hero-visual-card {
    min-height: 650px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 28px 60px rgba(18, 63, 86, 0.13);
}

.hero-visual-card > img {
    min-height: 650px;
}

.hero-visual-note {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(18, 63, 86, 0.08);
}

.hero-floating-card,
.hero-floating-image,
.hero-visual-glow {
    display: none;
}

@media (max-width: 1080px) {
    .hero-visual-card,
    .hero-visual-card > img {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .hero {
        padding: 60px 0 48px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-visual-card,
    .hero-visual-card > img {
        min-height: 420px;
    }
}

/* Restore pre-redesign theme */
:root {
    --ink: #0e222d;
    --ink-soft: #3d5867;
    --brand: #8fbed2;
    --brand-dark: #3d7691;
    --brand-soft: #d2e7f0;
    --sand: #eef5f8;
    --white: #ffffff;
    --border: rgba(14, 34, 45, 0.1);
    --shadow: 0 18px 45px rgba(14, 34, 45, 0.08);
    --radius-lg: 28px;
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(238, 245, 248, 0.9), transparent 32%),
        #f4fbff;
}

main {
    padding-bottom: 52px;
}

.hero h1,
.page-hero h1,
.section h2,
.site-footer h3,
.hero-info-card h3,
.feature-panel h3,
.card h2,
.card h3,
.widget-copy h2,
.booking-actions-card h3,
.widget-demo-card h3,
.empty-state h2,
.testimonial-copy h2,
.feature-copy h2,
.appointment-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-header {
    background: rgba(246, 251, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(14, 34, 45, 0.08);
    border-bottom-color: rgba(14, 34, 45, 0.08);
    background: rgba(246, 251, 255, 0.97);
}

.nav-wrap {
    min-height: 68px;
}

.logo-image {
    width: 150px;
}

.main-nav {
    gap: 8px;
}

.main-nav a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    padding: 10px 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-dark);
    background: rgba(143, 190, 210, 0.12);
}

.main-nav .btn-nav,
.main-nav .btn-nav:hover,
.main-nav .btn-nav.active,
.btn-nav {
    color: #fff;
    background: linear-gradient(135deg, #8bc1d6, #3d7691);
}

.nav-toggle {
    border: 1px solid rgba(14, 34, 45, 0.12);
    background: var(--white);
    color: var(--ink);
}

.btn {
    background: linear-gradient(135deg, #87bdd4, #366d88);
    box-shadow: 0 18px 28px rgba(61, 118, 145, 0.22);
}

.btn:hover {
    box-shadow: 0 22px 32px rgba(61, 118, 145, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.btn-soft {
    background: rgba(143, 190, 210, 0.12);
    color: var(--brand-dark);
    border: 1px solid rgba(61, 118, 145, 0.18);
    box-shadow: none;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #f7fff8;
    border: 0;
}

.eyebrow-soft {
    background: rgba(143, 190, 210, 0.12);
    color: var(--brand-dark);
}

.mini-kicker,
.card-kicker,
.footer-eyebrow {
    color: var(--brand-dark);
}

.hero {
    padding: 64px 0 56px;
    background:
        linear-gradient(120deg, rgba(6, 17, 24, 0.84), rgba(6, 17, 24, 0.56)),
        url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    color: #fff;
}

.hero::before,
.hero::after,
.page-hero::before,
.site-footer::before,
.site-footer::after {
    content: none;
}

.hero-gradient {
    display: block;
    position: absolute;
    inset: auto auto -110px -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 190, 210, 0.28), transparent 68%);
    pointer-events: none;
}

.hero-orbit,
.hero-brand-lockup,
.hero-logo,
.hero-poster-title,
.hero-role,
.hero-announcement,
.hero-visual-glow,
.hero-floating-card,
.hero-floating-image {
    display: none;
}

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

.hero h1 {
    margin-top: 14px;
    font-size: clamp(2.7rem, 4.7vw, 4.4rem);
    max-width: 9ch;
    color: #fff;
    text-shadow: none;
}

.hero p {
    color: rgba(255, 255, 255, 0.82);
}

.hero-metrics {
    max-width: 520px;
    gap: 12px;
}

.hero-metrics div {
    min-height: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 36px rgba(6, 17, 24, 0.22);
}

.hero-visual-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-visual-card > img,
.hero-visual-card img {
    min-height: 460px;
    border-radius: inherit;
}

.hero-badge {
    top: 18px;
    left: 18px;
    background: rgba(246, 251, 255, 0.9);
    color: var(--ink);
    border: 0;
    backdrop-filter: none;
}

.hero-visual-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(246, 251, 255, 0.92);
    color: var(--ink);
    box-shadow: none;
}

.hero-visual-note strong {
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 1.05rem;
}

.hero-visual-note p {
    color: var(--ink-soft);
}

.section {
    padding: 32px 0;
}

.section-shell {
    padding: 34px;
    background: rgba(246, 251, 255, 0.88);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: var(--shadow);
}

.section-shell-soft {
    background: rgba(246, 251, 255, 0.82);
}

.feature-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.08), rgba(246, 251, 255, 0.86) 34%),
        rgba(246, 251, 255, 0.9);
}

.accent-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.12), rgba(238, 245, 248, 0.72)),
        rgba(246, 251, 255, 0.9);
}

.appointment-shell {
    background:
        linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(230, 244, 250, 0.88)),
        rgba(246, 251, 255, 0.92);
}

.widget-shell {
    background:
        linear-gradient(135deg, rgba(143, 190, 210, 0.1), rgba(246, 251, 255, 0.96) 34%),
        rgba(246, 251, 255, 0.94);
}

.booking-shell {
    background:
        linear-gradient(180deg, rgba(230, 244, 250, 0.82), rgba(246, 251, 255, 0.96)),
        rgba(246, 251, 255, 0.92);
}

.hero-benefits .section-shell {
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.18), transparent 26%),
        radial-gradient(circle at right bottom, rgba(238, 245, 248, 0.96), transparent 32%),
        linear-gradient(145deg, rgba(246, 251, 255, 0.98), rgba(245, 250, 248, 0.92));
    border: 1px solid rgba(14, 34, 45, 0.07);
    box-shadow: 0 24px 46px rgba(14, 34, 45, 0.08);
}

.hero-benefits .section-shell::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 190, 210, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-benefits .section-shell::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -34px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.68), transparent 70%);
    pointer-events: none;
}

.benefit-card,
.page-side-card,
.feature-panel,
.contact-point,
.contact-panel {
    background: rgba(246, 251, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.hero-benefits .benefit-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 252, 0.94));
    border: 1px solid rgba(61, 118, 145, 0.1);
    box-shadow: 0 16px 36px rgba(14, 34, 45, 0.08);
}

.feature-copy .btn-secondary {
    background: rgba(143, 190, 210, 0.12);
    border-color: rgba(61, 118, 145, 0.18);
    color: var(--brand-dark);
}

.feature-copy .btn-secondary:hover {
    background: rgba(143, 190, 210, 0.2);
}

.dark-panel {
    background: #0e222d;
    color: #fff;
}

.dark-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.card {
    background: var(--white);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 16px 32px rgba(14, 34, 45, 0.07);
}

.card h2,
.card h3 {
    color: inherit;
    font-size: 1.8rem;
}

.testimonial-card {
    background: rgba(246, 251, 255, 0.9);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    color: var(--ink);
}

.gallery-item {
    border-radius: 26px;
    border: 1px solid rgba(14, 34, 45, 0.08);
    background: #dce8e4;
    box-shadow: 0 18px 32px rgba(14, 34, 45, 0.08);
}

.gallery-item::after {
    background: linear-gradient(180deg, rgba(14, 34, 45, 0), rgba(14, 34, 45, 0.72));
}

.instagram-shell {
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(246, 251, 249, 0.98));
    border: 1px solid rgba(14, 34, 45, 0.08);
    padding: 22px;
}

.booking-actions-card,
.booking-widget-surface {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 34, 45, 0.08);
    box-shadow: 0 16px 32px rgba(14, 34, 45, 0.06);
}

.appointment-form {
    background: rgba(246, 251, 255, 0.95);
    border: 1px solid rgba(14, 34, 45, 0.09);
}

input,
textarea {
    background: #fff;
    border: 1px solid rgba(14, 34, 45, 0.12);
}

input:focus,
textarea:focus {
    border-color: rgba(143, 190, 210, 0.8);
    box-shadow: 0 0 0 4px rgba(143, 190, 210, 0.12);
}

.page-hero {
    padding: 56px 0 18px;
}

.site-footer {
    margin-top: 24px;
    padding: 48px 0 20px;
    background:
        linear-gradient(135deg, rgba(18, 59, 70, 0.96), rgba(11, 33, 41, 0.98)),
        #0c2730;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.35fr;
    gap: 24px;
}

.site-footer h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
    color: #fff;
}

.site-footer a {
    color: #bcfff2;
}

.footer-brand p {
    max-width: 320px;
}

.footer-logo {
    width: 180px;
    margin: 0 0 18px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero-grid,
    .feature-split,
    .appointment-grid,
    .contact-layout,
    .testimonial-layout,
    .widget-layout {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .feature-copy h2,
    .appointment-copy h2,
    .page-hero h1,
    .section-intro h2 {
        max-width: none;
    }

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

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

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

@media (max-width: 820px) {
    .benefit-strip,
    .hero-benefits .benefit-strip,
    .cards-2,
    .cards-3,
    .instagram-feed-grid,
    .hero-metrics,
    .footer-grid,
    .form-grid,
    .booking-actions-card {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding: 26px;
    }

    .hero-benefits .section-shell {
        padding: 24px;
    }

    .hero-benefits .benefit-card {
        padding: 24px 22px 22px;
    }

    .hero-visual-card img,
    .hero-visual-card > img {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .logo-image {
        width: 132px;
    }

    .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: rgba(246, 251, 255, 0.98);
        border-radius: 24px;
        border: 1px solid rgba(14, 34, 45, 0.08);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        text-align: center;
    }

    .hero {
        padding-top: 46px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-visual-note {
        position: static;
        border-radius: 0;
    }
}

.instagram-shell {
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(143, 190, 210, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 28%),
        linear-gradient(135deg, rgba(248, 252, 255, 0.98), rgba(236, 246, 250, 0.94));
    border: 1px solid rgba(61, 118, 145, 0.12);
    box-shadow: 0 24px 48px rgba(14, 34, 45, 0.08);
}

.instagram-shell::before {
    content: "";
    position: absolute;
    left: -44px;
    bottom: -32px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 190, 210, 0.16), transparent 70%);
    pointer-events: none;
}

.instagram-shell::after {
    content: "";
    position: absolute;
    top: -64px;
    right: -36px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 72%);
    pointer-events: none;
}

.instagram-header,
.instagram-feed-grid,
.instagram-actions,
.instagram-empty {
    position: relative;
    z-index: 1;
}

.instagram-header {
    max-width: 980px;
    margin-bottom: 30px;
}

.instagram-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(2.1rem, 3.7vw, 3.3rem);
    line-height: 1.03;
    max-width: 18ch;
}

.instagram-heading p {
    max-width: 72ch;
    margin: 18px 0 0;
    color: var(--ink-soft);
}

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

.instagram-card {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(14, 34, 45, 0.08);
    background: linear-gradient(180deg, rgba(214, 229, 236, 0.88), rgba(255, 255, 255, 0.86));
    box-shadow: 0 20px 32px rgba(14, 34, 45, 0.09);
}

.instagram-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.instagram-card-media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(214, 229, 236, 0.88);
}

.instagram-card-media.is-missing {
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(214, 229, 236, 0.94), rgba(248, 252, 255, 0.96));
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.instagram-card-placeholder {
    display: none;
    max-width: 20ch;
    color: #4c6b7a;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.instagram-card-media.is-missing .instagram-card-placeholder {
    display: block;
}

.instagram-card:hover .instagram-card-media img {
    transform: scale(1.07);
    filter: saturate(1.05);
}

.instagram-card-link:focus-visible {
    outline: 3px solid rgba(143, 190, 210, 0.42);
    outline-offset: 4px;
}

.instagram-card-footer {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(237, 246, 250, 0.94));
    border-top: 1px solid rgba(14, 34, 45, 0.08);
    color: var(--ink);
}

.instagram-card-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.instagram-card-meta-copy {
    display: grid;
    gap: 4px;
}

.instagram-card-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64808f;
}

.instagram-type {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(143, 190, 210, 0.18);
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.instagram-date {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e4658;
}

.instagram-card-panel {
    padding: 10px 12px 11px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(14, 34, 45, 0.08);
}

.instagram-card-panel-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64808f;
}

.instagram-caption {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.instagram-caption-muted {
    color: #708996;
}

.instagram-actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
}

.instagram-empty {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px dashed rgba(14, 34, 45, 0.14);
    display: grid;
    gap: 14px;
    justify-items: start;
}

.instagram-empty p {
    margin: 0;
    max-width: 56ch;
    color: var(--ink-soft);
}

@media (max-width: 1080px) {
    .instagram-heading h2 {
        max-width: none;
    }

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

@media (max-width: 820px) {
    .instagram-shell {
        padding: 24px;
    }

    .instagram-card {
        border-radius: 24px;
    }

    .instagram-card-footer {
        padding: 12px 14px;
    }

    .instagram-card-meta {
        align-items: flex-start;
        gap: 10px;
    }

    .instagram-card-panel {
        padding: 9px 11px 10px;
    }

    .instagram-feed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .instagram-actions {
        justify-content: flex-start;
    }

    .instagram-actions .btn {
        width: 100%;
    }
}

/* Booking widget final width override */
.booking-shell .section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
    align-items: start;
    gap: 20px;
}

.booking-shell .section-intro > div {
    max-width: none;
}

.booking-shell .section-intro h2 {
    max-width: 18ch;
}

.booking-shell .section-intro p {
    max-width: 30ch;
    justify-self: end;
    padding-top: 18px;
}

.booking-shell .booking-widget-surface {
    max-width: 660px;
    padding-left: 56px;
    padding-right: 56px;
}

@media (max-width: 1080px) {
    .booking-shell .section-intro {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .booking-shell .section-intro h2,
    .booking-shell .section-intro p {
        max-width: none;
    }

    .booking-shell .section-intro p {
        justify-self: start;
        padding-top: 0;
    }

    .booking-shell .booking-widget-surface {
        max-width: 580px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 820px) {
    .booking-shell .booking-widget-surface {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

.contact-point-phone {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    column-gap: 16px;
}

.contact-point-phone .mini-kicker {
    padding-top: 0.32em;
}

.phone-list {
    display: grid;
    gap: 6px;
    justify-items: start;
}

.page-side-card .phone-list {
    margin: 10px 0;
}

.phone-link,
.email-link {
    display: inline-flex;
    width: fit-content;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
}

.phone-link strong,
.email-link strong {
    font: inherit;
}

.phone-link:hover,
.phone-link:focus-visible,
.email-link:hover,
.email-link:focus-visible {
    color: var(--brand-dark);
}

.phone-link:focus-visible,
.email-link:focus-visible {
    border-radius: 8px;
    outline: 3px solid rgba(143, 190, 210, 0.32);
    outline-offset: 4px;
}

@media (max-width: 520px) {
    .contact-point-phone {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .contact-point-phone .mini-kicker {
        padding-top: 0;
    }
}

.whatsapp-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 18px 30px rgba(18, 140, 126, 0.2);
}

.whatsapp-button:hover {
    box-shadow: 0 22px 34px rgba(18, 140, 126, 0.26);
}

@media (max-width: 760px) {
    .whatsapp-card {
        padding: 24px 22px;
    }

    .whatsapp-button {
        width: 100%;
    }
}
