@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0057B8;
    --primary-dark: #003F87;
    --primary-soft: #EAF3FF;

    --dark: #111827;
    --dark-soft: #374151;

    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-grey: #EEF2F7;
    --border: #D9E2EC;

    --text: #1F2937;
    --muted: #6B7280;

    --shadow: 0 20px 50px rgba(17, 24, 39, 0.08);

    --body: "Inter", Arial, sans-serif;
}

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

body {
    font-family: var(--body);
    background: var(--off-white);
    color: var(--text);
}

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

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

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.site-promo-banner {
    min-height: 46px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-message {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.site-topbar {
    background: var(--dark);
    color: #fff;
    font-size: 13px;
}

.site-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-topbar a,
.site-topbar span {
    color: rgba(255, 255, 255, 0.76);
}

.site-topbar a:hover {
    color: #fff;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo img {
    width: 250px;
    height: auto;
    display: block;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav>a,
.nav-dropdown-toggle {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle span {
    font-size: 13px;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 380px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.18s ease;
    z-index: 9999;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    background: var(--off-white);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.nav-dropdown-menu a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.nav-dropdown-all {
    grid-column: 1 / -1;
    background: var(--dark) !important;
    color: #fff !important;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.header-btn-light {
    background: #fff;
    color: white;
    border: 1px solid var(--border);
}

.header-btn-light:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: black;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 999px;
    transition: 0.25s ease;
}

.mobile-treatment-btn {
    display: none !important;
}

/* FOOTER */

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;
    gap: 54px;
    align-items: start;
}

.footer-brand-block p,
.site-footer p,
.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.footer-brand-block p {
    max-width: 430px;
    margin-bottom: 18px;
}

.footer-email {
    color: #7DB7FF !important;
    font-weight: 800;
}

.footer-contact-list {
    margin-bottom: 28px;
}

.footer-contact-list a,
.footer-contact-list span {
    display: block;
    margin-bottom: 10px;
}

.footer-col h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-weight: 700;
}

.footer-legal-links a:hover,
.footer-bottom a:hover {
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .header-inner {
        gap: 18px;
    }

    .main-nav>a,
    .nav-dropdown-toggle {
        padding: 0 10px;
        font-size: 13px;
    }

    .header-btn {
        padding: 0 16px;
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .site-topbar-inner {
        display: none !important;
    }

    .header-inner {
        min-height: 78px;
        position: relative;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav>a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        background: var(--off-white);
        min-height: 48px;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 18px;
        display: none;
        grid-template-columns: 1fr;
        background: var(--off-white);
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown-menu a {
        justify-content: center;
        text-align: center;
        background: #fff;
    }

    .mobile-treatment-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: var(--primary) !important;
        color: #fff !important;
        min-height: 48px;
        border-radius: 999px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

@media (max-width: 760px) {
    .container {
        width: calc(100% - 28px);
    }

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

    .footer-legal-links {
        justify-content: center;
    }
}

/* ==========================================
   POLICY PAGES
========================================== */

.policy-page {
    background: #f8fafc;
}

.policy-hero {
    padding: 100px 0 70px;
    background:
        linear-gradient(135deg, rgba(0, 87, 184, 0.04), rgba(255, 255, 255, 0.95)),
        #ffffff;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.policy-hero span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    background: #eaf3ff;
    color: #0057B8;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.policy-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.policy-updated {
    margin-top: 24px !important;
    font-size: 14px !important;
    color: #9ca3af !important;
    font-weight: 600;
}

.policy-section {
    padding: 80px 0;
}

.policy-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 60px;
    box-shadow:
        0 10px 30px rgba(17, 24, 39, .04),
        0 20px 60px rgba(17, 24, 39, .06);
}

.policy-card h2 {
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    margin-top: 45px;
    margin-bottom: 18px;
    position: relative;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0057B8;
    border-radius: 999px;
    margin-top: 12px;
}

.policy-card p {
    color: #4b5563;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 18px;
}

.policy-card ul {
    margin: 20px 0;
    padding-left: 24px;
}

.policy-card li {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 17px;
}

.policy-card a {
    color: #0057B8;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.policy-card a:hover {
    color: #003F87;
}

.cookie-settings-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #0057B8;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.cookie-settings-btn:hover {
    background: #003F87;
    transform: translateY(-2px);
}

.policy-card blockquote {
    margin: 25px 0;
    padding: 20px 24px;
    background: #f8fafc;
    border-left: 4px solid #0057B8;
    border-radius: 0 16px 16px 0;
}

.policy-contact-box {
    margin-top: 40px;
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 20px;
}

.policy-contact-box h3 {
    color: #111827;
    margin-bottom: 15px;
    font-size: 22px;
}

.policy-contact-box p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {

    .policy-hero {
        padding: 70px 0 50px;
    }

    .policy-section {
        padding: 50px 0;
    }

    .policy-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .policy-card h2 {
        font-size: 24px;
    }

    .policy-card p,
    .policy-card li {
        font-size: 16px;
    }

    .policy-hero p {
        font-size: 16px;
    }
}

/* ==========================================
   ERROR PAGES
========================================== */

.error-page {
    padding: 100px 0;
    background: #f8fafc;
}

.error-page-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-size: clamp(90px, 15vw, 220px);
    font-weight: 900;
    line-height: 1;
    color: #0057B8;
    margin: 15px 0;
    opacity: 0.12;
}

.error-page h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    color: #111827;
    margin-bottom: 20px;
}

.error-page p {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0 60px;
}

.error-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.error-help-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    transition: .25s ease;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

.error-help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(17, 24, 39, .08);
}

.error-help-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: #0057B8;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.error-help-card h2 {
    color: #111827;
    font-size: 26px;
    margin-bottom: 12px;
}

.error-help-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 900px) {

    .error-help-grid {
        grid-template-columns: 1fr;
    }

    .error-page {
        padding: 70px 0;
    }

    .error-actions {
        flex-direction: column;
    }

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

/* ==========================================
   COOKIE BANNER
========================================== */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 980px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 900;
}

.cookie-banner p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.cookie-banner a {
    color: var(--primary);
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions button,
.cookie-actions a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.cookie-actions button:hover,
.cookie-actions a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.cookie-actions button:first-child {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.cookie-actions button:first-child:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

@media (max-width: 760px) {
    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button,
    .cookie-actions a {
        width: 100%;
    }
}

.topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    transition: .2s ease;
}

.topbar-contact:hover {
    color: #ffffff;
}

.topbar-contact svg {
    flex-shrink: 0;
}

.topbar-divider {
    color: rgba(255, 255, 255, .35);
    margin: 0 4px;
}

.fm-reviews-slider-section {
    padding: 90px 0;
    background: #f7f9fb;
    overflow: hidden;
}

.fm-reviews-slider {
    margin-top: 45px;
    overflow: hidden;
    position: relative;
}

.fm-reviews-slider::before,
.fm-reviews-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fm-reviews-slider::before {
    left: 0;
    background: linear-gradient(to right, #f7f9fb, transparent);
}

.fm-reviews-slider::after {
    right: 0;
    background: linear-gradient(to left, #f7f9fb, transparent);
}

.fm-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: fmReviewSlide 32s linear infinite;
}

.fm-reviews-slider:hover .fm-reviews-track {
    animation-play-state: paused;
}

.fm-review-slide {
    width: 380px;
    min-height: 260px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.fm-stars {
    color: #f5b301;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.fm-review-slide p {
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 24px;
    font-size: 0.98rem;
}

.fm-review-slide strong {
    display: block;
    color: #111827;
    font-size: 1rem;
}

.fm-review-footer {
    text-align: center;
    margin-top: 45px;
}

.fm-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.fm-review-link:hover {
    background: #000000;
}

@keyframes fmReviewSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .fm-reviews-slider-section {
        padding: 70px 0;
    }

    .fm-review-slide {
        width: 300px;
        padding: 24px;
    }

    .fm-reviews-slider::before,
    .fm-reviews-slider::after {
        width: 50px;
    }
}

/* ===============================
   Face Medical Homepage
================================ */

.fm-home {
    background: #f8fafc;
    color: #111827;
}

.fm-eyebrow {
    margin: 0 0 12px;
    color: #0057b8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fm-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111827;
}

.fm-hero-slider,
.fm-hero-slide,
.fm-hero-slide img,
.fm-hero-overlay {
    position: absolute;
    inset: 0;
}

.fm-hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1000ms ease, transform 6000ms ease;
}

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

.fm-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fm-hero-overlay {
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(248, 250, 252, 0.97) 0%,
            rgba(248, 250, 252, 0.88) 45%,
            rgba(248, 250, 252, 0.35) 100%);
}

