:root {
    --white: #ffffff;
    --deep-frost: #F5F3F4;
    /* Seashell */
    --glacial-whisper: #EAE7E8;
    /* Ghost White */
    --shadow-blue: #D1C7CA;
    /* Lavender Blush */
    --lunar-dust: #B3A7AA;
    /* Misty Plum */
    --midnight-haze: #58494F;
    /* Subtle Plum */
    --text-dark: #3A2F33;
    /* Darker Suble Plum for readability */
    --text-light: #58494F;
    /* Subtle Plum */
    --accent-gradient: linear-gradient(135deg, #D1C7CA 0%, #58494F 100%);
    --glass-bg: rgba(245, 243, 244, 0.7);
    /* Seashell glass */
    --glass-border: rgba(209, 199, 202, 0.4);
    /* Lavender Blush glass border */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    /* Lenis handles smoothing */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--deep-frost);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Liquid Mesh Background Element */
.liquid-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(100px);
    pointer-events: none;
}

.mesh-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    background: var(--shadow-blue);
}

.mesh-1 {
    width: 700px;
    height: 700px;
    top: -15%;
    left: -15%;
    background: var(--shadow-blue);
}

.mesh-2 {
    width: 600px;
    height: 600px;
    bottom: -15%;
    right: -10%;
    background: var(--glacial-whisper);
}

.mesh-3 {
    width: 500px;
    height: 500px;
    top: 40%;
    left: 60%;
    background: var(--lunar-dust);
}

/* Split Text Utility */
.split-parent {
    overflow: hidden;
    display: block;
}

.split-child {
    display: block;
    transform: translateY(110%);
}

/* Base Styles Polish */
a {
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(88, 73, 79, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    opacity: 0.5;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--midnight-haze);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    overflow: hidden;
    /* Added for split-text reveal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--midnight-haze);
    display: block;
    margin-bottom: 1rem;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--deep-frost);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--midnight-haze);
    animation: loading 2s ease infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.navbar.scrolled {
    background: var(--deep-frost);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(88, 73, 79, 0.05);
    border-bottom: 1px solid var(--shadow-blue);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-dark) !important;
    z-index: 9600;
    text-transform: uppercase;
    text-decoration: none;
}

.logo-dot {
    color: var(--midnight-haze);
    margin-left: 2px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9600;
    gap: 8px;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-toggle span:nth-child(1) {
    width: 30px;
}

.nav-toggle span:nth-child(2) {
    width: 20px;
}

.nav-toggle span:nth-child(3) {
    display: none;
}

/* Using only 2 bars */

.nav-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    width: 25px;
}

.nav-toggle.active span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
    width: 25px;
}

/* Sidebar Backdrop */
.nav-overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.nav-overlay-bg.active {
    opacity: 1;
    pointer-events: auto;
}

/* Side Navigation */
.nav-links {
    position: fixed;
    top: 0;
    right: -450px;
    /* Initially hidden */
    width: 450px;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5rem;
    gap: 1.5rem;
    z-index: 4100;
    box-shadow: -20px 0 50px rgba(88, 73, 79, 0.05);
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    visibility: visible;
    /* Always ready but off-screen */
    opacity: 1;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateX(40px);
}

.nav-links a:hover {
    color: var(--midnight-haze);
    transform: translateX(10px);
}

.nav-links .btn-primary {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(40px);
}

/* Custom Icon Hover */
.nav-toggle:hover span:nth-child(2) {
    width: 30px;
}



/* Buttons */
.btn-primary {
    background: var(--text-dark);
    color: var(--white) !important;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(88, 73, 79, 0.1);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--text-dark) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(88, 73, 79, 0.1);
}

.btn-outline {
    border: 2px solid var(--midnight-haze);
    color: var(--midnight-haze);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--midnight-haze);
    color: var(--white);
}

/* Hero Section - The 'Proper' Minimal */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-frost) 0%, var(--glacial-whisper) 50%, var(--shadow-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-background-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: var(--white);
    opacity: 0.5;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -2vw;
    pointer-events: none;
}

.hero-side-mark {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 15vw;
    font-weight: 900;
    color: var(--lunar-dust);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    letter-spacing: 5vw;
}

.hero-minimal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    gap: 5%;
}

.hero-text-side {
    max-width: 600px;
}

.brand-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--midnight-haze);
    margin-bottom: 2rem;
    display: block;
}

