:root {
    --bg: #f4f5f6;
    --ink: #111;
    --muted: #666;
    --line: #e9e9e9;
    --soft: #f7f7f7;
    --orange: #ff8a3d;
    --orange-soft: #ffe6d3;
    --font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Cormorant Garamond", ui-serif, Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
}

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

button {
    font: inherit;
}

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

.line-clamp-2,
.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
}

.animate-marquee {
    animation: marquee 120s linear infinite;
}

.animate-marquee-reverse {
    animation: marquee-reverse 140s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 200px;
}

.brand img {
    width: auto;
    height: 56px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.desktop-nav > a,
.mega-trigger {
    color: #111;
    transition: color .2s ease;
}

.desktop-nav > a:hover,
.mega-trigger:hover {
    color: #666;
}

.mega {
    position: relative;
}

.mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 8px 0;
    cursor: pointer;
}

.mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 30;
    width: 600px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    padding-top: 16px;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .3s ease, transform .3s ease;
}

.mega:hover .mega-panel,
.mega:focus-within .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 40px rgb(0 0 0 / 8%);
    min-height: 300px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 300px;
    height: 320px;
    flex-shrink: 0;
    max-height: 320px;
    overflow-y: auto;
    padding: 24px;
    padding-bottom: 48px;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.mega-links::-webkit-scrollbar {
    width: 6px;
}

.mega-links::-webkit-scrollbar-track {
    background: transparent;
}

.mega-links::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d1d5db;
}

.mega-link {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 10px;
    padding: 10px 16px;
    transition: background .2s ease;
}

.mega-link:hover {
    background: #f7f7f7;
}

.mega-link strong,
.mega-link span {
    display: block;
}

.mega-link strong {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    transition: color .2s ease;
}

.mega-link span {
    margin-top: 2px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.mega-link:hover strong {
    color: #fb923c;
}

.mega-image {
    position: relative;
    width: 300px;
    min-height: 300px;
    overflow: hidden;
}

.mega-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.mega-image:hover img {
    transform: scale(1.05);
}

.mega-caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    color: #fff;
    text-shadow: 0 4px 14px rgb(0 0 0 / 35%);
}

.mega-caption strong {
    display: block;
    font-size: 22px;
    font-weight: 500;
}

.mega-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 300px;
    height: 48px;
    padding-bottom: 8px;
    pointer-events: none;
    background: linear-gradient(to top, #fff, rgb(255 255 255 / 80%), transparent);
}

.mega-scroll-indicator span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: rgb(255 255 255 / 50%);
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    padding: 2px 8px;
    text-transform: uppercase;
}

.mega-scroll-indicator svg {
    width: 12px;
    height: 12px;
    animation: nav-bounce 1s infinite;
}

@keyframes nav-bounce {
    0%, 100% {
        transform: translateY(-20%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, .2, 1);
    }
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.pill-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px 8px 22px;
    transition: transform .2s ease, background .2s ease;
}

.pill-button:hover {
    background: #000;
    transform: translateY(-1px);
}

.pill-button .circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(255 255 255 / 18%);
}

.header-cta {
    gap: 8px;
    padding: 6px 6px 6px 20px;
    background: #000;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover {
    background: #111827;
    transform: none;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
}

.header-cta .circle {
    width: 28px;
    height: 28px;
    background: rgb(255 255 255 / 20%);
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.icon-button:hover {
    background: #f7f7f7;
    transform: translateY(-1px);
}

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

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}

.mobile-drawer.is-open {
    display: block;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 40%);
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 100%);
    overflow-y: auto;
    background: #fff;
    padding: 24px;
    box-shadow: -20px 0 60px rgb(0 0 0 / 18%);
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
}

.drawer-links {
    display: grid;
    gap: 8px;
    padding: 22px 0;
}

.drawer-links a,
.drawer-toggle {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #111;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 14px;
    text-align: left;
}

.drawer-links a:hover,
.drawer-toggle:hover {
    background: #f7f7f7;
}

.drawer-submenu {
    display: none;
    padding-left: 12px;
}

.drawer-submenu.is-open {
    display: grid;
}

.quick-menu {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 999px;
    background: rgb(255 255 255 / 60%);
    box-shadow: 0 8px 30px rgb(0 0 0 / 12%);
    padding: 6px;
    transform: translateX(-50%);
    animation: quick-menu-in .45s ease both;
    backdrop-filter: blur(24px);
}

.quick-menu.is-hidden {
    display: none;
}

.quick-menu a,
.quick-menu button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, background .2s ease;
}

.quick-menu a:hover,
.quick-menu button:hover {
    transform: scale(1.05);
}

.quick-appointment {
    width: auto;
    height: 48px;
    gap: 8px;
    padding: 0 20px;
    color: #374151;
}

.quick-appointment:hover {
    color: #000;
}