.fm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.fm-hero h1 {
    margin: 0 0 22px;
    max-width: 680px;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -2px;
}

.fm-hero p {
    max-width: 570px;
    color: #374151;
    font-size: 17px;
    line-height: 1.75;
}

.fm-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #0057b8;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: 250ms ease;
}

.fm-btn:hover {
    transform: translateY(-2px);
    background: #003f87;
}

.fm-btn-light {
    background: #ffffff !important;
    color: #003f87;
    border: 2px solid #003f87;
}

.fm-btn-dark {
    background: #111827;
    color: #ffffff;
}

.fm-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

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

.fm-trust-grid div {
    padding: 25px 22px;
    border-right: 1px solid #e5e7eb;
}

.fm-trust-grid div:last-child {
    border-right: 0;
}

.fm-trust-grid strong,
.fm-trust-grid span {
    display: block;
}

.fm-trust-grid strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.fm-trust-grid span {
    color: #6b7280;
    font-size: 13px;
}

.fm-section {
    padding: 88px 0;
}

.fm-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.fm-section h2,
.fm-slider-head h2,
.fm-results h2,
.fm-local h2,
.fm-faq h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.fm-copy p,
.fm-section p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
}

/* Treatment slider */

.fm-treatment-showcase {
    overflow: hidden;
    background: #f8fafc;
}

.fm-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 38px;
    margin-bottom: 34px;
}

.fm-slider-head>div {
    max-width: 760px;
}

.fm-slider-head p {
    margin-top: 14px;
}

.fm-slider-controls {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.fm-slider-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #d9e2ec;
    background: #ffffff;
    color: #111827;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    transition: 250ms ease;
}

.fm-slider-btn:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

.fm-treatment-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 0 28px;
    scrollbar-width: none;
}

.fm-treatment-slider::-webkit-scrollbar {
    display: none;
}

.fm-treatment-card {
    min-width: 360px;
    max-width: 360px;
    scroll-snap-align: start;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
    transition: 250ms ease;
}

.fm-treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.fm-treatment-card a {
    display: block;
    height: 100%;
}

.fm-treatment-image {
    height: 230px;
    background: #e8f1f8;
    overflow: hidden;
}

.fm-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.fm-treatment-card:hover .fm-treatment-image img {
    transform: scale(1.05);
}

.fm-treatment-card-content {
    padding: 28px;
}

.fm-treatment-card-content span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.fm-treatment-card h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.fm-treatment-card p {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.65;
}

.fm-treatment-card strong {
    color: #0057b8;
    font-size: 14px;
    font-weight: 900;
}

.fm-center-action {
    text-align: center;
    margin-top: 20px;
}

/* Results */

.fm-results {
    background: #ffffff;
}

.fm-results-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.fm-results-slider {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 30px;
    background: #e8f1f8;
    box-shadow: 0 22px 55px rgba(17, 24, 39, 0.10);
}

.fm-result-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 5000ms ease;
}

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

.fm-result-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values */

.fm-values {
    background: #f7f5f1;
}

.fm-section-head.centered {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.fm-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fm-values-grid div {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.fm-values-grid span {
    display: block;
    margin-bottom: 18px;
    color: #0057b8;
    font-weight: 900;
}

.fm-values-grid h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

/* Local */

.fm-local {
    background: #ffffff;
}

.fm-area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.fm-area-grid span {
    padding: 10px 15px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

/* FAQ */

.fm-faq {
    background: #f7f5f1;
}

.fm-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.fm-faq-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid #d1d5db;
    background: transparent;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.fm-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease;
}

.fm-faq-panel p {
    max-width: 720px;
    margin: 0 0 22px;
}

.fm-faq-item.is-open small {
    transform: rotate(45deg);
}

/* Final CTA */

.fm-final-cta {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #0057b8, #003f87);
    color: #ffffff;
}

.fm-final-cta .fm-eyebrow,
.fm-final-cta h2 {
    color: #ffffff;
}

.fm-final-cta h2 {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 44px;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.fm-final-cta .fm-btn {
    background: #ffffff;
    color: #003f87;
}

/* Reveal */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-35px);
}

.reveal-right {
    transform: translateX(35px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */

@media (max-width: 1180px) {

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

    .fm-split,
    .fm-results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .fm-hero {
        min-height: 620px;
    }

    .fm-hero-overlay {
        background: rgba(248, 250, 252, 0.9);
    }

    .fm-hero h1 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .fm-hero p {
        font-size: 16px;
    }

    .fm-section {
        padding: 65px 0;
    }

    .fm-section h2,
    .fm-slider-head h2,
    .fm-results h2,
    .fm-local h2,
    .fm-faq h2,
    .fm-final-cta h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .fm-slider-head {
        display: block;
    }

    .fm-slider-controls {
        margin-top: 22px;
    }

    .fm-treatment-card {
        min-width: 300px;
        max-width: 300px;
    }

    .fm-treatment-image {
        height: 200px;
    }

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

    .fm-trust-grid div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .fm-results-slider {
        min-height: 330px;
    }

    .fm-hero-actions {
        flex-direction: column;
    }

    .fm-btn {
        width: 100%;
    }
}

/* ===============================
   Face Medical About Page
================================ */

.fm-about-page {
    background: #ffffff;
    color: #111827;
}

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

.fm-about-page .fm-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.fm-about-hero {
    padding: 90px 0 78px;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.10), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #f2f6fb 100%);
    overflow: hidden;
}

.fm-about-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 70px;
    align-items: center;
}

.fm-about-hero h1,
.fm-care-section h2,
.fm-section-heading h2,
.fm-about-reviews h2,
.fm-location-section h2,
.fm-about-cta h2 {
    margin: 0;
    color: #111827;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 800;
}

.fm-about-hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.fm-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.fm-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.fm-about-page .fm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.fm-about-page .fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.fm-about-page .fm-btn-dark {
    background: #111827;
    color: #ffffff;
    border: 1px solid #111827;
}

.fm-about-page .fm-btn-dark:hover {
    background: #0057b8;
    border-color: #0057b8;
    transform: translateY(-2px);
}

.fm-about-page .fm-btn-light {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d9e2ec;
}

.fm-about-page .fm-btn-light:hover {
    border-color: #111827;
    transform: translateY(-2px);
}

.fm-about-hero-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.fm-about-hero-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    opacity: 0.94;
}