.hero-title-main {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(4rem, 10vw, 7rem) !important;
    line-height: 0.85 !important;
    font-weight: 800 !important;
    color: var(--text-dark);
    letter-spacing: -4px;
    margin-bottom: 2.5rem !important;
}

.hero-title-main span {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.cta-minimal {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.cta-minimal svg {
    width: 20px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-minimal:hover svg {
    transform: translateX(10px);
}

.hero-image-side {
    position: relative;
    width: 45%;
    height: 70vh;
}

.image-reveal-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.reveal-strip {
    position: absolute;
    top: 0;
    width: 33.33%;
    height: 100%;
    background: var(--glacial-whisper);
    z-index: 2;
}

.reveal-strip:nth-child(1) {
    left: 0;
}

.reveal-strip:nth-child(2) {
    left: 33.33%;
}

.reveal-strip:nth-child(3) {
    left: 66.66%;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

/* Bottom Ticker */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--deep-frost);
    overflow: hidden;
    z-index: 5;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.scrolling-text span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--midnight-haze);
    padding-right: 50px;
    opacity: 0.8;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero-title-main {
        font-size: clamp(4rem, 8vw, 6rem) !important;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .expertise-header h2.main-title,
    .expertise-header h2.sub-title {
        font-size: 4.5rem;
    }

    .expertise-columns {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .hero-minimal-container {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 60px;
    }

    .hero-text-side {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 3.5rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image-side {
        width: 100%;
        height: 50vh;
    }

    .hero-background-mark {
        font-size: 40vw;
        opacity: 0.1;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-minimal-container {
        padding-top: 160px;
    }

    .nav-links {
        width: 100%;
        padding: 0 40px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .expertise-header {
        margin-bottom: 60px;
    }

    .expertise-header h2.main-title,
    .expertise-header h2.sub-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .expertise-grid-section {
        padding: 80px 0;
    }

    .expertise-columns {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .exp-col h3 {
        min-height: auto;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    .horizontal-item {
        padding: 60px 15px;
    }

    .treatment-slide-premium {
        padding: 30px 15px;
        border-radius: 30px;
    }

    .slide-visual-side {
        height: 300px;
    }

    .contact-form-side {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .contact-info-side h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .brand-tag {
        margin-bottom: 1rem;
        font-size: 0.65rem;
    }

    .hero-title-main {
        font-size: clamp(2.8rem, 12vw, 3.5rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 2rem !important;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-background-mark {
        display: none;
    }

    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }
}

/* Sections General */
section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--deep-frost), var(--glacial-whisper));
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--midnight-haze);
    margin-bottom: 1.5rem;
    display: inline-block;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* About Section - Balanced 3-Column Spread */
.about-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.about-typography-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: var(--glacial-whisper);
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    letter-spacing: -2vw;
}

.about-container-simple {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(245, 243, 244, 0.9), rgba(209, 199, 202, 0.7));
    backdrop-filter: blur(20px);
    padding: 3.5rem 4rem;
    border-radius: 60px;
    border: 1px solid var(--shadow-blue);
    box-shadow: 0 40px 100px rgba(88, 73, 79, 0.08);
    max-width: 1300px;
    margin: 0 auto;
}

.title-minimal {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin-bottom: 0 !important;
}

.title-minimal .highlight {
    color: var(--midnight-haze);
    display: inline;
}

.about-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-main-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.description-text {
    font-size: 1.05rem;
    color: var(--midnight-haze);
    line-height: 1.8;
}

.about-clinical-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.clinical-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.item-dot {
    width: 10px;
    height: 10px;
    background: var(--midnight-haze);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
}

.item-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--deep-frost);
    border-radius: 50%;
}

.clinical-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.clinical-item p {
    font-size: 0.95rem;
    color: var(--lunar-dust);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .about-container-simple {
        max-width: 95%;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container-simple {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 3rem 2rem;
        border-radius: 40px;
        align-items: flex-start;
    }

    .about-typography-mark {
        font-size: 35vw;
        opacity: 0.5;
    }

    .title-minimal {
        font-size: 3rem !important;
    }
}

@media (max-width: 768px) {
    .about-container-simple {
        padding: 2.5rem 1.5rem;
        gap: 3rem;
        border-radius: 30px;
    }

    .about-content-left {
        gap: 1.2rem;
    }

    .lead-emphasis {
        font-size: 1.2rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .about-clinical-list {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .about-container-simple {
        padding: 2rem 1.2rem;
        gap: 2.5rem;
        border-radius: 30px;
    }

    .about-typography-mark {
        font-size: 50vw;
        opacity: 0.3;
    }

    .title-minimal {
        font-size: 2.2rem !important;
        text-align: center;
        margin-bottom: 0.5rem !important;
    }
    
    .about-header-minimal {
        text-align: center;
        width: 100%;
    }

    .section-tag {
        margin-bottom: 0.8rem;
    }

    .lead-emphasis {
        text-align: center;
        font-size: 1.1rem;
    }

    .description-text {
        text-align: center;
        font-size: 0.95rem;
    }

    .clinical-item h3 {
        font-size: 1rem;
    }

    .clinical-item p {
        font-size: 0.85rem;
    }

    .clinical-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .item-dot {
        margin-top: 0;
    }
}



/* Comparison Section Modern - VS Structure */
.comparison-section {
    background: transparent;
    padding: 140px 0;
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: 6rem;
}

.comparison-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: var(--text-dark);
}

.vs-text {
    font-family: serif;
    font-style: italic;
    font-weight: 400;
    margin: 0 10px;
    opacity: 0.7;
}

.serif-text {
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.comparison-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.comp-card {
    flex: 1;
    padding: 5rem 4rem;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spa-card-modern {
    background: rgba(234, 231, 232, 0.6);
    /* Ghost White */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.medi-card-modern {
    background: rgba(88, 73, 79, 0.9);
    /* Subtle Plum */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    color: var(--white);
    z-index: 1;
}

.card-head {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.medi-card-modern .card-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.card-head h3 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-list li {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.medi-list li {
    opacity: 1;
}

/* VS Badge Style */
.vs-badge-container {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(88, 73, 79, 0.05);
    z-index: 10;
    border: 1px solid var(--deep-frost);
}

.vs-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--midnight-haze);
}

@media (max-width: 992px) {
    .comparison-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .vs-badge-container {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .comp-card {
        width: 100%;
        padding: 4rem 3rem;
    }
}

/* --- Expertise Grid Section (Screenshot Perfect Match) --- */
.expertise-grid-section {
    padding: 200px 0;
    background-color: #FBFBFB;
    color: #2D2A2A;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 10;
}

.expertise-grid-section .container {
    max-width: 1400px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 120px;
}

.expertise-header .section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.expertise-header h2.main-title,
.expertise-header h2.sub-title {
    font-size: clamp(3.5rem, 7vw, 6.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -4px;
    color: #2D2A2A;
}

.expertise-header h2.sub-title span {
    color: #BBB;
    font-weight: 700;
}

.expertise-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    align-items: start;
}

.exp-col {
    display: flex;
    flex-direction: column;
}

.exp-top-line {
    width: 60px;
    height: 1px;
    background: #DDD;
    margin-bottom: 30px;
}

.exp-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: #BBB;
    margin-bottom: 15px;
}

.exp-col h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.1;
    color: #2D2A2A;
    min-height: 5rem;
}

.exp-category {
    margin-bottom: 50px;
}

.exp-cat-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: #BBB;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exp-list li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.exp-list li:hover {
    color: #2D2A2A;
    transform: translateX(3px);
}

.exp-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #BBB;
}

@media (max-width: 1200px) {
    .expertise-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .expertise-columns {
        grid-template-columns: 1fr;
    }
}

/* Horizontal Scroll Section - Premium Redesign */
#treatments-horizontal {
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.horizontal-scroll-container {
    display: flex;
    width: 300vw;
    height: 100vh;
    align-items: center;
}

.horizontal-item {
    width: 100vw;
    height: 100vh;
    padding: 0 5%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.treatment-slide-premium {
    width: 90%;
    max-width: 1300px;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    padding: 4rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.slide-huge-number {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 30rem;
    font-weight: 900;
    line-height: 1;
    color: var(--glacial-whisper);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    letter-spacing: -2rem;
}

.slide-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
    position: relative;
    z-index: 10;
    align-items: center;
}

.slide-visual-side {
    position: relative;
    height: 55vh;
    z-index: 2;
}

.slide-details-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 5;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 1;
    /* Ensure visible by default */
}

.image-parallax-container {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(88, 73, 79, 0.12);
}

.image-parallax-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(58, 47, 51, 0.3) 100%);
    pointer-events: none;
}

.floating-badge-card {
    position: absolute;
    bottom: -20px;
    right: -40px;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(88, 73, 79, 0.1);
    max-width: 400px;
    border: 1px solid var(--deep-frost);
}

.slide-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glacial-whisper);
    color: var(--midnight-haze);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-dark);
    margin: 0;
}

