/* CSS RESET & VARIABLES */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --black: #11100e;
            --charcoal: #1e1c18;
            --dark: #2d2a24;
            --warm-gray: #5c564b;
            --muted: #91897c;
            --cream: #f6f1e8;
            --ivory: #fdfbf7;
            --white: #ffffff;
            --gold: #c5a059;
            --gold-light: #d6b97b;
            --gold-dark: #a17f3e;
            --gold-gradient: linear-gradient(135deg, #e0c082 0%, #c5a059 50%, #a17f3e 100%);
            --green: #25d366;
            --green-dark: #128c7e;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'DM Sans', sans-serif;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--sans);
            color: var(--charcoal);
            background: var(--ivory);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* GRAIN OVERLAY FOR PREMIUM TEXTURE */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 9998;
            pointer-events: none;
            opacity: 0.015;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* WHATSAPP FLOAT BUTTON */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
            animation: waPulse 3s infinite;
        }
        .wa-float:hover {
            transform: scale(1.1) rotate(-5deg);
            background: var(--green-dark);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
        }
        .wa-float svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }
        @keyframes waPulse {
            0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
            50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55); }
        }

        /* TOP BAR */
        .top-bar {
            background: var(--black);
            color: var(--cream);
            text-align: center;
            padding: 10px 24px;
            font-size: 13px;
            letter-spacing: 0.8px;
            border-bottom: 1px solid rgba(246, 241, 232, 0.05);
        }
        .top-bar strong {
            color: var(--gold-light);
        }
        .top-bar a {
            color: var(--gold-light);
            font-weight: 600;
            transition: var(--transition);
        }
        .top-bar a:hover {
            color: var(--white);
        }

        /* NAVBAR WITH GLASSMORPHISM */
        .nav {
            background: rgba(255, 255, 255, 0.85);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(18, 18, 16, 0.05);
            transition: var(--transition);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-mark {
            width: 44px;
            height: 44px;
            border: 1.5px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 500;
            color: var(--gold);
            position: relative;
            background: rgba(197, 160, 89, 0.05);
        }
        .logo-text h1 {
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 600;
            color: var(--black);
            letter-spacing: -0.3px;
            line-height: 1.1;
        }
        .logo-text span {
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 600;
            display: block;
            margin-top: 1px;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-links {
            display: none;
            gap: 20px;
        }
        @media(min-width: 992px) {
            .nav-links {
                display: flex;
            }
        }
        .nav-link {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--warm-gray);
            transition: var(--transition);
            position: relative;
            padding: 4px 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--gold-dark);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-phone {
            display: none;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--charcoal);
            transition: var(--transition);
        }
        .nav-phone:hover {
            color: var(--gold);
        }
        @media(min-width: 768px) {
            .nav-phone {
                display: flex;
            }
        }
        .btn-wa-nav {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 6px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
        }
        .btn-wa-nav:hover {
            background: var(--green-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
        }
        .btn-wa-nav svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(246, 241, 232, 0.8) 0%, rgba(253, 251, 247, 1) 100%);
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 80px 0;
            border-bottom: 1px solid rgba(18, 18, 16, 0.03);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 56px;
            align-items: center;
        }
        @media(min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1.25fr 1fr;
            }
        }
        .hero-content {
            z-index: 2;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--gold-dark);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .hero-tag::before {
            content: '';
            width: 24px;
            height: 1.5px;
            background: var(--gold-dark);
        }
        .hero h2 {
            font-family: var(--serif);
            font-size: 46px;
            color: var(--black);
            font-weight: 300;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        @media(min-width: 640px) {
            .hero h2 { font-size: 58px; }
        }
        @media(min-width: 1024px) {
            .hero h2 { font-size: 68px; }
        }
        .hero h2 em {
            font-style: italic;
            color: var(--gold);
            font-weight: 400;
        }
        .hero-sub {
            font-size: 17px;
            color: var(--warm-gray);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 560px;
        }
        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        @media(min-width: 480px) {
            .hero-actions {
                flex-direction: row;
                align-items: center;
            }
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--gold-gradient);
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            padding: 16px 36px;
            border-radius: 8px;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--gold-gradient);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
            filter: brightness(1.05);
        }
        .btn-primary svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--charcoal);
            font-size: 15px;
            font-weight: 600;
            padding: 15px 32px;
            border: 1.5px solid rgba(28, 27, 24, 0.15);
            border-radius: 8px;
            transition: var(--transition);
            background: transparent;
        }
        .btn-secondary:hover {
            color: var(--black);
            border-color: var(--black);
            background: rgba(28, 27, 24, 0.03);
            transform: translateY(-1px);
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(28, 27, 24, 0.08);
        }
        .hero-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--warm-gray);
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .hero-badge svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
        }

        .hero-img-container {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-img-bg {
            position: absolute;
            width: 110%;
            height: 110%;
            background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
        .hero-img-frame {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid var(--white);
            box-shadow: 0 24px 56px rgba(18, 18, 16, 0.08);
        }
        .hero-img-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease;
        }
        .hero-img-frame:hover img {
            transform: scale(1.05);
        }

        /* SECTION COMMON STYLES */
        .section {
            padding: 90px 0;
        }
        @media(min-width: 768px) {
            .section { padding: 120px 0; }
        }
        .sec-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 16px;
            display: block;
        }
        .sec-title {
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 400;
            color: var(--black);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        @media(min-width: 640px) {
            .sec-title { font-size: 46px; }
        }
        .sec-desc {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            margin-top: 16px;
            max-width: 580px;
        }

        /* BENEFITS STRIP (BOTTOM HERO) */
        .benefits-strip {
            background: var(--black);
            color: var(--cream);
            padding: 32px 0;
            border-bottom: 1px solid rgba(246, 241, 232, 0.05);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media(min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(197, 160, 89, 0.15);
            border: 1px solid rgba(197, 160, 89, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-light);
            flex-shrink: 0;
        }
        .benefit-icon svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }
        .benefit-text h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.3px;
        }
        .benefit-text p {
            font-size: 13px;
            color: var(--muted);
            margin-top: 2px;
        }

        /* SERVICES SECTION */
        .tr-section {
            background: var(--white);
        }
        .tr-header {
            text-align: center;
            margin-bottom: 72px;
        }
        .tr-header .sec-desc {
            margin-left: auto;
            margin-right: auto;
        }
        .tr-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media(min-width: 992px) {
            .tr-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .tr-card {
            background: var(--ivory);
            border-radius: 16px;
            padding: 56px 44px;
            border: 1px solid rgba(18, 18, 16, 0.04);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .tr-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(18, 18, 16, 0.05);
            border-color: rgba(197, 160, 89, 0.25);
        }
        .tr-card-top {
            margin-bottom: 32px;
        }
        .tr-card-badge {
            display: inline-block;
            background: rgba(197, 160, 89, 0.1);
            color: var(--gold-dark);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 30px;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }
        .tr-card h3 {
            font-family: var(--serif);
            font-size: 32px;
            color: var(--black);
            margin-bottom: 16px;
            font-weight: 400;
        }
        .tr-card p {
            font-size: 15px;
            color: var(--warm-gray);
            line-height: 1.6;
        }
        .tr-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
            border-top: 1px solid rgba(18, 18, 16, 0.05);
            padding-top: 32px;
        }
        .tr-features li {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .tr-feat-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(197, 160, 89, 0.1);
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .tr-feat-icon svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }
        .tr-feat-text h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 2px;
        }
        .tr-feat-text p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 0;
            line-height: 1.5;
        }
        .tr-card-btn {
            margin-top: 40px;
            width: 100%;
        }

        /* ASSESSMENT QUIZ SECTION */
        .quiz-section {
            background: var(--cream);
            position: relative;
        }
        .quiz-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .quiz-header .sec-desc {
            margin-left: auto;
            margin-right: auto;
        }
        .quiz-card {
            max-width: 680px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 24px 60px rgba(18, 18, 16, 0.05);
            border: 1px solid rgba(18, 18, 16, 0.03);
            padding: 48px;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }
        .quiz-step {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.4s ease;
        }
        .quiz-step.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        .quiz-step-title {
            font-family: var(--serif);
            font-size: 26px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 28px;
            line-height: 1.3;
        }
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .quiz-option {
            background: var(--ivory);
            border: 1.5px solid rgba(28, 27, 24, 0.08);
            border-radius: 8px;
            padding: 18px 24px;
            text-align: left;
            font-family: var(--sans);
            font-size: 15px;
            font-weight: 600;
            color: var(--charcoal);
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .quiz-option:hover {
            border-color: var(--gold);
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(197, 160, 89, 0.08);
        }
        .quiz-option.selected {
            border-color: var(--gold);
            background: rgba(197, 160, 89, 0.08);
            color: var(--gold-dark);
        }
        .quiz-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid rgba(18, 18, 16, 0.06);
        }
        .btn-quiz-prev {
            background: transparent;
            border: none;
            color: var(--muted);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 16px;
            transition: var(--transition);
            visibility: hidden; /* only visible after first step */
        }
        .btn-quiz-prev:hover {
            color: var(--black);
        }
        .quiz-progress-container {
            flex-grow: 1;
            max-width: 180px;
            height: 6px;
            background: rgba(18, 18, 16, 0.05);
            border-radius: 3px;
            overflow: hidden;
            margin: 0 20px;
        }
        .quiz-progress-bar {
            height: 100%;
            background: var(--gold);
            width: 33%;
            transition: width 0.4s ease;
        }
        .quiz-step-indicator {
            font-size: 13px;
            font-weight: 700;
            color: var(--muted);
            letter-spacing: 0.5px;
        }

        /* QUIZ RESULT STYLES */
        .quiz-result {
            text-align: center;
            padding: 16px 0;
        }
        .quiz-result-icon {
            width: 72px;
            height: 72px;
            background: rgba(37, 211, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--green);
        }
        .quiz-result-icon svg {
            width: 36px;
            height: 36px;
            fill: currentColor;
        }
        .quiz-result h3 {
            font-family: var(--serif);
            font-size: 28px;
            color: var(--black);
            margin-bottom: 12px;
        }
        .quiz-result p {
            font-size: 15px;
            color: var(--warm-gray);
            margin-bottom: 28px;
            line-height: 1.6;
        }
        .quiz-result-recommendation {
            background: var(--ivory);
            border: 1px dashed var(--gold);
            border-radius: 8px;
            padding: 18px;
            margin-bottom: 32px;
        }
        .quiz-result-recommendation h4 {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold-dark);
            margin-bottom: 6px;
        }
        .quiz-result-recommendation p {
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0;
        }

        /* EMPATHY SECTION */
        .empathy {
            background: var(--charcoal);
            color: var(--cream);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .empathy::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .empathy-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        .empathy h2 {
            font-family: var(--serif);
            font-size: 38px;
            font-weight: 300;
            line-height: 1.25;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            color: var(--white);
        }
        @media(min-width: 640px) {
            .empathy h2 { font-size: 52px; }
        }
        .empathy h2 em {
            font-style: italic;
            color: var(--gold-light);
            font-weight: 400;
        }
        .empathy p {
            font-size: 18px;
            color: rgba(246, 241, 232, 0.75);
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .empathy .btn-wa {
            background: var(--green);
            color: var(--white);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
            border: none;
        }
        .empathy .btn-wa:hover {
            background: var(--green-dark);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
        }

        /* CREATIVES GRID SHOWCASE */
        .creatives {
            background: var(--ivory);
        }
        .creatives-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .creatives-header .sec-desc {
            margin-left: auto;
            margin-right: auto;
        }
        .creatives-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media(min-width: 640px) {
            .creatives-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media(min-width: 1024px) {
            .creatives-grid { grid-template-columns: repeat(3, 1fr); }
        }
        .creative-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(18, 18, 16, 0.02);
            border: 1px solid rgba(18, 18, 16, 0.04);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .creative-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(18, 18, 16, 0.06);
            border-color: rgba(197, 160, 89, 0.2);
        }
        .creative-media {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #e8e2d7;
        }
        .creative-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .creative-card:hover .creative-media img {
            transform: scale(1.06);
        }
        .creative-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 14, 12, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .creative-card:hover .creative-overlay {
            opacity: 1;
        }
        .creative-zoom-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
            transform: translateY(10px);
            transition: var(--transition);
        }
        .creative-card:hover .creative-zoom-icon {
            transform: translateY(0);
        }
        .creative-zoom-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }
        .creative-content {
            padding: 24px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .creative-content h4 {
            font-family: var(--serif);
            font-size: 20px;
            font-weight: 500;
            color: var(--black);
            margin-bottom: 8px;
        }
        .creative-content p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* CLINIC & STRUCTURE */
        .clinic {
            background: var(--white);
        }
        .clinic-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
            align-items: center;
        }
        @media(min-width: 768px) {
            .clinic-grid {
                grid-template-columns: 1fr 1.1fr;
            }
        }
        .clinic-media {
            position: relative;
        }
        .clinic-img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: 0 24px 50px rgba(18, 18, 16, 0.08);
            border: 4px solid var(--white);
        }
        .clinic-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .clinic-media::after {
            content: '';
            position: absolute;
            top: 20px;
            left: -20px;
            right: 20px;
            bottom: -20px;
            border: 1px solid var(--gold);
            border-radius: 16px;
            z-index: -1;
            pointer-events: none;
        }
        .clinic-list {
            list-style: none;
            margin-top: 36px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .clinic-list li {
            display: flex;
            gap: 20px;
        }
        .clinic-list-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--cream);
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(197, 160, 89, 0.15);
        }
        .clinic-list-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .clinic-list-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 4px;
        }
        .clinic-list-text p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* CLINICAL STAFF (BIO) */
        .bio {
            background: var(--cream);
        }
        .bio-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 56px;
            align-items: center;
        }
        @media(min-width: 768px) {
            .bio-grid {
                grid-template-columns: 1fr 1.6fr;
            }
        }
        .bio-img-container {
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            position: relative;
        }
        .bio-img-frame {
            aspect-ratio: 1/1;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--white);
            box-shadow: 0 20px 48px rgba(18, 18, 16, 0.06);
        }
        .bio-img-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bio-text h3 {
            font-family: var(--serif);
            font-size: 34px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 4px;
        }
        .bio-text .subtitle {
            font-size: 13px;
            font-weight: 700;
            color: var(--gold-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            display: block;
        }
        .bio-text p {
            font-size: 16px;
            color: var(--warm-gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .bio-text p strong {
            color: var(--black);
        }
        .bio-badges {
            display: flex;
            gap: 20px;
            margin-top: 28px;
            margin-bottom: 32px;
        }
        .bio-badge-item {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--white);
            color: var(--charcoal);
            padding: 8px 16px;
            border-radius: 4px;
            border: 1px solid rgba(18,18,16,0.06);
        }

        /* TESTIMONIALS */
        .test {
            background: var(--ivory);
        }
        .test-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .test-header .sec-desc {
            margin-left: auto;
            margin-right: auto;
        }
        .test-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media(min-width: 768px) {
            .test-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .test-card {
            background: var(--white);
            border-radius: 12px;
            padding: 44px 36px;
            border: 1px solid rgba(18, 18, 16, 0.03);
            box-shadow: 0 12px 32px rgba(18, 18, 16, 0.015);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .test-card::before {
            content: '\201C';
            font-family: var(--serif);
            font-size: 90px;
            color: rgba(197, 160, 89, 0.15);
            position: absolute;
            top: 15px;
            left: 24px;
            line-height: 1;
        }
        .test-card-content {
            position: relative;
            z-index: 1;
        }
        .test-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }
        .test-stars svg {
            width: 14px;
            height: 14px;
            fill: var(--gold);
        }
        .test-card blockquote {
            font-family: var(--serif);
            font-size: 18px;
            font-style: italic;
            color: var(--dark);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .test-author {
            font-size: 13px;
            font-weight: 700;
            color: var(--black);
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(18, 18, 16, 0.05);
            padding-top: 16px;
            margin-top: auto;
        }
        .test-author span {
            font-weight: 400;
            color: var(--muted);
        }

        /* FAQ (ACCORDION) */
        .faq {
            background: var(--white);
        }
        .faq-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid rgba(18, 18, 16, 0.08);
        }
        .faq-btn {
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px 0;
            font-family: var(--sans);
            font-size: 17px;
            font-weight: 600;
            color: var(--black);
            text-align: left;
            transition: var(--transition);
        }
        .faq-btn:hover {
            color: var(--gold-dark);
        }
        .faq-arrow {
            width: 18px;
            height: 18px;
            stroke: var(--muted);
            fill: none;
            flex-shrink: 0;
            transition: var(--transition);
            stroke-width: 2.5;
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .faq-content p {
            font-size: 15px;
            color: var(--warm-gray);
            line-height: 1.7;
            padding-bottom: 26px;
        }

        /* FINAL CTA SECTION */
        .final-cta {
            background: var(--black);
            color: var(--cream);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .final-cta-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }
        .final-cta h2 {
            font-family: var(--serif);
            font-size: 40px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            color: var(--white);
        }
        @media(min-width: 640px) {
            .final-cta h2 { font-size: 52px; }
        }
        .final-cta p {
            font-size: 18px;
            color: rgba(246, 241, 232, 0.6);
            line-height: 1.7;
            margin-bottom: 40px;
        }
        .final-cta .btn-wa {
            font-size: 17px;
            padding: 18px 44px;
            background: var(--green);
            color: var(--white);
            border: none;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
            transition: var(--transition);
        }
        .final-cta .btn-wa:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
        }
        .final-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(246, 241, 232, 0.08);
        }
        .final-info span {
            font-size: 13px;
            color: rgba(246, 241, 232, 0.45);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .final-info .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
        }

        /* LOCATIONS SECTION */
        .locations {
            background: var(--ivory);
        }
        .loc-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .loc-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        @media(min-width: 768px) {
            .loc-grid {
                grid-template-columns: 1.2fr 1fr;
            }
        }
        .loc-card {
            background: var(--white);
            border: 1px solid rgba(18, 18, 16, 0.04);
            border-radius: 12px;
            padding: 44px;
            box-shadow: 0 12px 36px rgba(18, 18, 16, 0.015);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .loc-card h3 {
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 16px;
        }
        .loc-card p {
            font-size: 15px;
            color: var(--warm-gray);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .loc-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--gold-dark);
            letter-spacing: 0.5px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .loc-link:hover {
            color: var(--gold);
        }
        .loc-map {
            width: 100%;
            min-height: 250px;
            background: #e8e2d7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.03);
            position: relative;
        }
        .loc-map iframe {
            border: none;
            width: 100%;
            height: 100%;
        }

        /* FOOTER */
        .footer {
            background: var(--black);
            color: rgba(246, 241, 232, 0.45);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(246, 241, 232, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        @media(min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1.2fr;
            }
        }
        .footer-brand h3 {
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 400;
            color: var(--cream);
            margin-bottom: 16px;
        }
        .footer h4 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(246, 241, 232, 0.3);
            margin-bottom: 20px;
        }
        .footer p, .footer a {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(246, 241, 232, 0.5);
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--cream);
        }
        .footer-socials {
            display: flex;
            gap: 12px;
        }
        .footer-social {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(246, 241, 232, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .footer-social:hover {
            border-color: var(--gold);
            background: rgba(197, 160, 89, 0.08);
        }
        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: rgba(246, 241, 232, 0.5);
        }
        .footer-social:hover svg {
            fill: var(--gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(246, 241, 232, 0.06);
            padding-top: 40px;
            text-align: center;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        /* LIGHTBOX/MODAL FOR CREATIVES */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(15, 14, 12, 0.95);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .lightbox.active {
            display: flex;
            opacity: 1;
        }
        .lightbox-content {
            position: relative;
            max-width: 600px;
            width: 100%;
            aspect-ratio: 1/1;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .lightbox.active .lightbox-content {
            transform: scale(1);
        }
        .lightbox-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .lightbox-close:hover {
            background: rgba(255,255,255,0.25);
            transform: rotate(90deg);
        }
        .lightbox-close svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        /* REVEAL ANIMATIONS ON SCROLL */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }
/* ADDITIONAL INSTITUTIONAL MULTI-SERVICES STYLES */
.services-section {
    background: var(--ivory);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(18, 18, 16, 0.04);
    box-shadow: 0 10px 30px rgba(18, 18, 16, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.2);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--gold-gradient);
    color: var(--white);
    transform: scale(1.05);
}
.service-card-icon svg {
    width: 28px;
    height: 28px;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--black);
    margin-bottom: 14px;
    font-weight: 500;
}
.service-card p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.service-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: var(--cream);
    color: var(--gold-dark);
    border-radius: 4px;
}

/* BLOG SECTION IN HOME */
.blog-home-section {
    background: var(--ivory);
    border-top: 1px solid rgba(18, 18, 16, 0.04);
}
.blog-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}
@media (min-width: 650px) {
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .blog-home-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 16, 0.06);
    box-shadow: 0 6px 20px rgba(18, 18, 16, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(197, 160, 89, 0.12);
}
.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    background: #111;
    overflow: hidden;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.05);
}
.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 16, 14, 0.9);
    backdrop-filter: blur(6px);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.35);
}
.blog-card-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.blog-card-meta {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-card-title {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-card-snippet {
    font-size: 13.5px;
    color: var(--warm-gray);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    transition: var(--transition);
}
.blog-card:hover .blog-card-link {
    color: var(--black);
    gap: 9px;
}