.fm-about-location-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.fm-about-location-card strong,
.fm-about-location-card span {
    display: block;
}

.fm-about-location-card strong {
    margin-bottom: 6px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.fm-about-location-card span {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.fm-care-section {
    padding: 95px 0;
    background: #ffffff;
}

.fm-care-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.fm-care-section p,
.fm-team-content p,
.fm-about-reviews p,
.fm-location-section p,
.fm-about-cta p {
    margin: 0 0 18px;
    color: #475569;
    font-size: 16px;
    line-height: 1.85;
}

.fm-trust-strip {
    padding: 38px 0;
    background: #0f172a;
    color: #ffffff;
}

.fm-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fm-trust-grid div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.fm-trust-grid strong,
.fm-trust-grid span {
    display: block;
}

.fm-trust-grid strong {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.fm-trust-grid span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.fm-team-section {
    padding: 95px 0;
    background: #f7f7f5;
}

.fm-section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.fm-section-heading p {
    margin: 20px 0 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.fm-team-list {
    display: grid;
    gap: 34px;
}

.fm-team-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 44px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.fm-team-card-reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.fm-team-card-reverse .fm-team-image {
    order: 2;
}

.fm-team-card-reverse .fm-team-content {
    order: 1;
}

.fm-team-image {
    border-radius: 28px;
    overflow: hidden;
    background: #e5e7eb;
}

.fm-team-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fm-team-card:hover .fm-team-image img {
    transform: scale(1.035);
}

.fm-team-content {
    max-width: 590px;
}

.fm-role {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fm-team-content h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.fm-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.fm-team-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.fm-about-reviews {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 87, 184, 0.08), transparent 34%),
        #ffffff;
}

.fm-reviews-mini-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 55px;
    align-items: center;
}

.fm-review-highlight {
    padding: 34px;
    border-radius: 30px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.fm-review-highlight .fm-stars {
    margin-bottom: 14px;
    color: #f5b301;
    font-size: 20px;
    letter-spacing: 2px;
}

.fm-review-highlight p {
    margin-bottom: 18px;
    color: #334155;
    font-size: 17px;
    line-height: 1.75;
}

.fm-review-highlight strong {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.fm-location-section {
    padding: 92px 0;
    background: #f8fafc;
}

.fm-location-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: start;
}

.fm-location-box {
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.fm-location-box h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.fm-location-box a {
    color: #111827;
    font-weight: 800;
}

.fm-text-link {
    display: inline-flex;
    margin-top: 8px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.fm-about-cta {
    padding: 80px 0 105px;
    background: #ffffff;
}

.fm-cta-box {
    padding: 76px 50px;
    border-radius: 38px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72)),
        url('/assets/images/clinic/face-medical-clinic.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.fm-cta-box .fm-eyebrow,
.fm-cta-box h2 {
    color: #ffffff;
}

.fm-cta-box h2 {
    max-width: 820px;
    margin: 0 auto;
}

.fm-cta-box p {
    max-width: 680px;
    margin: 22px auto 30px;
    color: rgba(255, 255, 255, 0.78);
}

.fm-cta-box .fm-btn-dark {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
}

.fm-cta-box .fm-btn-dark:hover {
    background: #0057b8;
    color: #ffffff;
    border-color: #0057b8;
}

/* Mobile */

@media (max-width: 1000px) {

    .fm-about-hero-grid,
    .fm-care-grid,
    .fm-reviews-mini-grid,
    .fm-location-grid,
    .fm-team-card,
    .fm-team-card-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fm-team-card-reverse .fm-team-image,
    .fm-team-card-reverse .fm-team-content {
        order: initial;
    }

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

    .fm-about-hero-card img {
        height: 440px;
    }

    .fm-team-image img {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .fm-container {
        width: min(100% - 28px, 1180px);
    }

    .fm-about-hero {
        padding: 62px 0 52px;
    }

    .fm-about-hero h1,
    .fm-care-section h2,
    .fm-section-heading h2,
    .fm-about-reviews h2,
    .fm-location-section h2,
    .fm-about-cta h2 {
        font-size: 40px;
        line-height: 1;
        letter-spacing: -0.045em;
    }

    .fm-about-hero p,
    .fm-care-section p,
    .fm-section-heading p,
    .fm-about-reviews p,
    .fm-location-section p {
        font-size: 16px;
    }

    .fm-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fm-about-page .fm-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .fm-about-page .fm-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .fm-about-hero-card {
        border-radius: 26px;
    }

    .fm-about-hero-card img {
        height: 340px;
    }

    .fm-about-location-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .fm-care-section,
    .fm-team-section,
    .fm-about-reviews,
    .fm-location-section {
        padding: 64px 0;
    }

    .fm-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fm-team-card {
        padding: 22px;
        border-radius: 28px;
    }

    .fm-team-image {
        border-radius: 22px;
    }

    .fm-team-image img {
        height: 320px;
    }

    .fm-team-content h3 {
        font-size: 34px;
    }

    .fm-team-tags {
        gap: 7px;
    }

    .fm-location-box,
    .fm-review-highlight {
        padding: 24px;
        border-radius: 24px;
    }

    .fm-about-cta {
        padding: 64px 0 80px;
    }

    .fm-cta-box {
        padding: 48px 22px;
        border-radius: 28px;
    }
}

/* ===============================
   Face Medical Treatments Page
================================ */

.fm-treatments-page {
    background: #f8fafc;
    color: #111827;
}

.treatments-hero {
    padding: 92px 0;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.10), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e5e7eb;
}

.treatments-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.treatments-hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: 50px;
    line-height: 0.98;
    letter-spacing: -2px;
}

.treatments-hero p {
    max-width: 680px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
}

.treatments-hero-image {
    position: relative;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    background: #e8f1f8;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
}

.treatments-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.treatments-hero-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.treatments-hero-image-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.treatments-hero-image-card strong {
    display: block;
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
}

.treatments-trust {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.treatments-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.treatments-trust-grid div {
    padding: 28px 30px;
    border-right: 1px solid #e5e7eb;
}

.treatments-trust-grid div:last-child {
    border-right: 0;
}

.treatments-trust-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.treatments-trust-grid span {
    color: #6b7280;
    font-size: 14px;
}

/* Featured treatment cards */

.treatments-featured-section {
    background: #f8fafc;
}

.treatments-featured-head {
    max-width: 820px;
    margin-bottom: 36px;
}

.treatments-featured-head h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.treatments-featured-head p {
    margin-top: 14px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.treatments-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.treatments-featured-card {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
    transition: 250ms ease;
}

.treatments-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.treatments-featured-card a {
    display: block;
    height: 100%;
}

.treatments-featured-image {
    height: 230px;
    background: #e8f1f8;
    overflow: hidden;
}

.treatments-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.treatments-featured-content {
    padding: 28px;
}

.treatments-featured-content span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: black;
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.treatments-featured-content h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.7px;
}

.treatments-featured-content p {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.65;
}

.treatments-featured-content strong {
    color: black;
    font-size: 14px;
    font-weight: 900;
}

/* All categories short section */

.treatments-all-strip {
    padding-top: 30px;
    background: #f8fafc;
}

.treatments-all-box {
    padding: 44px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
}

.treatments-all-box h2 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.3px;
}

.treatments-all-box p {
    max-width: 800px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.treatments-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

.treatments-pill-grid span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.treatments-all-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Consultation */

.treatments-consultation {
    background: #f8fafc;
}

.treatments-consultation-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 46px;
    border-radius: 34px;
    background: #111827;
    color: #ffffff;
}

.treatments-consultation-box .fm-eyebrow,
.treatments-consultation-box h2 {
    color: #ffffff;
}

.treatments-consultation-box h2 {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -1.3px;
}

.treatments-consultation-box p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    line-height: 1.7;
}

.treatments-consultation-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.treatments-consultation-actions .fm-btn-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.treatments-local {
    background: #ffffff;
}

/* Responsive */

@media (max-width: 1100px) {

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

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

    .treatments-consultation-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .treatments-hero {
        padding: 66px 0;
    }

    .treatments-hero-grid,
    .treatments-trust-grid,
    .treatments-featured-grid {
        grid-template-columns: 1fr;
    }

    .treatments-hero h1 {
        font-size: 38px;
        letter-spacing: -1.1px;
    }

    .treatments-hero p {
        font-size: 16px;
    }

    .treatments-hero-image,
    .treatments-hero-image img {
        min-height: 340px;
    }

    .treatments-hero-image {
        border-radius: 26px;
    }

    .treatments-hero-image-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 20px;
    }

    .treatments-hero-image-card strong {
        font-size: 17px;
    }

    .treatments-trust-grid div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .treatments-featured-head h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .treatments-featured-image {
        height: 200px;
    }

    .treatments-featured-content {
        padding: 24px;
    }

    .treatments-featured-content h3 {
        font-size: 22px;
    }

    .treatments-all-box {
        padding: 28px;
        border-radius: 26px;
    }

    .treatments-all-box h2 {
        font-size: 30px;
    }

    .treatments-consultation-box {
        padding: 30px;
        border-radius: 26px;
    }

    .treatments-consultation-box h2 {
        font-size: 30px;
    }

    .treatments-consultation-actions,
    .treatments-all-actions {
        width: 100%;
        flex-direction: column;
    }
}

.fm-contact-page {
    background: #fff;
    color: #111;
}

.fm-contact-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 58%, #f2f2f2 100%);
}

.fm-contact-hero-grid,
.fm-contact-main-grid,
.fm-contact-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: start;
}