.slide-details-side {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.group-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--midnight-haze);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--shadow-blue);
    opacity: 0.3;
}

.detail-group p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.benefits-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    opacity: 1;
    visibility: visible;
}

.benefits-chips span {
    display: inline-block;
    padding: 0.6rem 1.2rem !important;
    background: var(--white) !important;
    border: 1px solid var(--shadow-blue) !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    white-space: normal !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    position: relative;
    z-index: 50 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.benefits-chips span:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title-bg {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(88, 73, 79, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.horizontal-progress {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 2px;
    background: var(--deep-frost);
    z-index: 10;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--midnight-haze);
    box-shadow: 0 0 10px rgba(88, 73, 79, 0.4);
}

/* Conclusion Section */
.conclusion-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--deep-frost), var(--glacial-whisper));
    text-align: center;
}

.conclusion-container {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.conclusion-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.conclusion-para {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--midnight-haze);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .conclusion-section {
        padding: 80px 20px;
    }
    
    .conclusion-para {
        font-size: 1rem;
    }
}

.btn-primary.large {
    padding: 1.4rem 3.5rem;
    font-size: 1rem;
    background: var(--text-dark);
    color: var(--white) !important;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(88, 73, 79, 0.15);
    text-decoration: none;
    position: relative;
    z-index: 20;
    opacity: 1 !important;
}