.quick-appointment svg {
    width: 20px;
    height: 20px;
    color: #007aff;
}

.quick-appointment span {
    color: currentColor;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.quick-icon,
.quick-close {
    width: 48px;
    height: 48px;
}

.quick-icon svg,
.quick-close svg {
    width: 20px;
    height: 20px;
}

.quick-whatsapp svg {
    fill: currentColor;
    color: #25d366;
}

.quick-instagram svg {
    color: #e1306c;
}

.quick-divider {
    width: 1px;
    height: 24px;
    margin: 0 4px;
    background: #d1d5db;
}

.quick-close {
    margin-left: 4px;
    background: rgb(255 255 255 / 50%);
    color: #6b7280;
}

.quick-close:hover {
    background: #fff;
    color: #ef4444;
}

@keyframes quick-menu-in {
    from {
        opacity: 0;
        transform: translate(-50%, 100px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.quick-menu-enter {
    animation: quick-menu-in .45s ease both;
}

.nav-enter {
    animation: nav-enter .5s ease .2s both;
}

.drawer-panel-enter {
    animation: drawer-panel-enter .35s cubic-bezier(.22, 1, .36, 1) both;
}

.value-hover {
    transition: transform .2s ease, background-color .2s ease;
}

.value-hover:hover {
    transform: translateY(-6px);
    background-color: rgb(255 255 255 / 5%);
}

.hero-slide-item {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .8s ease-in-out, transform .8s ease-in-out;
}

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

.hero-title-item,
.hero-copy-item {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.hero-title-item.is-active,
.hero-copy-item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-copy-item {
    transform: translateY(15px);
    transition-delay: .1s;
}

.hero-dot {
    width: 8px;
    background: rgb(255 255 255 / 40%);
}

.hero-dot:hover {
    background: rgb(255 255 255 / 70%);
}

.hero-dot.is-active {
    width: 32px;
    background: #fff;
}

.hero-features-enter {
    animation: hero-features-enter .8s ease .4s both;
}

.service-card-enter {
    animation: section-card-enter .55s ease both;
}

.service-card-enter:hover {
    transform: translateY(-8px);
}

.specialist-card-enter {
    transition: transform .3s ease;
}

.specialist-card-enter:hover {
    transform: translateY(-6px);
}

.specialist-info {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.specialist-info.is-active {
    display: block;
    animation: specialist-info-in .2s ease both;
}

.thin-scrollbar {
    scrollbar-width: thin;
}

@keyframes specialist-info-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section-card-enter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thin-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d1d5db;
}

@keyframes nav-enter {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawer-panel-enter {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes hero-float-left {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-float-right {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-features-enter {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wrap {
    padding: 0 18px 24px;
}

.hero {
    position: relative;
    display: flex;
    min-height: calc(100vh - 96px);
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .7s ease, transform .9s ease;
}

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

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgb(0 0 0 / 42%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 58px clamp(22px, 5vw, 72px);
}

.hero-title-stack {
    position: relative;
    min-height: 210px;
}

.hero h1 {
    position: absolute;
    inset: 0 auto auto 0;
    max-width: 980px;
    margin: 0;
    font-size: clamp(42px, 8vw, 92px);
    font-weight: 300;
    line-height: 1.08;
    opacity: 0;
    transform: translateY(22px);
    pointer-events: none;
    text-shadow: 0 5px 22px rgb(0 0 0 / 22%);
    transition: opacity .48s ease, transform .48s ease;
}

.hero h1.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero h1 strong {
    font-weight: 700;
}

.hero h1 span {
    color: rgb(255 255 255 / 90%);
    font-weight: 300;
}

.hero-copy {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-copy p {
    max-width: 430px;
    margin: 0 0 24px;
    color: rgb(255 255 255 / 90%);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-copy-stack {
    position: relative;
    min-height: 150px;
    width: min(430px, 100%);
}

.hero-copy-item {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .42s ease .08s, transform .42s ease .08s;
}

.hero-copy-item.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-cta {
    background: #fff;
    color: #000;
    padding: 8px 8px 8px 28px;
}

.hero-cta:hover {
    background: #f8f8f8;
}

.hero-cta .circle {
    width: 34px;
    height: 34px;
    background: #000;
    color: #fff;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 18px;
    max-width: 690px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 18px;
    background: rgb(255 255 255 / 12%);
    padding: 20px;
    backdrop-filter: blur(14px);
}

.feature {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
}

.feature h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.feature p {
    margin: 0;
    color: rgb(255 255 255 / 72%);
    font-size: 12px;
    line-height: 1.45;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    border-color: rgb(255 255 255 / 18%);
    background: rgb(0 0 0 / 24%);
    color: #fff;
    transform: translateY(-50%);
}

.hero-control:hover {
    background: rgb(0 0 0 / 52%);
    transform: translateY(-50%);
}

.hero-control.prev {
    left: 22px;
}

.hero-control.next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 45%);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fff;
}

.trust-banner {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    margin-top: 64px;
}

.trust-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 66.666%;
    min-height: 105px;
    overflow: hidden;
    gap: 32px;
    background: #f0f0f0;
    padding: 16px 32px;
}

.trust-bg {
    position: absolute;
    top: -20%;
    right: 0;
    bottom: -20%;
    width: 33.333%;
    height: 140%;
    object-fit: cover;
    opacity: .5;
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(to left, #000 20%, transparent);
    mask-image: linear-gradient(to left, #000 20%, transparent);
}

.trust-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.trust-copy h2 {
    max-width: 800px;
    margin: 0 0 8px;
    color: #000;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
}

.trust-copy a {
    width: fit-content;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    padding-bottom: 2px;
    transition: color .2s ease, border-color .2s ease;
}

.trust-copy a:hover {
    border-color: #666;
    color: #666;
}

.trust-rotator {
    position: relative;
    z-index: 1;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 220px;
}

.trust-message-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    width: 100%;
}

.trust-message {
    position: absolute;
    inset: 0 auto auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
}

.trust-message.is-active {
    opacity: 1;
    transform: translateY(0);
}

.trust-mask {
    -webkit-mask-image: linear-gradient(to left, #000 20%, transparent);
    mask-image: linear-gradient(to left, #000 20%, transparent);
}

.trust-dot {
    background: #d1d5db;
}

.trust-dot.is-active {
    background: #000;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
}

.trust-icon svg {
    width: 18px;
    height: 18px;
}

.trust-message p {
    max-width: 150px;
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.trust-dots {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    width: 100%;
    margin-top: 12px;
}

.trust-dots span {
    width: 32px;
    height: 2px;
    background: #d1d5db;
    transition: background .3s ease;
}

.trust-dots span.is-active {
    background: #000;
}

.trust-stat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33.333%;
    min-height: 105px;
    gap: 16px;
    background: #000;
    padding: 16px 32px;
}

.trust-avatars {
    display: flex;
    flex-shrink: 0;
    margin-left: 0;
}

.trust-avatars img {
    position: relative;
    width: 36px;
    height: 36px;
    border: 2px solid #000;
    border-radius: 50%;
    object-fit: cover;
}

.trust-avatars img + img {
    margin-left: -10px;
}

.trust-avatars img:nth-child(2) {
    z-index: 2;
    width: 48px;
    height: 48px;
    margin-top: -6px;
}

.trust-stat h3 {
    margin: 0 0 2px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}

.trust-stat p {
    max-width: 160px;
    margin: 0;
    color: rgb(255 255 255 / 60%);
    font-size: 11px;
    line-height: 1.25;
}

.section {
    padding: 86px clamp(22px, 6vw, 96px);
}

.section.dark {
    background: #111;
    color: #fff;
}

.section.white {
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(160px, .28fr) 1fr;
    gap: clamp(28px, 6vw, 96px);
}

.serif-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
}

.lead {
    margin: 0;
    max-width: 980px;
    color: #aaa;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.26;
}

.lead strong {
    color: #fff;
    font-weight: 500;
}

.small-copy {
    max-width: 560px;
    margin: 42px 0 0 auto;
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding-top: 28px;
    color: #aaa;
    line-height: 1.7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
}

.value-card {
    min-height: 190px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 12px;
    padding: 24px;
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 500;
}

.value-card p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}

.eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111;
    content: "";
}

.section-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
}

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

.horizontal-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 14px;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.service-card,
.specialist-card,
.review-card,
.blog-card {
    scroll-snap-align: start;
}

.service-card {
    position: relative;
    display: flex;
    flex: 0 0 min(370px, 84vw);
    min-height: 470px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
}

.service-card img,
.specialist-card img,
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover img,
.specialist-card:hover img,
.blog-card:hover img {
    transform: scale(1.05);
}

.service-card::after,
.specialist-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 76%));
}

.card-overlay {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    z-index: 2;
}

.card-overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgb(255 255 255 / 78%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.card-overlay h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.08;
}

.card-overlay p {
    margin: 0;
    color: rgb(255 255 255 / 80%);
    font-size: 14px;
    line-height: 1.55;
}

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

.specialist-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    color: #fff;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.tag {
    border-radius: 999px;
    background: rgb(255 255 255 / 20%);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 10px;
}

.reviews {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 12px;
}

.reviews::-webkit-scrollbar {
    display: none;
}

.review-card {
    display: flex;
    flex: 0 0 min(400px, 84vw);
    min-height: 380px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: #f9f9f9;
    padding: 30px;
}

.review-card.summary {
    background: linear-gradient(135deg, #ffe6d3, #fffaf5);
}

.rating {
    font-size: 76px;
    font-weight: 500;
    line-height: 1;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.review-name {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.review-date {
    margin: 4px 0 0;
    color: #777;
    font-size: 14px;
}

.stars {
    color: #111;
    white-space: nowrap;
}

.review-text {
    margin: 22px 0;
    font-size: 19px;
    line-height: 1.55;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tags span {
    border-radius: 999px;
    background: var(--orange-soft);
    color: #7c2d12;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
}

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
    background: #ddd;
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 11px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    color: #777;
    font-size: 14px;
}

.blog-card h3 {
    margin: 12px 0 10px;
    font-size: 22px;
    line-height: 1.22;
}

.blog-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.author strong,
.author span {
    display: block;
}

.author strong {
    font-size: 14px;
}

.author span {
    color: #888;
    font-size: 12px;
}

.location {
    position: relative;
    min-height: 720px;
    text-align: center;
}

.location-bg {
    position: absolute;
    inset: auto 0 0;
    height: 78%;
}

.location-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    filter: grayscale(1);
}

.location-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, #fff, rgb(255 255 255 / 28%), #fff);
}

.location .container {
    position: relative;
    z-index: 2;
}

.location h2 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.05;
}

.location p {
    max-width: 680px;
    margin: 0 auto;
    color: #666;
    font-size: 20px;
}

.location-card {
    max-width: 360px;
    margin: 80px auto 0;
    border: 1px solid #eee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgb(0 0 0 / 12%);
    padding: 16px;
    text-align: left;
}

.location-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
}

.location-card h3 {
    margin: 14px 0 6px;
    font-size: 18px;
}

.location-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.55;
}

.article {
    color: #4d4d4d;
}

.article .container {
    max-width: 900px;
}

.article h2,
.article h3 {
    color: #1a1a1a;
}

.article p,
.article li {
    font-size: 16px;
    line-height: 1.75;
}

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

.footer-cta {
    padding: 18px;
}

.footer-cta-box {
    position: relative;
    display: grid;
    min-height: 360px;
    place-items: center;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(rgb(0 0 0 / 16%), rgb(0 0 0 / 16%)), url("https://test.alesia.tr/cakra/ana.jpg") center / cover;
    color: #fff;
    text-align: center;
}

.footer-cta-box h2 {
    max-width: 820px;
    margin: 0 20px 28px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
}

.footer {
    padding: 76px clamp(22px, 6vw, 96px) 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 5fr 2fr 3fr 2fr;
    gap: 34px;
}

.footer-logo {
    width: auto;
    height: 44px;
    margin-bottom: 22px;
}

.footer p {
    color: #555;
    line-height: 1.75;
}

.footer h4 {
    margin: 0 0 20px;
    font-weight: 500;
}

.footer ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li,
.footer a {
    color: #666;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 58px;
    border-radius: 16px;
    background: #f5f5f5;
    padding: 18px 24px;
}

.footer-bottom img {
    width: auto;
    height: 40px;
}

@media (max-width: 1120px) {
    .desktop-nav,
    .header-actions .pill-button {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .brand,
    .header-actions {
        min-width: auto;
    }

    .hero-copy {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-features {
        max-width: none;
    }

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

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

    .trust-banner {
        flex-direction: column;
        margin-top: 48px;
    }

    .trust-main,
    .trust-stat {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 6px 24px;
    }

    .brand img {
        height: 52px;
    }

    .hero-wrap {
        padding: 0 12px 18px;
    }

    .hero {
        min-height: 720px;
        border-radius: 14px;
    }

    .hero-inner {
        padding: 36px 18px 70px;
    }

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

    .hero-title-stack {
        min-height: 150px;
    }

    .hero-copy-stack {
        min-height: 190px;
        width: 100%;
    }

    .hero-control {
        display: none;
    }

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

    .quick-menu {
        gap: 4px;
        bottom: 24px;
        padding: 6px;
    }

    .quick-appointment {
        height: 40px;
        padding: 0 16px;
    }

    .quick-appointment svg,
    .quick-icon svg,
    .quick-close svg {
        width: 18px;
        height: 18px;
    }

    .quick-appointment span {
        font-size: 12px;
    }

    .quick-icon,
    .quick-close {
        width: 40px;
        height: 40px;
    }

    .trust-banner {
        margin-top: 32px;
    }

    .trust-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .trust-copy h2 {
        font-size: 18px;
    }

    .trust-bg {
        width: 50%;
    }

    .trust-rotator {
        width: 100%;
    }

    .trust-stat {
        padding: 16px 24px;
    }

    .section {
        padding: 64px 20px;
    }

    .split-intro,
    .value-grid,
    .specialist-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .scroll-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .lead {
        font-size: 30px;
    }

    .location {
        min-height: 690px;
    }

    .location p {
        font-size: 17px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