.fm-contact-hero h1,
.fm-contact-intro h2,
.fm-contact-form-wrap h2,
.fm-map-heading h2,
.fm-contact-faq h2,
.fm-contact-options h2 {
    margin: 0;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.fm-contact-hero p,
.fm-contact-intro p,
.fm-contact-form-wrap p,
.fm-map-heading p,
.fm-section-heading p {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: 17px;
    line-height: 1.78;
    color: #444;
}

.fm-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.fm-contact-hero-panel,
.fm-contact-form-wrap,
.fm-side-box,
.fm-contact-options-grid>div,
.fm-faq-grid details {
    padding: 34px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
}

.fm-contact-hero-panel h2,
.fm-side-box h3,
.fm-contact-options-grid h3 {
    margin: 0 0 16px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.fm-contact-hero-panel p,
.fm-side-box p,
.fm-contact-options-grid p,
.fm-faq-grid p {
    margin: 0 0 16px;
    color: #444;
    line-height: 1.7;
}

.fm-contact-detail-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.fm-contact-detail-list div {
    padding: 16px;
    border-radius: 18px;
    background: #f7f7f5;
}

.fm-contact-detail-list strong,
.fm-contact-detail-list a,
.fm-contact-detail-list span {
    display: block;
}

.fm-contact-detail-list strong {
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.fm-contact-detail-list a,
.fm-contact-detail-list span {
    color: #111;
    font-weight: 700;
    line-height: 1.5;
}

.fm-contact-intro {
    padding: 85px 0;
    background: #fff;
}

.fm-contact-main {
    padding: 95px 0;
    background: #f7f7f5;
}

.fm-contact-form {
    margin-top: 30px;
}

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

.fm-form-row {
    margin-bottom: 18px;
}

.fm-form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.fm-form-row input,
.fm-form-row select,
.fm-form-row textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fm-form-row input:focus,
.fm-form-row select:focus,
.fm-form-row textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.fm-form-row textarea {
    resize: vertical;
}

.fm-form-note {
    margin: -4px 0 22px !important;
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

.fm-hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.fm-alert {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.fm-alert-success {
    background: #eaf8ef;
    color: #176b35;
    border: 1px solid #cdeed8;
}

.fm-alert-error {
    background: #fff0f0;
    color: #9b1c1c;
    border: 1px solid #ffd1d1;
}

.fm-contact-side {
    display: grid;
    gap: 22px;
}

.fm-side-box a {
    color: #111;
    font-weight: 700;
}

.fm-side-box-dark {
    background: #0b0b0b;
    color: #fff;
    border-color: #0b0b0b;
}

.fm-side-box-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.fm-side-box-dark a {
    display: inline-flex;
    margin-top: 10px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.fm-contact-tick-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.fm-contact-tick-list li {
    position: relative;
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid #eee;
    color: #333;
    line-height: 1.5;
}

.fm-contact-tick-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: 800;
}

.fm-contact-tick-list li:last-child {
    border-bottom: 0;
}

.fm-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fm-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.fm-hours-list li:last-child {
    border-bottom: 0;
}

.fm-hours-list span {
    color: #555;
}

.fm-hours-list strong {
    color: #111;
    text-align: right;
}

.fm-contact-options {
    padding: 90px 0;
    background: #fff;
}

.fm-contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 38px;
}

.fm-map-section {
    padding: 90px 0;
    background: #f7f7f5;
}

.fm-map-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.fm-map-wrap {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
}

.fm-map-wrap iframe {
    display: block;
}

.fm-contact-faq {
    padding: 90px 0 105px;
    background: #fff;
}

.fm-faq-grid {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.fm-faq-grid details {
    padding: 0;
    overflow: hidden;
}

.fm-faq-grid summary {
    cursor: pointer;
    padding: 24px 28px;
    font-weight: 800;
    font-size: 17px;
    list-style: none;
}

.fm-faq-grid summary::-webkit-details-marker {
    display: none;
}

.fm-faq-grid summary:after {
    content: "+";
    float: right;
    font-size: 24px;
    line-height: 1;
}

.fm-faq-grid details[open] summary:after {
    content: "â€“";
}

.fm-faq-grid details p {
    padding: 0 28px 24px;
}

@media (max-width: 900px) {

    .fm-contact-hero-grid,
    .fm-contact-main-grid,
    .fm-contact-intro-grid,
    .fm-contact-options-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fm-contact-hero {
        padding: 60px 0;
    }

    .fm-contact-main,
    .fm-map-section,
    .fm-contact-faq,
    .fm-contact-options,
    .fm-contact-intro {
        padding: 65px 0;
    }
}

@media (max-width: 560px) {

    .fm-contact-hero h1,
    .fm-contact-intro h2,
    .fm-contact-form-wrap h2,
    .fm-map-heading h2,
    .fm-contact-faq h2,
    .fm-contact-options h2 {
        font-size: 40px;
        line-height: 1;
    }

    .fm-contact-hero p,
    .fm-contact-intro p,
    .fm-contact-form-wrap p,
    .fm-map-heading p,
    .fm-section-heading p {
        font-size: 16px;
    }

    .fm-contact-actions {
        flex-direction: column;
    }

    .fm-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fm-contact-hero-panel,
    .fm-contact-form-wrap,
    .fm-side-box,
    .fm-contact-options-grid>div,
    .fm-faq-grid details {
        padding: 24px;
        border-radius: 24px;
    }

    .fm-faq-grid summary {
        padding: 22px 0;
    }

    .fm-faq-grid details p {
        padding: 0 0 22px;
    }

    .fm-map-wrap {
        border-radius: 24px;
    }

    .fm-hours-list li {
        align-items: flex-start;
    }
}

/* Hero full slide text + image carousel */

.fm-hero-split {
    min-height: auto;
    padding: 92px 0;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.fm-hero-carousel {
    position: relative;
}

.fm-hero-panel {
    display: none;
    opacity: 0;
}

.fm-hero-panel.is-active {
    display: block;
    animation: fmHeroFade 650ms ease both;
}

@keyframes fmHeroFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.fm-hero-panel-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.fm-hero-split .fm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.fm-hero-split h1 {
    margin: 0 0 22px;
    max-width: 720px;
    color: #111827;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -2px;
}

.fm-hero-split p {
    max-width: 590px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
}

.fm-hero-media {
    position: relative;
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    background: #e8f1f8;
    box-shadow: 0 24px 65px rgba(17, 24, 39, 0.12);
}

.fm-hero-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: fmHeroImageZoom 6000ms ease both;
}

@keyframes fmHeroImageZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }
}

.fm-hero-floating-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

.fm-hero-floating-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.fm-hero-floating-card strong {
    display: block;
    max-width: 480px;
    color: #111827;
    font-size: 21px;
    line-height: 1.2;
}

.fm-hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.fm-hero-dots button {
    width: 38px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: 250ms ease;
}

.fm-hero-dots button.is-active {
    width: 58px;
    background: #0057b8;
}

/* Hide old hero slider if still present */
.fm-hero-split .fm-hero-slider,
.fm-hero-split .fm-hero-overlay,
.fm-hero-split .fm-hero-image-slider,
.fm-hero-split .fm-hero-card-slider {
    display: none;
}

@media (max-width: 980px) {
    .fm-hero-panel-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fm-hero-split {
        padding: 70px 0;
    }

    .fm-hero-media {
        height: 430px;
        border-radius: 28px;
    }
}

@media (max-width: 760px) {
    .fm-hero-split h1 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .fm-hero-split p {
        font-size: 16px;
    }

    .fm-hero-media {
        height: 360px;
    }

    .fm-hero-floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 20px;
    }

    .fm-hero-floating-card strong {
        font-size: 17px;
    }

    .fm-hero-dots {
        justify-content: center;
    }
}

/* ================================
   Face Medical Treatment Detail Pages
================================ */

.fm-treatment-detail-page {
    background: #ffffff;
}

.fm-treatment-hero {
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(30, 64, 175, 0.08), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.fm-treatment-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.fm-treatment-hero h1 {
    margin: 0 0 14px;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.fm-treatment-hero h2 {
    margin: 0 0 22px;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.15;
    color: #1e40af;
    letter-spacing: -0.02em;
}

.fm-treatment-hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.fm-treatment-hero-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.fm-treatment-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.fm-treatment-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}

.fm-treatment-image-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1e40af;
}

.fm-treatment-image-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    color: #0f172a;
}

.fm-treatment-trust {
    padding: 28px 0;
    background: #0f172a;
}

.fm-treatment-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fm-treatment-trust-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-treatment-trust-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 16px;
}