.btn-primary.large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 140px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    color: var(--text-dark);
}

.contact-title span {
    color: var(--midnight-haze);
    display: block;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--midnight-haze);
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--midnight-haze);
    box-shadow: 0 10px 30px rgba(88, 73, 79, 0.05);
    border: 1px solid var(--shadow-blue);
    flex-shrink: 0;
}

.item-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lunar-dust);
    margin-bottom: 0.5rem;
}

.item-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.item-text p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-text p a:hover {
    color: var(--midnight-haze);
}

/* Clinical Form Styling */
.contact-form-side {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 5rem;
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(88, 73, 79, 0.08);
}

@media (max-width: 768px) {
    .contact-form-side {
        padding: 3rem 1.5rem;
        border-radius: 40px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 2.5rem !important;
    }
}

.clinical-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--shadow-blue);
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--lunar-dust);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--midnight-haze);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.clinical-form .btn-primary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.form-status {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.form-status.show {
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #d32f2f;
}

@media (max-width: 1200px) {
    .contact-grid {
        gap: 4rem;
    }

    .contact-form-side {
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .contact-info-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

/* Footer Section */

/* Footer */
.site-footer {
    padding: 6rem 0;
    background: var(--glacial-whisper);
    border-top: 1px solid var(--shadow-blue);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--midnight-haze);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.copyright {
    text-align: center;
    color: var(--lunar-dust);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
/* Responsive Adjustments handled in master breakpoints above */

/* --- Enhanced Project Content Styles --- */
.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--midnight-haze);
    font-size: 0.85rem;
    margin-top: 2rem;
    opacity: 0.9;
    padding-left: 1.5rem;
    border-left: 2px solid var(--midnight-haze);
    position: relative;
}

.expertise-list {
    margin-top: 2rem;
}

.expertise-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 2rem;
}

.expertise-list li {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.expertise-list li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--midnight-haze);
    font-weight: 900;
    font-size: 1.2rem;
    top: -2px;
}

.expertise-list.dual {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.expertise-list.dual>div {
    flex: 1;
    min-width: 280px;
}

.expertise-list.dual h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--midnight-haze);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    position: relative;
    display: block;
}

.expertise-list.dual h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--midnight-haze);
    margin-top: 0.5rem;
}