.fm-treatment-trust-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.fm-treatment-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.fm-treatment-split h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.fm-treatment-split p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

.fm-treatment-benefits {
    background: #f8fafc;
}

.fm-treatment-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fm-treatment-info-card {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.fm-treatment-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fm-treatment-info-card span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 999px;
    background: black;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.fm-treatment-info-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #0f172a;
}

.fm-treatment-areas-section {
    background: #ffffff;
}

.fm-treatment-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
}

.fm-treatment-pill-grid span {
    padding: 14px 20px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    font-weight: 800;
}

.fm-treatment-process {
    background:
        radial-gradient(circle at bottom left, rgba(30, 64, 175, 0.08), transparent 35%),
        #f8fafc;
}

.fm-treatment-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fm-treatment-process-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.fm-treatment-process-card strong {
    display: block;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(30, 64, 175, 0.28);
}

.fm-treatment-process-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.fm-treatment-process-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.fm-treatment-why {
    background: #ffffff;
}

.fm-treatment-why-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
    padding: 52px;
    border-radius: 34px;
    background: #0f172a;
    overflow: hidden;
    position: relative;
}

.fm-treatment-why-box::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(30, 64, 175, 0.35);
}

.fm-treatment-why-box .fm-eyebrow {
    color: #93c5fd;
}

.fm-treatment-why-box h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.fm-treatment-why-box ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fm-treatment-why-box li {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.fm-final-cta p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 17px;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 980px) {

    .fm-treatment-hero-grid,
    .fm-treatment-split,
    .fm-treatment-why-box {
        grid-template-columns: 1fr;
    }

    .fm-treatment-trust-grid,
    .fm-treatment-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .fm-treatment-hero-image,
    .fm-treatment-hero-image img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .fm-treatment-hero {
        padding: 60px 0 44px;
    }

    .fm-treatment-hero h1 {
        font-size: 42px;
    }

    .fm-treatment-hero h2 {
        font-size: 24px;
    }

    .fm-treatment-hero p {
        font-size: 16px;
    }

    .fm-treatment-trust-grid,
    .fm-treatment-process-grid,
    .fm-treatment-card-grid {
        grid-template-columns: 1fr;
    }

    .fm-treatment-hero-image,
    .fm-treatment-hero-image img {
        min-height: 340px;
        border-radius: 24px;
    }

    .fm-treatment-image-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .fm-treatment-split {
        gap: 24px;
    }

    .fm-treatment-split h2 {
        font-size: 36px;
    }

    .fm-treatment-split p {
        font-size: 16px;
    }

    .fm-treatment-why-box {
        padding: 30px;
        border-radius: 26px;
    }

    .fm-treatment-pill-grid {
        justify-content: flex-start;
    }

    .fm-treatment-pill-grid span {
        width: 100%;
        text-align: center;
    }
}

/* Treatment detail pages */

.fm-treatment-detail-page {
    background: #ffffff;
}

.fm-treatment-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(30, 64, 175, 0.08), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.fm-treatment-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
}

.fm-treatment-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.fm-treatment-hero h1 {
    margin: 0 0 14px;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.fm-treatment-hero h2 {
    margin: 0 0 22px;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.15;
    color: #1e40af;
    letter-spacing: -0.02em;
}

.fm-treatment-hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.fm-treatment-hero-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.fm-treatment-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.fm-treatment-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}

.fm-treatment-image-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1e40af;
}

.fm-treatment-image-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    color: #0f172a;
}

.fm-treatment-trust {
    padding: 28px 0;
    background: #0f172a;
}

.fm-treatment-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fm-treatment-trust-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-treatment-trust-grid strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 16px;
}

.fm-treatment-trust-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.fm-treatment-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.fm-treatment-split h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.fm-treatment-split p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

.fm-treatment-benefits,
.fm-treatment-process {
    background: #f8fafc;
}