.expertise-list.dual ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .expertise-list ul {
        grid-template-columns: 1fr;
    }

    .expertise-list.dual {
        gap: 3rem;
    }
}
/* --- Updated Medi Facial Section Design --- */
.medifacial-intro-section {
    padding: 160px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.intro-background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 73, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.decor-grid {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--shadow-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-title {
    font-size: clamp(3rem, 6vw, 5rem) !important;
    line-height: 0.9 !important;
    font-weight: 800 !important;
    letter-spacing: -3px;
    margin-bottom: 2.5rem !important;
    color: var(--text-dark);
}

.intro-title span {
    color: var(--midnight-haze);
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.intro-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 90%;
}

.clinical-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.breakdown-item {
    display: flex;
    gap: 1.5rem;
}

.breakdown-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--lunar-dust);
    font-size: 1.2rem;
}

.breakdown-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakdown-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.intro-concerns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concern-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--lunar-dust);
}

.concern-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.concern-tags span {
    padding: 0.6rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--shadow-blue);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight-haze);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
}

.concern-tags span:hover {
    background: var(--midnight-haze);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(88, 73, 79, 0.1);
}

.visual-card-premium {
    position: relative;
    padding: 2rem;
}

.visual-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 65vh;
    box-shadow: 0 60px 120px rgba(88, 73, 79, 0.15);
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--midnight-haze), transparent);
    z-index: 5;
    animation: scanAnimation 4s linear infinite;
}

@keyframes scanAnimation {
    0% { top: 0; }
    100% { top: 100%; }
}

.floating-stat-card {
    position: absolute;
    top: 10%;
    left: -10%;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    border: 1px solid var(--glass-border);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--deep-frost);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--midnight-haze);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-val {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lunar-dust);
    letter-spacing: 2px;
}

.visual-tag {
    position: absolute;
    bottom: 5%;
    right: -5%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-dark);
    transform: rotate(90deg) translateX(100%);
    transform-origin: bottom right;
    white-space: nowrap;
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .intro-content-wrapper {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .visual-frame {
        height: 50vh;
    }
    
    .floating-stat-card {
        left: 0;
        top: -20px;
    }
    
    .clinical-breakdown {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .clinical-breakdown {
        grid-template-columns: 1fr;
    }
    
    .intro-title {
        font-size: 2.8rem !important;
    }

    .intro-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .floating-stat-card {
        padding: 1.2rem;
        left: 5%;
    }

    .visual-frame {
        height: 45vh;
    }
}



/* --- Responsive Treatments Section (Mac, Tablet, Mobile) --- */
@media (max-width: 1400px) {
    .treatment-slide-premium {
        padding: 2.5rem;
        height: auto;
        min-height: 75vh;
    }
    
    .slide-main-layout {
        gap: 2rem;
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
    
    .slide-visual-side {
        height: 50vh;
    }
    
    .floating-badge-card {
        padding: 1.5rem;
        right: -20px;
        bottom: -20px;
        max-width: 300px;
        border-radius: 20px;
    }
    
    .slide-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-details-side {
        gap: 2rem;
    }
    
    .detail-group p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    #treatments-horizontal {
        padding: 100px 0;
    }
    
    .horizontal-scroll-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 50px;
    }
    
    .horizontal-item {
        width: 100%;
        height: auto;
        padding: 0 5%;
    }
    
    .treatment-slide-premium {
        height: auto;
        min-height: auto;
        padding: 3rem 2rem;
        border-radius: 40px;
    }
    
    .slide-main-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .slide-visual-side {
        height: 40vh;
    }
    
    .slide-huge-number {
        font-size: 10rem;
        top: -10px;
        transform: none;
        right: 10px;
    }
    
    .horizontal-progress {
        display: none;
    }
    
    .section-title-bg {
        top: 2%;
        transform: none;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18vw;
    }
    
    .floating-badge-card {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        max-width: none;
        padding: 1.8rem;
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
    
    .slide-badge {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .treatment-slide-premium {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .floating-badge-card {
        padding: 1.2rem 1.5rem;
        bottom: -20px;
        width: 95%;
        border-radius: 20px;
    }
    
    .slide-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-details-side {
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .slide-huge-number {
        font-size: 8rem;
        top: -20px;
    }
    
    .detail-group p {
        font-size: 0.95rem;
    }
    
    .benefits-chips span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem !important;
    }
    
    .slide-visual-side {
        height: 45vh; /* Increased height so image is clear */
    }
}

/* --- Ticker Responsiveness --- */
@media (max-width: 768px) {
    .scrolling-text span {
        font-size: 0.65rem;
        letter-spacing: 3px;
        padding-right: 30px;
    }
    
    .hero-bottom-bar {
        padding: 1rem 0;
    }
}