.fm-treatment-card-grid,
.fm-treatment-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fm-treatment-process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.fm-treatment-info-card,
.fm-treatment-process-card {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
}

.fm-treatment-info-card:hover,
.fm-treatment-process-card:hover {
    transform: translateY(-6px);
}

.fm-treatment-info-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: black;
    color: #ffffff;
    font-weight: 900;
}

.fm-treatment-info-card h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
    color: #0f172a;
}

.fm-treatment-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
}

.fm-treatment-pill-grid span {
    padding: 14px 20px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    font-weight: 800;
    transition: 0.3s ease;
}

.fm-treatment-pill-grid span:hover {
    background: black;
    color: #ffffff;
    border-color: #2563eb;
}

.fm-treatment-process-card strong {
    display: block;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(30, 64, 175, 0.28);
}

.fm-treatment-process-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.fm-treatment-process-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.fm-treatment-why-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
    padding: 52px;
    border-radius: 34px;
    background: #0f172a;
    overflow: hidden;
    position: relative;
}

.fm-treatment-why-box h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.fm-treatment-why-box ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fm-treatment-why-box li {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

@media (max-width: 980px) {

    .fm-treatment-hero-grid,
    .fm-treatment-split,
    .fm-treatment-why-box {
        grid-template-columns: 1fr;
    }

    .fm-treatment-trust-grid,
    .fm-treatment-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .fm-treatment-hero {
        padding: 60px 0 44px;
    }

    .fm-treatment-hero h1 {
        font-size: 42px;
    }

    .fm-treatment-hero h2 {
        font-size: 24px;
    }

    .fm-treatment-trust-grid,
    .fm-treatment-process-grid,
    .fm-treatment-card-grid {
        grid-template-columns: 1fr;
    }

    .fm-treatment-hero-image,
    .fm-treatment-hero-image img {
        min-height: 340px;
        border-radius: 24px;
    }

    .fm-treatment-image-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .fm-treatment-pill-grid {
        justify-content: flex-start;
    }

    .fm-treatment-pill-grid span {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 760px) {

    .fm-home .fm-trust-strip {
        padding: 28px 0 !important;
    }

    .fm-home .fm-trust-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 20px !important;
    }

    .fm-home .fm-trust-grid div {
        border: 0 !important;
        padding: 16px !important;
    }

    .fm-home .fm-trust-grid strong {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .fm-home .fm-trust-grid span {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 760px) {

    .fm-about-page .fm-trust-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .fm-about-page .fm-trust-grid div {
        padding: 18px !important;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 12px;
    }

    .fm-about-page .fm-trust-grid strong {
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.3;
    }

    .fm-about-page .fm-trust-grid span {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 760px) {
    .fm-treatment-card-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 18px;
        scrollbar-width: none;
    }

    .fm-treatment-card-grid::-webkit-scrollbar {
        display: none;
    }

    .fm-treatment-info-card {
        min-width: 82%;
        scroll-snap-align: start;
    }
}

.fm-review-carousel {
    position: relative;
}

.fm-review-carousel-track {
    position: relative;
    min-height: 240px;
}

.fm-review-carousel .fm-review-highlight {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(18px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fm-review-carousel .fm-review-highlight.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.fm-review-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.fm-review-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.25s ease;
}

.fm-review-dots button.is-active {
    width: 26px;
    background: #0057b8;
}

@media (max-width: 760px) {
    .fm-review-carousel-track {
        min-height: 390px;
    }
}

/* ===============================
   Locations Pages
================================ */

.fm-locations-page {
    background: #ffffff;
}

.fm-locations-hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.10), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.fm-locations-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.fm-locations-hero h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.fm-locations-hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.fm-locations-hero-image {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: #e8f1f8;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.fm-locations-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.fm-locations-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.fm-locations-image-card span,
.fm-locations-image-card strong {
    display: block;
}

.fm-locations-image-card span {
    margin-bottom: 8px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fm-locations-image-card strong {
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.fm-location-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fm-location-card a {
    display: block;
    height: 100%;
    padding: 32px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: 0.25s ease;
}

.fm-location-card a:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.fm-location-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fm-location-card h3 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 32px;
    letter-spacing: -0.04em;
}

.fm-location-card p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.fm-location-card strong {
    color: #0057b8;
    font-size: 14px;
    font-weight: 900;
}

.fm-locations-gallery {
    background: #f8fafc;
}

.fm-locations-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.fm-locations-gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
}

@media (max-width: 1000px) {

    .fm-locations-hero-grid,
    .fm-location-card-grid,
    .fm-locations-gallery-grid {
        grid-template-columns: 1fr;
    }

    .fm-locations-hero-image,
    .fm-locations-hero-image img {
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    .fm-locations-hero {
        padding: 64px 0;
    }

    .fm-locations-hero h1 {
        font-size: 40px;
        line-height: 1;
    }

    .fm-locations-hero p {
        font-size: 16px;
    }

    .fm-locations-hero-image,
    .fm-locations-hero-image img {
        min-height: 320px;
        border-radius: 26px;
    }

    .fm-locations-image-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .fm-location-card a {
        padding: 26px;
        border-radius: 24px;
    }

    .fm-location-card h3 {
        font-size: 28px;
    }

    .fm-locations-gallery-grid img {
        height: 260px;
    }
}

.fm-home-locations {
    background: #f8fafc;
}

.fm-home-locations .fm-location-card-grid {
    margin-top: 50px;
}

.fm-uk-patients {
    background: #ffffff;
    padding: 90px 0;
}

.fm-uk-patients-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .fm-uk-patients {
        padding: 65px 0;
    }

    .fm-uk-patients-image img {
        height: 280px;
    }
}

@media (max-width: 760px) {
    .fm-location-card-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 4px 0 20px;
        scrollbar-width: none;
    }

    .fm-location-card-grid::-webkit-scrollbar {
        display: none;
    }

    .fm-location-card {
        min-width: 84%;
        flex: 0 0 84%;
        scroll-snap-align: start;
    }

    .fm-location-card a {
        min-height: 230px;
    }
}

@media (max-width: 760px) {

    .fm-values-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .fm-values-grid::-webkit-scrollbar {
        display: none;
    }

    .fm-values-grid>div {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }
}

.footer-bottom {
    align-items: flex-start;
}

.footer-credit {
    text-align: right;
}

.footer-credit a {
    font-weight: 800;
    color: #ffffff;
}

@media (max-width: 760px) {
    .footer-credit {
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 980px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 900;
}

.cookie-banner p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.cookie-banner a {
    color: var(--primary);
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions button,
.cookie-actions a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.cookie-actions button:first-child {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 760px) {
    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button,
    .cookie-actions a {
        width: 100%;
    }
}

/* ===============================
   Face Medical Results Page
================================ */

.fm-results-page {
    background: #ffffff;
    color: #111827;
}

.fm-results-hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.10), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.fm-results-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.fm-results-hero h1,
.fm-results-intro h2,
.fm-results-note h2,
.fm-section-head h2 {
    margin: 0;
    color: #111827;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.fm-results-hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.fm-results-hero-image {
    position: relative;
    min-height: 540px;
    border-radius: 34px;
    overflow: hidden;
    background: #e8f1f8;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.fm-results-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}

.fm-results-hero-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.fm-results-hero-card span,
.fm-results-hero-card strong {
    display: block;
}

.fm-results-hero-card span {
    margin-bottom: 8px;
    color: #0057b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fm-results-hero-card strong {
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.fm-results-intro {
    padding: 90px 0;
    background: #ffffff;
}

.fm-results-intro p,
.fm-results-note p,
.fm-section-head p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.fm-results-gallery-section {
    padding: 95px 0;
    background: #f8fafc;
}

.fm-results-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 45px;
}

.fm-results-filter span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.fm-results-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.fm-result-card {
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.fm-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.fm-result-image {
    height: 360px;
    background: #e5e7eb;
    overflow: hidden;
}

.fm-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.fm-result-content {
    padding: 26px;
}

.fm-result-content span {
    display: inline-flex;
    margin-bottom: 12px;
    color: black;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fm-result-content h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.fm-result-content p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.fm-results-note {
    padding: 90px 0;
    background: #ffffff;
}

.fm-results-note-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
    padding: 46px;
    border-radius: 34px;
    background: #111827;
    color: #ffffff;
}

.fm-results-note-box .fm-eyebrow,
.fm-results-note-box h2 {
    color: #ffffff;
}

.fm-results-note-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74) !important;
}

.fm-results-treatments {
    padding: 90px 0;
    background: #f8fafc;
}

.fm-result-treatment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.fm-result-treatment-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.fm-result-treatment-grid a:hover {
    background: #0057b8;
    border-color: #0057b8;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {

    .fm-results-hero-grid,
    .fm-results-note-box {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .fm-results-grid-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 760px) {
    .fm-results-hero {
        padding: 64px 0;
    }

    .fm-results-hero h1,
    .fm-results-intro h2,
    .fm-results-note h2,
    .fm-section-head h2 {
        font-size: 40px;
        line-height: 1;
    }

    .fm-results-hero p {
        font-size: 16px;
    }

    .fm-results-hero-image,
    .fm-results-hero-image img {
        min-height: 330px;
        border-radius: 26px;
    }

    .fm-results-hero-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
        border-radius: 18px;
    }

    .fm-results-intro,
    .fm-results-gallery-section,
    .fm-results-note,
    .fm-results-treatments {
        padding: 64px 0;
    }

    .fm-results-grid-list {
        /* display: flex; */
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 18px;
        scrollbar-width: none;
    }

    .fm-results-grid-list::-webkit-scrollbar {
        display: none;
    }

    .fm-result-card {
        flex: 0 0 86%;
        min-width: 86%;
        scroll-snap-align: start;
    }

    .fm-result-image {
        height: 320px;
    }

    .fm-results-note-box {
        padding: 28px;
        border-radius: 26px;
    }

    .fm-results-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .fm-results-filter::-webkit-scrollbar {
        display: none;
    }

    .fm-results-filter span {
        flex: 0 0 auto;
    }
}

/* ==========================================
   Face Medical Warm Premium Refresh
   Added to soften the blue/white clinical feel
========================================== */
:root {
    --primary: #B79A7A;
    --primary-dark: #8F7358;
    --primary-soft: #F4EEE7;
    --dark: #111111;
    --dark-soft: #3A332E;
    --off-white: #F8F5F1;
    --light-grey: #EFE8DF;
    --border: #DED4C9;
    --text: #1E1A17;
    --muted: #6F675F;
    --shadow: 0 22px 55px rgba(30, 26, 23, 0.10);
}

body,
.fm-home {
    background: #F8F5F1;
    color: var(--text);
}

.site-promo-banner,
.header-btn,
.cookie-actions button:first-child {
    background: #111111;
}

.site-topbar,
.site-footer,
.fm-trust-strip {
    background: #111111;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active,
.nav-dropdown-menu a:hover {
    background: black;
    color: white;
}

.header-btn:hover,
.cookie-actions button:first-child:hover {
    background: #8F7358;
}

.fm-eyebrow,
.fm-treatment-card-content span,
.fm-treatment-card strong,
.fm-values-grid span,
.fm-hero-floating-card span,
.policy-card a,
.cookie-banner a,
.footer-email {
    color: black;
}

.fm-btn {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.fm-btn:hover {
    background: #8F7358;
    border-color: #8F7358;
    color: #ffffff;
}

.fm-btn-light {
    background: #F8F5F1 !important;
    color: #111111 !important;
    border: 1px solid #D8CABC !important;
}

.fm-btn-light:hover {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

.fm-btn-dark {
    background: #111111;
    color: #ffffff;
}

.fm-hero-split {
    position: relative;
    padding: 0;
    min-height: 720px;
    display: flex;
    align-items: stretch;
    background: #111111;
    overflow: hidden;
}

.fm-hero-split .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
}

.fm-hero-carousel,
.fm-hero-panel,
.fm-hero-panel-grid,
.fm-hero-media,
.fm-hero-media>img {
    min-height: 720px;
}

.fm-hero-carousel {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.fm-hero-panel {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 800ms ease;
}

.fm-hero-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    animation: none;
}

.fm-hero-panel-grid {
    display: block;
    position: relative;
    height: 100%;
}

.fm-hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: #111111;
}

.fm-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(17, 17, 17, .65) 0%,
            rgba(17, 17, 17, .40) 42%,
            rgba(17, 17, 17, .08) 100%),
        linear-gradient(180deg,
            rgba(17, 17, 17, .05) 0%,
            rgba(17, 17, 17, .20) 100%);
    z-index: 1;
}

.fm-hero-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transform: scale(1.04);
}

.fm-hero-panel.is-active .fm-hero-media>img {
    animation: fmHeroWarmZoom 7000ms ease both;
}

@keyframes fmHeroWarmZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

.fm-hero-split .fm-hero-content {
    position: absolute;
    z-index: 3;
    left: max(40px, calc((100vw - 1180px) / 2));
    top: 50%;
    transform: translateY(-50%);
    max-width: 720px;
    padding-right: 30px;
}

.fm-hero-split h1 {
    color: #ffffff;
    font-size: clamp(46px, 5.7vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 780px;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.fm-hero-split p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
    max-width: 650px;
}

.fm-hero-split .fm-eyebrow {
    color: #D9BEA2 !important;
}

.fm-hero-floating-card {
    display: none;
}

.fm-hero-dots {
    position: absolute;
    z-index: 5;
    left: max(40px, calc((100vw - 1180px) / 2));
    bottom: 58px;
    display: flex;
    gap: 10px;
    margin: 0;
}

.fm-hero-dots button {
    width: 44px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.fm-hero-dots button.is-active {
    width: 72px;
    background: #D9BEA2;
}

.fm-hero-arrows {
    position: absolute;
    z-index: 5;
    right: max(30px, calc((100vw - 1180px) / 2));
    bottom: 42px;
    display: flex;
    gap: 12px;
}

.fm-hero-arrows button {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: 250ms ease;
}

.fm-hero-arrows button:hover {
    background: #D9BEA2;
    color: #111111;
    border-color: #D9BEA2;
    transform: translateY(-2px);
}

.fm-trust-strip {
    padding: 34px 0;
    border-bottom: 0;
}

.fm-trust-grid div {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
}

.fm-intro,
.fm-results,
.fm-local,
.fm-about-cta,
.fm-care-section {
    background: #FFFDF9;
}

.fm-treatment-showcase,
.fm-values,
.fm-faq,
.fm-team-section,
.fm-location-section,
.fm-home-locations,
.fm-reviews-slider-section {
    background: #F8F5F1 !important;
}

.fm-treatment-card,
.fm-values-grid div,
.fm-review-slide,
.fm-review-highlight,
.fm-location-box,
.policy-card,
.error-help-card {
    background: #FFFDF9;
    border-color: #E2D8CD;
    box-shadow: 0 18px 45px rgba(30, 26, 23, 0.08);
}

.fm-treatment-card-content span,
.fm-role,
.policy-hero span {
    background: black;
    color: white !important;
}

.fm-slider-btn:hover,
.fm-review-link:hover {
    background: #8F7358;
}

.fm-final-cta {
    background: linear-gradient(135deg, #111111, #3A332E);
}

.fm-final-cta .fm-btn {
    background: #D9BEA2;
    border-color: #D9BEA2;
    color: #111111;
}

.fm-final-cta .fm-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.footer-socials a:hover {
    background: #8F7358;
    border-color: #8F7358;
}

@media (max-width: 980px) {

    .fm-hero-split,
    .fm-hero-carousel,
    .fm-hero-panel,
    .fm-hero-panel-grid,
    .fm-hero-media,
    .fm-hero-media>img {
        min-height: 680px;
        height: 680px;
    }

    .fm-hero-split .fm-hero-content {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .fm-hero-dots {
        left: 24px;
        bottom: 38px;
    }

    .fm-hero-arrows {
        right: 24px;
        bottom: 26px;
    }
}

@media (max-width: 760px) {

    .fm-hero-split,
    .fm-hero-carousel,
    .fm-hero-panel,
    .fm-hero-panel-grid,
    .fm-hero-media,
    .fm-hero-media>img {
        min-height: 660px;
        height: 660px;
    }

    .fm-hero-media::after {
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.58));
    }

    .fm-hero-split .fm-hero-content {
        top: 46%;
        padding-right: 0;
    }

    .fm-hero-split h1 {
        font-size: 42px;
        letter-spacing: -0.04em;
    }

    .fm-hero-split p {
        font-size: 16px;
    }

    .fm-hero-actions {
        flex-direction: column;
        margin: 20px auto;
    }

    .fm-hero-dots {
        justify-content: flex-start;
        bottom: 30px;
    }

    .fm-hero-dots button {
        width: 34px;
    }

    .fm-hero-dots button.is-active {
        width: 54px;
    }

    .fm-hero-arrows {
        display: none;
    }
}

.fm-result-image {
    position: relative;
    overflow: hidden;
}

.fm-result-hover {
    position: absolute;
    inset: 0;
    padding: 26px;
    background: linear-gradient(135deg,
            rgba(17, 17, 17, 0.88),
            rgba(17, 17, 17, 0.58));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(12px);
    transition: 0.3s ease;
}

.fm-result-card:hover .fm-result-hover {
    opacity: 1;
    transform: translateY(0);
}

.fm-result-hover span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #D8C5B0;
    color: #111111;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fm-result-hover h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.05;
}

.fm-result-hover p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.fm-result-hidden {
    display: none !important;
}

.fm-results-more {
    margin-top: 36px;
    text-align: center;
}

.fm-results-grid {
    display: grid !important;
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 70px !important;
    align-items: center !important;
}

.fm-results-grid .reveal-left {
    max-width: 520px !important;
}

.fm-results-grid .reveal-left h2 {
    font-size: 60px !important;
    line-height: 0.95 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
}

.fm-results-grid .reveal-left p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.fm-results-image {
    width: 100% !important;
    height: 100% !important;
    max-height: 650px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 40px !important;
    display: block !important;
}

.fm-results-grid .reveal-right {
    width: 100% !important;
}

@media (max-width: 900px) {
    .fm-results-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .fm-results-grid .reveal-left {
        max-width: 100% !important;
    }

    .fm-results-grid .reveal-left h2 {
        font-size: 2.5rem !important;
    }

    .fm-results-image {
        max-height: 450px !important;
    }
}

.fm-team {
    padding: 120px 0 !important;
}

.fm-team-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.fm-team-image img {
    width: 100% !important;
    display: block !important;
    border-radius: 36px !important;
    object-fit: cover !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08) !important;
}

.fm-team-content h2 {
    margin-bottom: 24px !important;
}

.fm-team-content p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

@media (max-width: 900px) {

    .fm-team-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .fm-team-image {
        order: -1 !important;
    }
}

.fm-gift-card {
    padding: 120px 0 !important;
}

.fm-gift-card-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.fm-gift-card-image img {
    width: 100% !important;
    display: block !important;
    border-radius: 36px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08) !important;
}

.fm-gift-card-content h2 {
    margin-bottom: 24px !important;
}

.fm-gift-card-content p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

@media (max-width: 900px) {

    .fm-gift-card-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .fm-gift-card-image {
        order: -1 !important;
    }
}

.treatments-gallery-slider {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.treatments-gallery-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: fmGallerySlide 35s linear infinite;
}

.treatments-gallery-slider:hover .treatments-gallery-track {
    animation-play-state: paused;
}

.treatments-gallery-slide {
    position: relative;
    width: 360px;
    height: 430px;
    flex: 0 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #f4f4f4;
}

.treatments-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatments-gallery-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.treatments-gallery-overlay span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

@keyframes fmGallerySlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .treatments-gallery-slide {
        width: 270px;
        height: 340px;
        border-radius: 22px;
    }

    .treatments-gallery-track {
        gap: 16px;
        animation-duration: 28s;
    }
}

.treatments-gallery-section {
    background: #f7f7f5;
    overflow: hidden;
}

.treatments-gallery-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 36px;
}

.treatments-gallery-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: fmGallerySlide 35s linear infinite;
}

.treatments-gallery-slider:hover .treatments-gallery-track {
    animation-play-state: paused;
}

.treatments-gallery-slide {
    position: relative;
    width: 360px;
    height: 430px;
    flex: 0 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.treatments-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.treatments-gallery-note {
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.treatments-gallery-note p {
    margin: 0;
    color: #4b5563;
    font-weight: 600;
}

.treatments-gallery-note .fm-btn {
    width: auto !important;
    flex-shrink: 0;
    background: #111827;
    color: #ffffff;
}

@keyframes fmGallerySlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .treatments-gallery-slide {
        width: 280px;
        height: 360px;
        border-radius: 22px;
    }

    .treatments-gallery-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .treatments-gallery-note .fm-btn {
        width: 100% !important;
    }
}

.fm-advanced-technology {
    background: #f7f3ef;
}

.fm-technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.fm-technology-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.fm-technology-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.fm-technology-image {
    height: 250px;
    overflow: hidden;
}

.fm-technology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fm-technology-content {
    padding: 24px;
}

.fm-technology-content span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fm-technology-content h3 {
    margin-bottom: 12px;
}

.fm-technology-content p {
    margin-bottom: 18px;
}

.fm-technology-content strong {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .fm-technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fm-technology-grid {
        grid-template-columns: 1fr;
    }

    .fm-technology-image {
        height: 230px;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

@media (max-width: 760px) {
    .fm-treatment-slider,
    .fm-values-grid,
    .fm-location-card-grid,
    .fm-results-grid,
    .fm-team-grid,
    .fm-split {
        max-width: 100%;
        overflow-x: hidden;
    }

    .fm-treatment-slider {
        overflow-x: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .fm-treatment-card {
        min-width: 280px;
        max-width: 280px;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(35px);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible {
        transform: translate(0, 0);
    }
}