:root {
    --c-bg: #f8faff;
    --c-bg-2: #eef2ff;
    --c-bg-3: #f8fafc;
    --c-bg-card: rgba(255,255,255,.72);
    --c-border: rgba(37,99,235,.1);
    --c-border-hover: rgba(37,99,235,.22);
    --c-text: #1e293b;
    --c-text-dim: rgba(30,41,59,.5);
    --c-text-mid: rgba(30,41,59,.7);
    --c-gold: #2563eb;
    --c-gold-light: #60a5fa;
    --c-gold-dark: #1d4ed8;
    --c-teal: #2563eb;
    --c-teal-dim: rgba(37,99,235,.08);
    --c-white: #0f172a;
    --c-real-white: #ffffff;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(.22,1,.36,1);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a, button { -webkit-tap-highlight-color: transparent; }

html {
    font-size: 16px;
    scroll-behavior: auto;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.7;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -.015em;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'ss01' 1;
    font-optical-sizing: auto;
}

::selection { background: var(--c-gold); color: #ffffff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #eef2ff; }
::-webkit-scrollbar-thumb { background: var(--c-gold-dark); border-radius: 3px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
img { max-width: 100%; display: block; }

/* ===== NOISE OVERLAY ===== */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: .15;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed; top: 0; left: 0;
    width: 20px; height: 20px;
    border: 1.5px solid var(--c-gold);
    border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, background .3s;
    transform: translate(-50%, -50%);
}
.cursor.hovering {
    width: 60px; height: 60px;
    background: rgba(37,99,235,.12);
    border-color: var(--c-gold-light);
}
.cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--c-gold);
    border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
}
@media(max-width: 768px) {
    .cursor, .cursor-dot { display: none; }
    body { cursor: auto; }
    button, a { cursor: pointer !important; }
}

/* ===== LOADER — 2026 ===== */
.ld {
    position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ld-bg {
    position: absolute; inset: 0;
    background: #031a2a;
    background-image:
        radial-gradient(ellipse 70% 55% at 50% 45%, rgba(37,99,235,.18) 0%, transparent 65%),
        radial-gradient(circle at 25% 80%, rgba(96,165,250,.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 20%, rgba(29,78,216,.06) 0%, transparent 40%);
}
.ld-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322d3ee' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

/* Corner accents */
.ld-corner {
    position: absolute; width: 60px; height: 60px;
    border-color: rgba(96,165,250,.08);
    border-style: solid; border-width: 0;
    opacity: 0;
}
.ld-tl { top: 36px; left: 36px; border-top-width: 1px; border-left-width: 1px; border-radius: 4px 0 0 0; }
.ld-tr { top: 36px; right: 36px; border-top-width: 1px; border-right-width: 1px; border-radius: 0 4px 0 0; }
.ld-bl { bottom: 36px; left: 36px; border-bottom-width: 1px; border-left-width: 1px; border-radius: 0 0 0 4px; }
.ld-br { bottom: 36px; right: 36px; border-bottom-width: 1px; border-right-width: 1px; border-radius: 0 0 4px 0; }

/* Content */
.ld-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: 0;
}

/* Logo */
.ld-logo {
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(.85);
    position: relative;
}
.ld-logo::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(96,165,250,.1) 0%, transparent 60%);
    animation: ldGlow 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ldGlow {
    0%, 100% { opacity: .4; transform: translate(-50%, -50%) scale(.9); }
    50% { opacity: .8; transform: translate(-50%, -50%) scale(1.1); }
}
.ld-logo img {
    height: clamp(80px, 14vw, 140px);
    width: auto;
    filter: drop-shadow(0 0 50px rgba(96,165,250,.25)) drop-shadow(0 0 100px rgba(37,99,235,.15));
    position: relative; z-index: 1;
}

/* Progress bar */
.ld-bar-wrap {
    width: clamp(200px, 30vw, 280px);
    height: 2px;
    background: rgba(255,255,255,.04);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
    opacity: 0;
    position: relative;
}
.ld-bar-wrap::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,.04);
}
.ld-bar {
    height: 100%; width: 0;
    background: linear-gradient(90deg, #2563eb, #2563eb, #60a5fa, #2563eb);
    background-size: 200% 100%;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(96,165,250,.5), 0 0 40px rgba(96,165,250,.2);
    animation: ldBarShimmer 2s linear infinite;
}
@keyframes ldBarShimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Subtitle */
.ld-sub {
    font-family: var(--font-display);
    font-size: clamp(.8rem, 1.5vw, .95rem);
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0);
}
.ld-location {
    font-family: var(--font-display);
    font-size: clamp(.65rem, 1.2vw, .78rem);
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0);
    margin-top: 10px;
}

@media (max-width: 600px) {
    .ld-logo img { height: 70px; }
    .ld-logo { margin-bottom: 32px; }
    .ld-bar-wrap { width: 180px; }
    .ld-sub { letter-spacing: 3px; }
    .ld-corner { width: 40px; height: 40px; }
    .ld-tl { top: 24px; left: 24px; }
    .ld-tr { top: 24px; right: 24px; }
    .ld-bl { bottom: 24px; left: 24px; }
    .ld-br { bottom: 24px; right: 24px; }
}

/* ===== HEADER — GLASS HUB ===== */
.gh-header {
    position: fixed; top: 22px; left: 0; right: 0; z-index: 9990;
    padding: 0 50px;
    display: flex; align-items: center; justify-content: space-between;
    pointer-events: none;
    transition: top .4s cubic-bezier(.22,1,.36,1), background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s, border-radius .4s, margin .4s;
}
.gh-header.is-scrolled {
    top: 0;
    margin: 12px 40px 0;
    padding: 10px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(29,78,216,.85) 50%, rgba(15,23,42,.92) 100%);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 1px solid rgba(96,165,250,.18);
    box-shadow:
        0 8px 32px rgba(37,99,235,.15),
        0 2px 8px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.06);
    pointer-events: auto;
}
/* Logo Pod */
.gh-logo-pod {
    pointer-events: auto;
    padding: 8px; border-radius: 14px;
    display: flex; align-items: center;
}
.gh-logo-pod a { display: flex; align-items: center; text-decoration: none; }
.gh-logo { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: opacity .3s; }
.gh-logo-pod:hover .gh-logo { opacity: .75; }

/* Nav Wrapper (for mega menu positioning) */
.gh-nav-wrapper { position: relative; pointer-events: auto; }

/* Center Glass Pill Nav */
.gh-nav-glass {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px;
    border-radius: 50px;
    display: flex; align-items: center; gap: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    transition: background .4s, border-color .4s;
}
.gh-header.is-scrolled .gh-nav-glass {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
    box-shadow: none;
}
.gh-header.is-scrolled .gh-icon-btn {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
}
.gh-header.is-scrolled .hdr-langs {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.08);
}

/* Nav Links */
.gh-link {
    font-family: var(--font-display);
    font-size: .78rem; font-weight: 600;
    color: rgba(255,255,255,.8);
    padding: 10px 18px; border-radius: 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex; align-items: center; gap: 5px;
    cursor: pointer; white-space: nowrap;
    text-decoration: none;
}
.gh-link:hover, .gh-link.active { color: #fff; background: rgba(255,255,255,.14); }
.gh-link i.gh-chev { font-size: 9px; opacity: .5; transition: transform .3s, opacity .3s; }
.gh-link-wrapper:hover .gh-link i.gh-chev { transform: rotate(180deg); opacity: 1; }

/* Link wrapper for mega trigger */
.gh-link-wrapper { position: relative; }

/* ===== MEGA MENU — DARK GLASS ===== */
.gh-mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%; transform: translateX(-50%) translateY(12px);
    background: rgba(10,18,38,.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    z-index: 100;
    min-width: 580px;
    overflow: hidden;
}
.gh-link-wrapper:hover .gh-mega-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.gh-mega-menu.mega-panel-wide { min-width: 780px; }

/* Mega Head */
.mega-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 4px;
}
.mega-head-title {
    font-family: var(--font-display);
    font-size: .68rem; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,.35);
}
.mega-head-link {
    font-size: .68rem; font-weight: 700; color: #60a5fa;
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
    padding: 5px 14px; border-radius: 100px;
    background: rgba(96,165,250,.1);
    transition: all .3s;
}
.mega-head-link:hover { background: #60a5fa; color: #fff; }
.mega-head-link i { font-size: .42rem; }

/* Grid */
.mega-grid { display: grid; gap: 6px; padding: 8px; }
.mega-grid-2 { grid-template-columns: 1fr 1fr; }
.mega-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Link cards */
.mega-link {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    transition: all .25s; text-decoration: none;
}
.mega-link:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.1);
    transform: translateY(-2px);
}
.mega-link-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(96,165,250,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: #60a5fa;
    flex-shrink: 0; transition: all .3s;
}
.mega-link:hover .mega-link-icon { background: #60a5fa; color: #fff; }
.mega-link-text h4 {
    font-family: var(--font-display);
    font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.88);
    margin: 0 0 3px; transition: color .25s;
}
.mega-link:hover .mega-link-text h4 { color: #60a5fa; }
.mega-link-text p { font-size: .64rem; color: rgba(255,255,255,.38); margin: 0; line-height: 1.5; }
.mega-link-badge {
    display: inline-block; padding: 2px 7px; border-radius: 5px;
    background: #60a5fa; color: #fff;
    font-size: .46rem; font-weight: 800; letter-spacing: .8px;
    text-transform: uppercase; margin-left: 6px; vertical-align: middle;
}

/* WhatsApp Featured */
.mega-featured {
    margin: 4px 8px 8px;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    background: rgba(37,211,102,.08);
    border: 1px solid rgba(37,211,102,.15);
    transition: all .3s;
    position: relative; overflow: hidden;
}
.mega-featured::before {
    content: '';
    position: absolute; top: -50%; right: -30%;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(37,211,102,.12), transparent 70%);
    transition: transform .6s;
}
.mega-featured:hover::before { transform: scale(1.5); }
.mega-featured:hover { background: rgba(37,211,102,.14); transform: translateY(-1px); }
.mega-featured-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem; flex-shrink: 0;
    position: relative; z-index: 1;
}
.mega-featured h4 {
    font-family: var(--font-display);
    font-size: .76rem; font-weight: 700; color: #fff;
    margin: 0 0 2px; position: relative; z-index: 1;
}
.mega-featured p { font-size: .64rem; color: rgba(255,255,255,.45); margin: 0; position: relative; z-index: 1; }

/* Right Actions Pod */
.gh-actions {
    pointer-events: auto;
    display: flex; align-items: center; gap: 8px;
}

/* Language Switcher */
.hdr-langs {
    display: flex; gap: 1px;
    background: rgba(255,255,255,.08);
    padding: 3px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
}
.hdr-lang {
    padding: 5px 10px; border: none; border-radius: 7px;
    background: transparent; color: rgba(255,255,255,.4);
    font-size: .62rem; font-weight: 800; letter-spacing: .5px;
    cursor: pointer; transition: all .3s;
}
.hdr-lang.active { background: rgba(255,255,255,.15); color: #fff; }
.hdr-lang:hover { color: rgba(255,255,255,.8); }

/* Icon Buttons (phone/whatsapp) */
.gh-icon-btn {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.13);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: .85rem;
    text-decoration: none;
    transition: all .3s;
}
.gh-icon-btn:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.gh-icon-btn.wa:hover { background: #25d366; border-color: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }

/* CTA Button */
.gh-cta {
    background: linear-gradient(135deg, #2563eb, #60a5fa); color: #fff;
    height: 44px; padding: 0 22px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700; font-size: .76rem; letter-spacing: -.01em;
    box-shadow: 0 8px 24px rgba(37,99,235,.28);
    transition: all .3s;
}
.gh-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,99,235,.42); background: linear-gradient(135deg, #1d4ed8, #2563eb); }
.gh-cta i { font-size: .55rem; transition: transform .3s; }
.gh-cta:hover i { transform: translateX(3px); }

.gh-cta-outline {
    background: transparent;
    border: 1px solid rgba(96,165,250,.25);
    color: #93c5fd;
    box-shadow: none;
}
.gh-cta-outline i { font-size: .7rem; transform: none; }
.gh-cta-outline:hover {
    background: rgba(37,99,235,.12);
    border-color: rgba(96,165,250,.4);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,.15);
    transform: translateY(-3px);
}
.gh-cta-outline:hover i { transform: none; }

/* Hamburger */
.nav-hamburger {
    display: none; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    width: 44px; height: 44px; border-radius: 12px; position: relative;
    align-items: center; justify-content: center;
    cursor: pointer; z-index: 10001;
    transition: background .3s;
}
.nav-hamburger:hover { background: rgba(255,255,255,.18); }
.nav-hamburger span {
    display: block; width: 18px; height: 1.5px;
    background: rgba(255,255,255,.85); border-radius: 2px;
    transition: all .5s cubic-bezier(.77,0,.18,1);
    transform-origin: center;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 20px; width: 12px; }
.nav-hamburger span:nth-child(3) { top: 26px; }
.nav-hamburger.open span { background: #fff; }
.nav-hamburger.open span:nth-child(1) { top: 20px; width: 18px; transform: translateX(-50%) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.nav-hamburger.open span:nth-child(3) { top: 20px; width: 18px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 1100px) {
    .gh-nav-wrapper, .hdr-langs { display: none; }
    .nav-hamburger { display: flex; }
    .gh-header { padding: 0 20px; top: 14px; }
    .gh-header.is-scrolled { margin: 10px 16px 0; padding: 8px 16px; }
}
@media (max-width: 768px) {
    .gh-cta-outline { display: none; }
}
@media (max-width: 600px) {
    .gh-header { top: 10px; padding: 0 14px; }
    .gh-header.is-scrolled { margin: 8px 10px 0; padding: 8px 12px; border-radius: 16px; }
    .gh-cta span { display: none; }
    .gh-cta:not(.gh-cta-outline) { padding: 0 16px; min-width: 44px; justify-content: center; }
    .gh-logo { height: 48px; }
}
@media (max-width: 380px) {
    .gh-icon-btn:not(.wa) { display: none; }
}

/* ===== MOBILE MENU — PREMIUM ===== */
.mobile-menu {
    position: fixed; inset: 0; z-index: 9999;
    visibility: hidden; pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: all; }

.mm-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    opacity: 0;
    transition: opacity .6s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open .mm-bg { opacity: 1; }

.mm-deco {
    position: absolute; inset: 0; overflow: hidden; opacity: 0;
    transition: opacity .8s .2s;
}
.mobile-menu.open .mm-deco { opacity: 1; }
.mm-deco::before {
    content: 'DENTALINE';
    position: absolute; right: -40px; bottom: 60px;
    font-family: var(--font-display); font-size: clamp(6rem, 14vw, 10rem);
    font-weight: 900; letter-spacing: -4px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(37,99,235,.08);
    transform: rotate(-90deg); transform-origin: right bottom;
    pointer-events: none;
}
.mm-deco::after {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
    pointer-events: none;
}

.mm-inner {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column;
    padding: 40px 32px 32px;
    overflow-y: auto;
}

/* Top bar — logo + close */
.mm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    opacity: 0; transform: translateY(-20px);
    transition: all .5s .15s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open .mm-top { opacity: 1; transform: translateY(0); }

.mm-logo img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(96,165,250,.2));
    transition: opacity .3s;
}
.mm-logo:hover img { opacity: .7; }

/* Close button */
.mm-close {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .35s var(--ease);
}
.mm-close:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(96,165,250,.2);
    transform: rotate(90deg) scale(1.05);
}
.mm-close span {
    position: absolute;
    width: 20px; height: 2px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    transition: background .3s;
}
.mm-close span:first-child { transform: rotate(45deg); }
.mm-close span:last-child { transform: rotate(-45deg); }
.mm-close:hover span { background: #60a5fa; }

.mm-nav {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; gap: 4px;
}
.mm-link {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 0;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-40px);
    transition: all .5s cubic-bezier(.77,0,.18,1);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-menu.open .mm-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: .15s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: .2s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: .25s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: .3s; }
.mobile-menu.open .mm-link:nth-child(5) { transition-delay: .35s; }
.mobile-menu.open .mm-link:nth-child(6) { transition-delay: .4s; }
.mobile-menu.open .mm-link:nth-child(7) { transition-delay: .45s; }
.mobile-menu.open .mm-link:nth-child(8) { transition-delay: .5s; }
.mobile-menu.open .mm-link:nth-child(9) { transition-delay: .55s; }
.mobile-menu.open .mm-link:nth-child(10) { transition-delay: .6s; }
.mobile-menu.open .mm-link:nth-child(11) { transition-delay: .65s; }
.mobile-menu.open .mm-link:nth-child(12) { transition-delay: .7s; }
.mm-link-num {
    font-size: .55rem; font-weight: 700; color: rgba(37,99,235,.5);
    letter-spacing: 1px; min-width: 22px;
    font-variant-numeric: tabular-nums;
}
.mm-link-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 600; color: rgba(255,255,255,.7);
    letter-spacing: -1.5px;
    transition: all .35s;
}
.mm-link:hover .mm-link-text,
.mm-link:active .mm-link-text { color: #60a5fa; }
.mm-link-arrow {
    margin-left: auto; font-size: .7rem;
    color: rgba(255,255,255,0);
    transform: translateX(-8px);
    transition: all .35s;
}
.mm-link:hover .mm-link-arrow { color: #60a5fa; transform: translateX(0); }

.mm-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
    opacity: 0; transform: translateY(20px);
    transition: all .6s .5s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open .mm-bottom { opacity: 1; transform: translateY(0); }

.mm-contact {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.mm-contact-btn {
    flex: 1; min-width: 130px;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    text-decoration: none; color: #fff;
    transition: all .35s var(--ease);
}
.mm-contact-btn:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(37,99,235,.2);
}
.mm-contact-btn i {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
}
.mm-contact-btn.wa i { background: rgba(37,211,102,.12); color: #25d366; }
.mm-contact-btn.ph i { background: rgba(37,99,235,.1); color: #60a5fa; }
.mm-contact-btn span { font-size: .72rem; font-weight: 700; letter-spacing: .3px; }
.mm-contact-btn small {
    display: block; font-size: .6rem; font-weight: 500;
    color: rgba(255,255,255,.35); margin-top: 1px;
}

.mm-foot {
    display: flex; align-items: center; justify-content: space-between;
}
.mm-langs { display: flex; gap: 6px; }
.mm-lang {
    padding: 8px 16px; border-radius: 100px;
    font-size: .65rem; font-weight: 800;
    letter-spacing: 1.5px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.35);
    cursor: pointer; transition: all .3s;
}
.mm-lang:hover, .mm-lang.active {
    background: var(--c-gold); color: #fff;
    border-color: var(--c-gold);
}
.mm-brand {
    font-family: var(--font-display);
    font-size: .7rem; font-weight: 800;
    color: rgba(255,255,255,.15); letter-spacing: 3px;
}
.mm-brand em { color: rgba(37,99,235,.25); font-style: normal; }

/* nav responsive handled inline above */

/* ===== CONTAINER ===== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
@media(max-width: 480px) { .container { padding: 0 20px; } }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 0;
}
.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.hero-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.45) saturate(.8);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(29,78,216,.4) 0%, rgba(37,99,235,.15) 40%, rgba(29,78,216,.5) 80%, var(--c-bg) 100%),
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(96,165,250,.1) 0%, transparent 70%);
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    width: 100%;
    padding: 160px 0 120px;
}
.hero-content {
    width: 100%;
}
/* Hero Location Badge */
.hero-location-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 18px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(96,165,250,.1));
    border: 1px solid rgba(96,165,250,.3);
    backdrop-filter: blur(20px);
    font-size: .7rem; font-weight: 700;
    color: #60a5fa;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 16px;
    animation: locationPulse 3s ease-in-out infinite;
}
.hero-loc-flag {
    font-size: 1.1rem;
    line-height: 1;
}
@keyframes locationPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,.2); }
    50% { box-shadow: 0 0 0 8px rgba(96,165,250,0); }
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    font-size: .75rem; font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-tag .dot {
    width: 6px; height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    font-weight: 700; line-height: .9;
    letter-spacing: -5px;
    margin-bottom: 32px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
}
.hero-title .outline {
    -webkit-text-stroke: 1.5px rgba(255,255,255,.6);
    color: transparent;
}
.hero-title .line-inner {
    color: #ffffff;
}
.hero-title .gold {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,.75);
    max-width: 520px; line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0; transform: translateY(20px);
}
.hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
}
.btn-mag {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 36px; border-radius: 100px;
    font-size: .9rem; font-weight: 700;
    letter-spacing: .5px;
    transition: all .4s var(--ease);
    border: none; position: relative;
}
.btn-gold {
    background: var(--c-gold);
    color: #ffffff;
}
.btn-gold:hover { box-shadow: 0 0 40px rgba(37,99,235,.35); transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text-mid);
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-ghost.btn-google { border-color: #4285f4; color: #4285f4; }
.btn-ghost.btn-google:hover { border-color: #3367d6; color: #3367d6; }
.btn-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .85rem;
    transition: all .3s;
}
.btn-gold .btn-icon { background: rgba(0,0,0,.1); }
.btn-ghost .btn-icon { background: rgba(29,78,216,.08); }

.hero-stats {
    display: flex; gap: 48px; margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.15);
    opacity: 0; transform: translateY(20px);
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.hero-stat p {
    font-size: .78rem; color: rgba(255,255,255,.55);
    margin-top: 6px; letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero area overrides for light theme (video BG needs white text) */
.hero .hero-tag { color: rgba(255,255,255,.85); }
.hero .btn-ghost {
    border-color: rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
}
.hero .btn-ghost:hover { border-color: #60a5fa; color: #60a5fa; }
.hero .btn-ghost .btn-icon { background: rgba(255,255,255,.1); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0;
}
.hero-scroll span {
    font-size: .65rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.hero-scroll-line {
    width: 1px; height: 50px; position: relative; overflow: hidden;
    background: rgba(255,255,255,.1);
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 50%;
    background: var(--c-gold);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Why Dentaline Card */
.hero-why {
    opacity: 0; transform: translateY(30px);
}
.hero-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative; overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #60a5fa, #2563eb, #2563eb);
}
.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 800;
    color: #fff; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.hero-card-title i { color: #60a5fa; font-size: .9rem; }
.hero-why-stat {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: all .35s var(--ease);
    opacity: 0; transform: translateX(-20px);
}
.hero-why-stat:last-of-type { border-bottom: none; }
.hero-why-stat:hover { transform: translateX(6px); }
.hero-why-stat-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0;
    transition: all .35s var(--ease);
}
.hero-why-stat:nth-child(1) .hero-why-stat-icon { background: rgba(96,165,250,.15); color: #60a5fa; }
.hero-why-stat:nth-child(2) .hero-why-stat-icon { background: rgba(96,165,250,.12); color: #60a5fa; }
.hero-why-stat:nth-child(3) .hero-why-stat-icon { background: rgba(168,85,247,.12); color: #a855f7; }
.hero-why-stat:nth-child(4) .hero-why-stat-icon { background: rgba(34,197,94,.12); color: #22c55e; }
.hero-why-stat:nth-child(5) .hero-why-stat-icon { background: rgba(244,63,94,.12); color: #f43f5e; }
.hero-why-stat:nth-child(6) .hero-why-stat-icon { background: rgba(37,99,235,.12); color: #2563eb; }
.hero-why-stat:hover .hero-why-stat-icon { transform: scale(1.1); }
.hero-why-stat-text h4 { color: #fff; font-size: .82rem; font-weight: 700; }
.hero-why-stat-text p { color: rgba(255,255,255,.45); font-size: .68rem; margin-top: 2px; }
.hero-card-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 13px 0; margin-top: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-weight: 700; font-size: .82rem;
    border: none; cursor: pointer;
    transition: all .35s var(--ease);
    text-decoration: none;
}
.hero-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,.35);
}

/* ===== CYPRUS LOCATION STRIP ===== */
.cyprus-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #0f172a 100%);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(96,165,250,.08);
    border-bottom: 1px solid rgba(96,165,250,.08);
    position: relative;
}
.cyprus-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,.08) 0%, transparent 70%);
    pointer-events: none;
}
.cyprus-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0;
    padding: 14px 32px;
    max-width: 1400px; margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none; scrollbar-width: none;
    position: relative; z-index: 1;
}
.cyprus-strip-inner::-webkit-scrollbar { display: none; }
.cyprus-strip-item {
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
    font-size: .72rem; font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .3px;
    padding: 6px 16px;
    transition: all .3s;
}
.cyprus-strip-item:hover { color: #60a5fa; }
.cyprus-strip-item i {
    color: #60a5fa;
    font-size: .6rem;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(96,165,250,.1);
    border-radius: 6px;
    flex-shrink: 0;
}
.cyprus-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.cyprus-strip-sep {
    color: rgba(96,165,250,.25);
    font-size: .5rem;
    padding: 0 4px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .cyprus-strip-inner {
        justify-content: flex-start;
        padding: 12px 16px;
        gap: 0;
    }
    .cyprus-strip-item { font-size: .65rem; padding: 5px 10px; }
    .cyprus-strip-sep { padding: 0 2px; }
}
@media (max-width: 480px) {
    .cyprus-strip-item { font-size: .6rem; padding: 4px 8px; gap: 6px; }
    .cyprus-strip-item i { width: 18px; height: 18px; font-size: .5rem; }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 0; overflow: hidden;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 50%, var(--c-bg) 100%);
    position: relative;
}
.marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 200px;
    z-index: 3; pointer-events: none;
}
.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--c-bg) 0%, transparent 100%);
}
.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--c-bg) 0%, transparent 100%);
}
.marquee-row {
    display: flex; overflow: hidden;
    border-top: 1px solid var(--c-border);
}
.marquee-row:last-child { border-bottom: 1px solid var(--c-border); }
.marquee-track {
    display: flex; white-space: nowrap;
    animation: mqScroll 60s linear infinite;
}
.marquee-row.reverse .marquee-track {
    animation: mqScrollReverse 70s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 0; flex-shrink: 0; margin-right: 12px;
}
.marquee-item .mq-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--c-text);
    opacity: .12;
    transition: all .4s var(--ease);
    white-space: nowrap;
}
.marquee-item .mq-text.stroke {
    -webkit-text-stroke: 1.5px var(--c-text);
    color: transparent;
    opacity: .08;
}
.marquee-item:hover .mq-text {
    opacity: 1;
    color: var(--c-gold);
}
.marquee-item:hover .mq-text.stroke {
    -webkit-text-stroke-color: var(--c-gold);
    opacity: .6;
}
.marquee-item .mq-dot {
    width: 8px; height: 8px;
    background: var(--c-gold);
    border-radius: 50%;
    opacity: .3;
    flex-shrink: 0;
    transition: all .4s var(--ease);
}
.marquee-item:hover .mq-dot {
    opacity: 1;
    box-shadow: 0 0 12px var(--c-gold);
    transform: scale(1.4);
}
.marquee-item .mq-emoji {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    opacity: .25;
    transition: all .4s var(--ease);
    filter: grayscale(1);
}
.marquee-item:hover .mq-emoji {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.3);
}
.marquee-item .mq-icon {
    font-size: 1rem;
    color: var(--c-gold);
    opacity: .15;
    flex-shrink: 0;
    transition: all .4s var(--ease);
}
.marquee-item:hover .mq-icon {
    opacity: .8;
    transform: scale(1.2);
}
@keyframes mqScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes mqScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== SECTION COMMONS ===== */
section { padding: 72px 0; position: relative; }
@media(max-width: 768px) { section { padding: 48px 0; } }

.section-label {
    font-family: var(--font-body);
    font-size: .65rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}
.section-label::before {
    content: ''; width: 30px; height: 1px;
    background: var(--c-gold);
}
h1.section-heading,
h2.section-heading,
h3.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
div.section-heading {
    text-align: center;
    margin-bottom: 36px;
}
div.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 0;
}
.section-heading .gold,
.section-heading em,
div.section-heading h2 .gold,
div.section-heading h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 1rem; color: var(--c-text-dim);
    max-width: 560px; line-height: 1.85;
}
.section-header { margin-bottom: 40px; }

/* ===== HOME CTA SECTION — PREMIUM ===== */
.sec-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.sec-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.sec-cta-glow-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,.25), transparent 70%);
    top: -100px; right: -80px;
}
.sec-cta-glow-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(34,211,238,.15), transparent 70%);
    bottom: -80px; left: -60px;
}
.sec-cta .container { position: relative; z-index: 1; }
.sec-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 0;
}
.sec-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.2);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 24px;
}
.sec-cta-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22d3ee;
    animation: ctaPulse 2s ease infinite;
}
@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}
.sec-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 16px;
}
.sec-cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 36px;
    line-height: 1.7;
}
.sec-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.sec-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.sec-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .35s;
}
.sec-cta-btn:hover::before { opacity: 1; }
.sec-cta-btn:hover { transform: translateY(-3px); }
.sec-cta-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 24px rgba(37,99,235,.3);
}
.sec-cta-btn-primary::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.sec-cta-btn-primary:hover {
    box-shadow: 0 12px 40px rgba(37,99,235,.45);
}
.sec-cta-btn-wa {
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.25);
    color: #25d366;
}
.sec-cta-btn-wa:hover {
    background: rgba(37,211,102,.18);
    box-shadow: 0 8px 32px rgba(37,211,102,.2);
}
.sec-cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.sec-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: .3px;
}
.sec-cta-trust-item i {
    color: rgba(96,165,250,.5);
    font-size: .7rem;
}

@media (max-width: 768px) {
    .sec-cta-inner { padding: 56px 0; }
    .sec-cta-trust { gap: 20px; }
    .sec-cta-trust-item { font-size: .66rem; }
    .sec-cta-btn { padding: 15px 28px; font-size: .85rem; }
    .sec-cta-glow-1 { width: 250px; height: 250px; }
    .sec-cta-glow-2 { width: 180px; height: 180px; }
}

/* ===== FEATURES — WHY DENTALINE ===== */
.feat-section {
    background: var(--c-bg);
    overflow: hidden;
}
.feat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left: Visual */
.feat-visual { position: sticky; top: 120px; }
.feat-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(29,78,216,.1);
}
.feat-img-wrap img {
    width: 100%; height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 6s cubic-bezier(.22,1,.36,1);
}
.feat-img-wrap:hover img { transform: scale(1.05); }
.feat-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(29,78,216,.6) 100%);
    pointer-events: none;
}
.feat-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 100px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff; font-size: .72rem; font-weight: 600;
    letter-spacing: .3px;
    border: 1px solid rgba(255,255,255,.15);
}
.feat-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease infinite;
}
.feat-counters {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 2px;
}
.feat-counter {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    padding: 20px 12px;
    text-align: center;
    transition: all .4s var(--ease);
}
.feat-counter:first-child { border-radius: 0 0 0 20px; }
.feat-counter:last-child { border-radius: 0 0 20px 0; }
.feat-counter:hover {
    background: rgba(37,99,235,.05);
    transform: translateY(-2px);
}
.feat-counter strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800;
    color: var(--c-gold);
    letter-spacing: -1px;
    line-height: 1.1;
}
.feat-counter strong span { font-size: .7em; color: var(--c-gold-light); }
.feat-counter > span {
    font-size: .62rem; font-weight: 600;
    color: var(--c-text-dim);
    letter-spacing: .5px; text-transform: uppercase;
    margin-top: 4px; display: block;
}

/* Right: Content */
.feat-header { margin-bottom: 36px; }
.feat-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -2px;
    color: var(--c-text);
    line-height: 1.15;
    margin-top: 14px;
}
.feat-title em {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feat-desc {
    font-size: .92rem; color: var(--c-text-mid);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 480px;
}

/* Feature Cards */
.feat-cards { display: flex; flex-direction: column; gap: 8px; }
.feat-card {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--c-border);
    transition: all .4s var(--ease);
    cursor: default;
    position: relative;
}
.feat-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,.04), transparent);
    opacity: 0; transition: opacity .4s;
}
.feat-card:hover {
    border-color: rgba(37,99,235,.18);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(29,78,216,.06);
}
.feat-card:hover::before { opacity: 1; }
.feat-card-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: rgba(37,99,235,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--c-gold);
    flex-shrink: 0;
    transition: all .4s var(--ease);
}
.feat-card-icon.icon-blue { background: rgba(96,165,250,.08); color: #60a5fa; }
.feat-card-icon.icon-purple { background: rgba(168,85,247,.08); color: #a855f7; }
.feat-card-icon.icon-green { background: rgba(34,197,94,.08); color: #22c55e; }
.feat-card-icon.icon-rose { background: rgba(244,63,94,.08); color: #f43f5e; }
.feat-card:hover .feat-card-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 4px 16px rgba(37,99,235,.12);
}
.feat-card:hover .feat-card-icon.icon-blue { background: #60a5fa; color: #fff; box-shadow: 0 4px 16px rgba(96,165,250,.25); }
.feat-card:hover .feat-card-icon.icon-purple { background: #a855f7; color: #fff; box-shadow: 0 4px 16px rgba(168,85,247,.25); }
.feat-card:hover .feat-card-icon.icon-green { background: #22c55e; color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,.25); }
.feat-card:hover .feat-card-icon.icon-rose { background: #f43f5e; color: #fff; box-shadow: 0 4px 16px rgba(244,63,94,.25); }
.feat-card:hover .feat-card-icon:not([class*="icon-"]) { background: var(--c-gold); color: #fff; }
.feat-card-body { flex: 1; min-width: 0; }
.feat-card-body h4 {
    font-family: var(--font-display);
    font-size: .88rem; font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3px;
}
.feat-card-body p {
    font-size: .76rem; color: var(--c-text-dim);
    line-height: 1.55;
}
.feat-card-arrow {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(29,78,216,.04);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem; color: var(--c-text-dim);
    flex-shrink: 0;
    transition: all .4s var(--ease);
    opacity: 0; transform: translateX(-8px);
}
.feat-card:hover .feat-card-arrow {
    opacity: 1; transform: translateX(0);
    background: rgba(37,99,235,.08); color: var(--c-gold);
}

/* CTA */
.feat-cta { margin-top: 28px; }
.feat-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-family: var(--font-display);
    font-size: .86rem; font-weight: 700;
    text-decoration: none;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(37,211,102,.25);
    position: relative; overflow: hidden;
}
.feat-cta-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transform: translateX(-100%); transition: transform .6s;
}
.feat-cta-btn:hover::before { transform: translateX(100%); }
.feat-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37,211,102,.3);
}
.feat-cta-btn i { font-size: 1.1rem; }

/* Responsive */
@media (max-width: 1024px) {
    .feat-layout { gap: 40px; }
    .feat-img-wrap img { height: 380px; }
}
@media (max-width: 768px) {
    .feat-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .feat-visual { position: static; }
    .feat-img-wrap img { height: 280px; }
    .feat-counters { grid-template-columns: repeat(4, 1fr); gap: 1px; }
    .feat-counter { padding: 16px 8px; }
    .feat-counter strong { font-size: 1.3rem; }
    .feat-counter > span { font-size: .55rem; }
    .feat-card { padding: 14px 16px; gap: 14px; }
    .feat-card-icon { width: 40px; height: 40px; font-size: .88rem; border-radius: 12px; }
    .feat-card-body h4 { font-size: .82rem; }
    .feat-card-body p { font-size: .72rem; }
    .feat-card-arrow { display: none; }
}
@media (max-width: 480px) {
    .feat-counters { grid-template-columns: repeat(2, 1fr); }
    .feat-counter:first-child { border-radius: 0; }
    .feat-counter:last-child { border-radius: 0 0 20px 0; }
    .feat-counter:nth-child(3) { border-radius: 0 0 0 20px; }
    .feat-img-wrap img { height: 220px; }
    .feat-title { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -1px; }
}

/* ===== SERVICES — 2026 ===== */
#services {
    background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}
#services::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(37,99,235,.06), transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(29,78,216,.04), transparent 50%);
    pointer-events: none;
}

/* Glow Orbs */
.srv2-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.srv2-glow-1 {
    width: 500px; height: 500px;
    background: rgba(37,99,235,.07);
    top: -100px; left: -100px;
    animation: srv2Float 12s ease-in-out infinite;
}
.srv2-glow-2 {
    width: 400px; height: 400px;
    background: rgba(29,78,216,.05);
    bottom: -80px; right: -80px;
    animation: srv2Float 15s ease-in-out infinite reverse;
}
@keyframes srv2Float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

/* Intro text */
.srv2-intro {
    font-size: .88rem;
    color: var(--c-text-dim);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 480px;
    letter-spacing: -.01em;
}


/* Card Icon */
.srv2-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: var(--c-gold);
    transition: all .4s var(--ease);
}
.srv2-card:hover .srv2-card-icon {
    background: rgba(37,99,235,.14);
    border-color: var(--c-gold);
    transform: scale(1.05);
    color: var(--c-gold-dark);
}

/* Card Tag */
.srv2-card-tag {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-gold);
    margin-bottom: 10px;
}

/* Card Features */
.srv2-card-features {
    display: flex; gap: 14px;
    margin-top: 14px; margin-bottom: 4px;
}
.srv2-card-features span {
    display: flex; align-items: center; gap: 5px;
    font-size: .65rem;
    color: var(--c-text-dim);
}
.srv2-card-features i {
    color: var(--c-gold);
    font-size: .5rem;
}
.srv2-card-features em {
    font-style: normal;
}

/* Bottom inner */
.srv2-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; width: 100%;
}

/* Header */
.srv2-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 36px;
    position: relative; z-index: 1;
}
.srv2-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -2px;
    color: var(--c-text);
    line-height: 1.1; margin-top: 14px;
}
.srv2-title em { font-family: var(--font-serif); font-style: italic; background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#services .section-label { color: var(--c-text-dim); }
#services .section-label::before { background: var(--c-gold); }
.srv2-header-right {
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    flex-shrink: 0;
}
.srv2-header-right p { font-size: .72rem; color: var(--c-text-dim); }
.srv2-header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: #fff; font-size: .78rem; font-weight: 700;
    text-decoration: none; transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(37,99,235,.2);
}
.srv2-header-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,99,235,.3); }

/* Tabs */
.srv2-tabs {
    display: flex; gap: 4px;
    margin-bottom: 40px;
    overflow-x: auto;
    -ms-overflow-style: none; scrollbar-width: none;
    padding: 4px;
    background: rgba(255,255,255,.6);
    border-radius: 16px;
    border: 1px solid var(--c-border);
    position: relative; z-index: 1;
    backdrop-filter: blur(12px);
}
.srv2-tabs::-webkit-scrollbar { display: none; }
.srv2-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--c-text-dim);
    font-family: var(--font-display);
    font-size: .78rem; font-weight: 600;
    cursor: pointer; transition: all .35s var(--ease);
    white-space: nowrap; flex-shrink: 0;
}
.srv2-tab:hover {
    color: var(--c-text);
    background: rgba(37,99,235,.05);
}
.srv2-tab.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,99,235,.2);
}
.srv2-tab-icon { font-size: 1.05rem; line-height: 1; }
.srv2-tab-text { letter-spacing: -.01em; }

/* Panels */
.srv2-panel { display: none; position: relative; z-index: 1; }
.srv2-panel.active { display: block; animation: srvFadeIn .5s cubic-bezier(.22,1,.36,1); }
@keyframes srvFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Grid */
.srv2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

/* Cards */
.srv2-card {
    background: rgba(255,255,255,.7);
    border: 1px solid var(--c-border);
    border-radius: 22px;
    overflow: hidden;
    transition: all .5s var(--ease);
    position: relative;
    backdrop-filter: blur(12px);
}
.srv2-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(37,99,235,.05), transparent 50%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}
.srv2-card:hover::before { opacity: 1; }
.srv2-card:hover {
    border-color: rgba(37,99,235,.2);
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(37,99,235,.1),
        0 0 0 1px rgba(37,99,235,.06);
}

/* Featured Card */
.srv2-card.srv2-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-color: rgba(37,99,235,.15);
    background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(255,255,255,.8));
}
.srv2-card.srv2-featured.no-visual {
    grid-template-columns: 1fr;
}
.srv2-card-badge {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    display: flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 100px;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: #fff; font-size: .6rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(37,99,235,.25);
}
.srv2-card-badge i { font-size: .5rem; }
.srv2-card-visual {
    position: relative; overflow: hidden;
    min-height: 260px;
}
.srv2-card-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.85) saturate(.95);
    transition: all 6s cubic-bezier(.22,1,.36,1);
}
.srv2-card:hover .srv2-card-visual img { transform: scale(1.08); filter: brightness(.9) saturate(1); }
.srv2-card-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,.25), transparent 60%);
}

/* Card Body */
.srv2-card-body {
    padding: 32px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.srv2-card:not(.srv2-featured) .srv2-card-body { padding: 26px; }

.srv2-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: var(--c-text);
    margin-bottom: 6px;
    letter-spacing: -.3px;
}
.srv2-featured .srv2-card-body h3 { font-size: 1.4rem; letter-spacing: -.5px; }
.srv2-card-sub {
    font-size: .76rem; color: var(--c-text-dim);
    line-height: 1.6; margin-bottom: 18px;
}

/* Hide prices in Turkish */
html[data-lang="tr"] .srv2-card-price,
html[data-lang="tr"] .srv2-header-right p { display: none; }

.srv2-card-price {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 800;
    color: var(--c-gold);
    letter-spacing: -1.5px;
    line-height: 1;
}
.srv2-featured .srv2-card-price { font-size: 2.8rem; }
.srv2-card-price span {
    font-size: .45em; font-weight: 600;
    color: var(--c-text-dim);
    margin-left: 2px;
}

.srv2-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 20px; padding: 11px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: #fff; font-size: .76rem; font-weight: 700;
    text-decoration: none;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(37,99,235,.2);
    width: fit-content;
}
.srv2-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,99,235,.3);
}

/* Bottom CTA */
.srv2-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; margin-top: 48px;
    padding: 22px 32px;
    border-radius: 18px;
    background: rgba(255,255,255,.65);
    border: 1px solid var(--c-border);
    position: relative; z-index: 1;
    backdrop-filter: blur(12px);
}
.srv2-bottom-text {
    display: flex; align-items: center; gap: 12px;
    font-size: .8rem; font-weight: 600;
    color: var(--c-text-mid);
}
.srv2-bottom-text i { color: var(--c-gold); font-size: 1.1rem; }
.srv2-bottom-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: #fff; font-size: .78rem; font-weight: 700;
    text-decoration: none;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(37,99,235,.2);
    white-space: nowrap; flex-shrink: 0;
}
.srv2-bottom-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,99,235,.3); }

/* Responsive */
@media (max-width: 768px) {
    .srv2-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .srv2-header-right { align-items: flex-start; }
    .srv2-tabs { gap: 4px; border-radius: 12px; }
    .srv2-tab { padding: 10px 16px; font-size: .72rem; }
    .srv2-grid { grid-template-columns: 1fr; }
    .srv2-card.srv2-featured { grid-template-columns: 1fr; }
    .srv2-card-visual { min-height: 200px; }
    .srv2-bottom { flex-direction: column; text-align: center; }
    .srv2-bottom-inner { flex-direction: column; text-align: center; }
    .srv2-bottom-text { justify-content: center; }
    .srv2-glow-1, .srv2-glow-2 { display: none; }
}
@media (max-width: 480px) {
    .srv2-card-body { padding: 22px; }
    .srv2-featured .srv2-card-body h3 { font-size: 1.15rem; }
    .srv2-featured .srv2-card-price { font-size: 2.2rem; }
    .srv2-card-price { font-size: 1.8rem; }
    .srv2-card-icon { width: 42px; height: 42px; font-size: 1rem; border-radius: 12px; }
}

/* ===== LAB ===== */
#lab {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}
.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 16px;
}
.lab-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    transition: all .5s var(--ease);
    position: relative; overflow: hidden;
}
.lab-card::after {
    content: ''; position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,.06), transparent);
    border-radius: 50%;
    transition: all .6s;
}
.lab-card:hover {
    border-color: rgba(37,99,235,.2);
    transform: translateY(-6px);
}
.lab-card:hover::after {
    top: -30%; right: -30%;
}
.lab-card-img {
    width: 100%; height: 200px;
    object-fit: cover;
}
.lab-card-inner { position: relative; z-index: 2; padding: 28px 36px; }
.lab-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.lab-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--c-white);
    margin-bottom: 8px;
}
.lab-card p {
    font-size: .85rem; color: var(--c-text-dim);
    line-height: 1.7;
}
.lab-tag {
    display: inline-block; margin-top: 14px;
    background: rgba(37,99,235,.1);
    color: var(--c-gold);
    padding: 4px 12px; border-radius: 100px;
    font-size: .68rem; font-weight: 700;
    letter-spacing: 1px;
}
@media(max-width: 480px) { .lab-grid { grid-template-columns: 1fr; } }

/* ===== DEVICES ===== */
#devices { background: var(--c-bg-2); }
.devices-row {
    display: flex; gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}
.devices-row::-webkit-scrollbar { height: 4px; }
.devices-row::-webkit-scrollbar-thumb { background: var(--c-gold-dark); border-radius: 2px; }
.dev-card {
    min-width: 300px; flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .5s var(--ease);
}
.dev-card:hover {
    border-color: var(--c-border-hover);
    transform: translateY(-4px);
}
.dev-card-img {
    width: 100%; height: 180px;
    object-fit: cover;
}
.dev-card-body {
    padding: 24px 28px;
    text-align: center;
}
.dev-icon-wrap {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: rgba(37,99,235,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--c-gold);
    transition: all .5s var(--ease);
}
.dev-card:hover .dev-icon-wrap {
    background: var(--c-gold);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}
.dev-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.dev-card p { font-size: .82rem; color: var(--c-text-dim); line-height: 1.6; }

/* ===== TEAM ===== */
#team { background: var(--c-bg); overflow: hidden; }
.team-header-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 36px; gap: 20px; flex-wrap: wrap;
}
.team-nav {
    display: flex; gap: 8px;
}
.team-nav button {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    color: var(--c-text-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; cursor: pointer;
    transition: all .35s var(--ease);
}
.team-nav button:hover {
    background: var(--c-gold); color: #fff;
    border-color: var(--c-gold);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37,99,235,.2);
}
/* Grid layout (<=4 members) */
.team-grid { position: relative; }
.team-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
/* Carousel layout (>4 members) */
.team-carousel-wrap {
    position: relative;
    max-width: 100%;
}
.team-carousel {
    display: flex; gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
    align-items: stretch;
}
.team-carousel::-webkit-scrollbar { display: none; }
.team-card {
    border-radius: 20px;
    border: none;
    background: transparent;
    overflow: hidden;
    transition: all .4s var(--ease);
    position: relative;
}
.team-carousel .team-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
}
.team-card:hover {
    transform: translateY(-6px);
}
.team-card-img {
    width: 100%; aspect-ratio: 5/5;
    object-fit: cover; object-position: top center;
    transition: transform .6s var(--ease);
}
.team-card:hover .team-card-img {
    transform: scale(1.05);
}
.team-card-img-wrap {
    position: relative; overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(29,78,216,.06);
}
.team-card-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px; border-radius: 100px;
    background: rgba(37,99,235,.85);
    backdrop-filter: blur(8px);
    font-size: .55rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #fff;
}
.team-card-social {
    position: absolute; bottom: 12px; right: 12px;
    display: flex; gap: 5px;
    opacity: 0; transform: translateY(10px);
    transition: all .4s var(--ease);
}
.team-card:hover .team-card-social {
    opacity: 1; transform: translateY(0);
}
.team-card-social a {
    width: 30px; height: 30px; border-radius: 9px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .7rem;
    transition: all .3s;
}
.team-card-social a:hover {
    background: #fff; color: #2563eb;
}
.team-card-body {
    padding: 14px 2px 4px;
}
.team-card-name {
    font-family: var(--font-display);
    font-size: .92rem; font-weight: 800;
    letter-spacing: -.3px;
    margin-bottom: 2px;
}
.team-card-role {
    font-size: .62rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 8px;
}
.team-card-desc {
    font-size: .75rem; color: var(--c-text-dim);
    line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.team-card-tags {
    display: flex; gap: 5px; flex-wrap: wrap;
    margin-top: 10px;
}
.team-card-tag {
    padding: 4px 10px; border-radius: 7px;
    font-size: .58rem; font-weight: 700;
    background: var(--c-teal-dim);
    color: var(--c-gold);
    letter-spacing: .3px;
}

/* Featured card (founder) — hero-sized */
.team-carousel .team-card.featured {
    flex: 0 0 420px;
}
.team-card.featured .team-card-img-wrap {
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(37,99,235,.14);
    border: 2px solid rgba(37,99,235,.12);
}
.team-card.featured .team-card-img {
    aspect-ratio: 5/5.5;
}
.team-card.featured .team-card-badge {
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #60a5fa);
    padding: 7px 18px;
    font-size: .62rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.team-card.featured .team-card-body {
    padding: 18px 4px 6px;
}
.team-card.featured .team-card-name {
    font-size: 1.15rem;
    letter-spacing: -.5px;
}
.team-card.featured .team-card-role {
    font-size: .68rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.team-card.featured .team-card-desc {
    font-size: .82rem;
    -webkit-line-clamp: 3;
    line-height: 1.7;
}
.team-card.featured .team-card-tags {
    margin-top: 14px;
}
.team-card.featured .team-card-tag {
    font-size: .64rem;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(34,211,238,.06));
    border: 1px solid rgba(37,99,235,.1);
}

@media(max-width: 768px) {
    .team-carousel .team-card { flex: 0 0 200px; }
    .team-carousel .team-card.featured { flex: 0 0 280px; }
    .team-card.featured .team-card-img { aspect-ratio: 5/5; }
    .team-grid-inner { grid-template-columns: 1fr; }
    .team-card-name { font-size: .85rem; }
    .team-card.featured .team-card-name { font-size: 1rem; }
}

/* ===== HEALTH TOURISM — DYNAMIC ===== */
/* ===== TOURISM — "Tatil + Tedavi" Premium Redesign ===== */
.ht2-section { padding: 0; overflow: hidden; }

/* Hero — Full Bleed */
.ht2-hero {
    position: relative;
    min-height: 680px;
    display: flex; align-items: center;
    overflow: hidden;
}
.ht2-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 10s cubic-bezier(.22,1,.36,1);
}
.ht2-hero:hover .ht2-hero-bg { transform: scale(1.05); }
.ht2-hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(160deg, rgba(10,15,30,.92) 0%, rgba(15,40,120,.78) 40%, rgba(30,80,200,.45) 100%),
        radial-gradient(ellipse at 80% 40%, rgba(96,165,250,.12), transparent 60%);
}
.ht2-hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 380px;
    gap: 48px; align-items: center;
    padding-top: 100px; padding-bottom: 80px;
}
.ht2-hero-content { max-width: 640px; }
.ht2-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 100px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    color: #60a5fa; font-size: .7rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
}
.ht2-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease infinite;
}
.ht2-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800; letter-spacing: -3px;
    color: #fff; line-height: 1.08;
    margin-bottom: 20px;
}
.ht2-hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #60a5fa, #38bdf8, #22d3ee, #a5f3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ht2-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,.55);
    line-height: 1.8; max-width: 520px;
    margin-bottom: 32px;
}

/* Hero Side Card */
.ht2-hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    backdrop-filter: blur(24px);
    overflow: hidden;
    animation: tourCardFadeIn 1.2s ease .3s both;
}
@keyframes tourCardFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.ht2-hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ht2-stat {
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.05);
    transition: all .4s var(--ease);
}
.ht2-stat:last-child { border-right: none; }
.ht2-stat:hover { background: rgba(255,255,255,.05); }
.ht2-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800;
    color: #60a5fa; letter-spacing: -1px;
    line-height: 1;
}
.ht2-stat strong small { font-size: .5em; color: rgba(255,255,255,.35); }
.ht2-stat > span {
    font-size: .58rem; font-weight: 600;
    color: rgba(255,255,255,.4);
    letter-spacing: .4px; text-transform: uppercase;
    margin-top: 4px; display: block;
}

/* Package includes list */
.ht2-hero-includes {
    padding: 20px 24px 24px;
}
.ht2-hero-includes h4 {
    font-family: var(--font-display);
    font-size: .72rem; font-weight: 700;
    color: rgba(255,255,255,.4);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 16px;
}
.ht2-hero-includes ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.ht2-hero-includes li {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: .82rem; font-weight: 500;
}
.ht2-hero-includes li i {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(96,165,250,.1);
    color: #60a5fa; font-size: .7rem;
    flex-shrink: 0;
}

/* Action Buttons */
.ht2-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ht2-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; font-size: .88rem; font-weight: 700;
    text-decoration: none;
    transition: all .4s var(--ease);
    box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.ht2-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,.45); }
.ht2-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff; font-size: .88rem; font-weight: 600;
    text-decoration: none;
    transition: all .4s var(--ease);
}
.ht2-btn-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ── Process / Timeline Section ── */
.ht2-process-section {
    padding: 56px 0 48px;
    background: var(--c-bg);
}
.ht2-process-header { text-align: center; margin-bottom: 36px; }
.ht2-process-header .section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .68rem; font-weight: 700;
    color: #2563eb; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(37,99,235,.06);
}
.ht2-process-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; letter-spacing: -2px;
    color: var(--c-text);
}
.ht2-process-title em {
    font-family: var(--font-serif); font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vertical Timeline */
.ht2-timeline {
    max-width: 680px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
}
.ht2-tl-item {
    display: flex; gap: 24px;
    position: relative;
}
.ht2-tl-marker {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0; width: 48px;
}
.ht2-tl-num {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-family: var(--font-display);
    font-size: .9rem; font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.ht2-tl-line {
    width: 2px; flex: 1; min-height: 24px;
    background: linear-gradient(to bottom, #3b82f6, rgba(59,130,246,.1));
}
.ht2-tl-card {
    flex: 1;
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px 28px;
    margin-bottom: 8px;
    border-radius: 20px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--c-border);
    transition: all .4s var(--ease);
}
.ht2-tl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(29,78,216,.08);
    border-color: rgba(37,99,235,.15);
    background: rgba(255,255,255,.9);
}
.ht2-tl-emoji {
    font-size: 2rem; line-height: 1;
    flex-shrink: 0; padding-top: 2px;
}
.ht2-tl-text h4 {
    font-family: var(--font-display);
    font-size: .92rem; font-weight: 700;
    color: var(--c-text); margin-bottom: 4px;
}
.ht2-tl-text p {
    font-size: .78rem; color: var(--c-text-dim);
    line-height: 1.65;
}

/* ── Advantages Section ── */
.ht2-adv-section {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, var(--c-bg) 0%, rgba(237,242,255,.4) 100%);
}
.ht2-adv-header { text-align: center; margin-bottom: 36px; }
.ht2-adv-header .section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .68rem; font-weight: 700;
    color: #2563eb; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(37,99,235,.06);
}
.ht2-adv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ht2-adv {
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--c-border);
    transition: all .4s var(--ease);
    text-align: center;
}
.ht2-adv:hover {
    border-color: rgba(37,99,235,.15);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(29,78,216,.08);
    background: #fff;
}
.ht2-adv-icon {
    font-size: 2rem; line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform .4s var(--ease);
}
.ht2-adv:hover .ht2-adv-icon { transform: scale(1.18) rotate(-5deg); }
.ht2-adv h4 {
    font-family: var(--font-display);
    font-size: .88rem; font-weight: 700;
    color: var(--c-text); margin-bottom: 6px;
}
.ht2-adv p {
    font-size: .76rem; color: var(--c-text-dim);
    line-height: 1.6; max-width: 240px; margin: 0 auto;
}

/* ── CTA Band ── */
.ht2-cta-band {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.ht2-cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(96,165,250,.15), transparent 60%);
    pointer-events: none;
}
.ht2-cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
}
.ht2-cta-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800; color: #fff;
    letter-spacing: -1px; margin-bottom: 6px;
}
.ht2-cta-text p {
    font-size: .88rem; color: rgba(255,255,255,.5);
    line-height: 1.6;
}
.ht2-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.ht2-cta-wa {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 14px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; font-size: .86rem; font-weight: 700;
    text-decoration: none;
    transition: all .4s var(--ease);
    box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.ht2-cta-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.45); }
.ht2-cta-consult {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff; font-size: .86rem; font-weight: 600;
    text-decoration: none;
    transition: all .4s var(--ease);
}
.ht2-cta-consult:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ── Tourism Responsive ── */
@media (max-width: 992px) {
    .ht2-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ht2-hero-card { max-width: 420px; }
}
@media (max-width: 768px) {
    .ht2-hero { min-height: 540px; }
    .ht2-hero-grid { padding-top: 90px; padding-bottom: 60px; }
    .ht2-hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: -1.5px; }
    .ht2-hero-sub { font-size: .88rem; }
    .ht2-hero-actions { flex-direction: column; }
    .ht2-hero-actions a { width: 100%; justify-content: center; }
    .ht2-hero-stats { grid-template-columns: repeat(3, 1fr); }
    .ht2-stat { padding: 14px 8px; }
    .ht2-stat strong { font-size: 1.2rem; }
    .ht2-tl-card { padding: 18px 20px; }
    .ht2-adv-grid { grid-template-columns: 1fr 1fr; }
    .ht2-cta-inner { flex-direction: column; text-align: center; }
    .ht2-cta-btns { flex-direction: column; width: 100%; }
    .ht2-cta-btns a { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .ht2-hero { min-height: 480px; }
    .ht2-hero-grid { padding-top: 80px; padding-bottom: 48px; }
    .ht2-hero-title { letter-spacing: -1px; }
    .ht2-hero-card { max-width: 100%; }
    .ht2-tl-item { gap: 16px; }
    .ht2-tl-marker { width: 36px; }
    .ht2-tl-num { width: 36px; height: 36px; font-size: .75rem; }
    .ht2-tl-card { padding: 16px; }
    .ht2-tl-emoji { font-size: 1.5rem; }
    .ht2-adv-grid { grid-template-columns: 1fr; }
    .ht2-adv { padding: 24px 20px; }
    .ht2-process-section { padding: 40px 0 36px; }
    .ht2-adv-section { padding: 36px 0 40px; }
    .ht2-cta-band { padding: 32px 0; }
}

/* ===== BEFORE / AFTER — PREMIUM ===== */
#ba { background: var(--c-bg); }
.ba-section {
    background: #1d4ed8;
    border-radius: 32px;
    padding: 64px;
    position: relative; overflow: hidden;
}
.ba-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle 400px at 10% 20%, rgba(37,99,235,.06), transparent),
        radial-gradient(circle 300px at 90% 80%, rgba(37,99,235,.04), transparent);
    pointer-events: none;
}
.ba-section > * { position: relative; z-index: 2; }
.ba-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}
.ba-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .65rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--c-gold);
    margin-bottom: 14px;
}
.ba-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--c-gold); }
.ba-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #fff;
    line-height: 1.08; letter-spacing: -2px;
}
.ba-h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ba-header-right { display: flex; gap: 10px; }
.ba-nav-btn {
    width: 48px; height: 48px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; cursor: pointer;
    transition: all .35s var(--ease);
}
.ba-nav-btn:hover { background: var(--c-gold); color: #fff; border-color: var(--c-gold); }

.ba-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; border-radius: 24px; overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.06);
}
.ba-featured-slider {
    position: relative; min-height: 400px;
    cursor: col-resize; overflow: hidden;
}
.ba-featured-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.ba-featured-slider .ba-after-img { clip-path: inset(0 50% 0 0); transition: clip-path .05s; }
.ba-slider-line {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; z-index: 3; transition: left .05s;
    background: linear-gradient(180deg, transparent, #fff 15%, #fff 85%, transparent);
}
.ba-slider-handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 4px rgba(255,255,255,.15);
    font-size: .7rem; color: #1d4ed8;
    transition: box-shadow .3s;
}
.ba-slider-handle:hover { box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 0 0 6px rgba(255,255,255,.2); }
.ba-slider-tag {
    position: absolute; bottom: 16px; z-index: 3;
    font-size: .55rem; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(0,0,0,.5); backdrop-filter: blur(12px);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.06);
}
.ba-slider-tag.before { left: 16px; }
.ba-slider-tag.after { right: 16px; }

.ba-featured-info {
    background: rgba(255,255,255,.02);
    padding: 48px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.ba-featured-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.15);
    width: fit-content; margin-bottom: 20px;
}
.ba-featured-badge i { color: var(--c-gold); font-size: .5rem; }
.ba-featured-badge span {
    font-size: .6rem; font-weight: 800; color: var(--c-gold);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.ba-featured-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800;
    color: #fff; letter-spacing: -.5px;
    margin-bottom: 12px;
}
.ba-desc {
    font-size: .85rem; color: rgba(255,255,255,.45);
    line-height: 1.8; margin-bottom: 28px;
}
.ba-featured-details {
    display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px;
}
.ba-detail {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 18px; border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.04);
}
.ba-detail-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(37,99,235,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold); font-size: .65rem; flex-shrink: 0;
}
.ba-detail span { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.6); }
.ba-featured-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 12px;
    background: var(--c-gold); color: #fff;
    font-size: .8rem; font-weight: 700;
    text-decoration: none; width: fit-content;
    transition: all .4s var(--ease);
}
.ba-featured-cta i { font-size: .7rem; transition: transform .3s; }
.ba-featured-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.3); }
.ba-featured-cta:hover i { transform: translateX(3px); }

.ba-gallery {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.ba-gallery::-webkit-scrollbar { display: none; }
.ba-gcard {
    flex: 0 0 340px; scroll-snap-align: start;
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    transition: all .4s var(--ease);
}
.ba-gcard:hover { border-color: rgba(255,255,255,.1); transform: translateY(-4px); }
.ba-gcard-slider {
    position: relative; height: 220px;
    cursor: col-resize; overflow: hidden;
}
.ba-gcard-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.ba-gcard-slider .ba-after-img { clip-path: inset(0 50% 0 0); transition: clip-path .05s; }
.ba-gcard-body {
    padding: 20px 22px;
    display: flex; align-items: center; justify-content: space-between;
}
.ba-gcard-body h4 { font-size: .82rem; font-weight: 700; color: #fff; }
.ba-gcard-body p { font-size: .68rem; color: rgba(255,255,255,.35); margin-top: 2px; }
.ba-gcard-tag {
    padding: 6px 14px; border-radius: 8px;
    background: rgba(37,99,235,.1);
    font-size: .6rem; font-weight: 700; color: var(--c-gold);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .ba-section { padding: 40px 24px; border-radius: 24px; }
    .ba-featured { grid-template-columns: 1fr; }
    .ba-featured-slider { min-height: 280px; }
    .ba-featured-info { padding: 32px 24px; }
    .ba-gcard { flex: 0 0 280px; }
    .ba-gcard-slider { height: 180px; }
}
@media (max-width: 600px) {
    .ba-section { padding: 32px 16px; border-radius: 20px; }
    .ba-eyebrow { font-size: .55rem; }
    .ba-h2 { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -1px; }
    .ba-slider-handle { width: 38px; height: 38px; }
    .ba-nav-btn { width: 36px; height: 36px; font-size: .65rem; }
    .ba-featured-slider { min-height: 240px; }
    .ba-featured-info { padding: 24px 20px; }
    .ba-featured-info h3 { font-size: 1.2rem; }
    .ba-desc { font-size: .78rem; }
    .ba-featured-details { gap: 10px; }
    .ba-detail { padding: 10px; }
    .ba-detail-icon { width: 28px; height: 28px; font-size: .55rem; }
    .ba-detail span { font-size: .62rem; }
    .ba-featured-cta { padding: 12px 20px; font-size: .75rem; }
    .ba-gcard { flex: 0 0 260px; }
    .ba-gcard-slider { height: 170px; }
    .ba-gcard-body { padding: 14px 16px; }
    .ba-gcard-body h4 { font-size: .75rem; }
}

/* ===== REVIEWS ===== */
#reviews { background: var(--c-bg-2); }
.reviews-top {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 24px;
    margin-bottom: 36px;
}
.reviews-score-big {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.reviews-stars { color: #f5a623; font-size: 1.1rem; margin-top: 8px; }
.reviews-count { color: var(--c-text-dim); font-size: .85rem; margin-top: 4px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}
.rev-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .4s var(--ease);
}
.rev-card:hover { border-color: var(--c-border-hover); transform: translateY(-4px); }
.rev-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.rev-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-gold);
}
.rev-avatar-placeholder {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .8rem; color: #ffffff;
    flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: .85rem; }
.rev-date { font-size: .7rem; color: var(--c-text-dim); }
.rev-g { margin-left: auto; color: #4285f4; font-size: 1.2rem; }
.rev-stars { color: #f5a623; font-size: .8rem; margin-bottom: 12px; }
.rev-text { font-size: .88rem; color: var(--c-text-mid); line-height: 1.75; }
@media(max-width: 480px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== CLINIC GALLERY ===== */
#gallery { background: var(--c-bg-2); }
.cg-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
.cg-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .65rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--c-gold);
    margin-bottom: 14px;
}
.cg-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--c-gold); }
.cg-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -2px;
}
.cg-h2 em { font-family: var(--font-serif); font-style: italic; background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cg-count { font-size: .75rem; color: var(--c-text-dim); font-weight: 600; }

/* Masonry grid */
.cg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}
.cg-item {
    position: relative; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    border: 1px solid var(--c-border);
    transition: border-color .4s;
}
.cg-item:hover { border-color: var(--c-gold); }
.cg-item.tall { grid-row: span 2; }
.cg-item.wide { grid-column: span 2; }
.cg-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.cg-item:hover img { transform: scale(1.06); }
.cg-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
    opacity: 0; transition: opacity .4s;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
}
.cg-item:hover .cg-item-overlay { opacity: 1; }
.cg-item-overlay h4 { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.cg-item-overlay p { font-size: .62rem; color: rgba(255,255,255,.5); }
.cg-item-zoom {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .7rem;
    opacity: 0; transform: scale(.8);
    transition: all .35s var(--ease);
}
.cg-item:hover .cg-item-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.cg-lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}
.cg-lightbox.open { opacity: 1; visibility: visible; pointer-events: all; }
.cg-lb-close {
    position: absolute; top: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    color: #fff; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s; z-index: 10;
}
.cg-lb-close:hover { background: rgba(255,255,255,.12); }
.cg-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.6); font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s; z-index: 10;
}
.cg-lb-nav:hover { background: rgba(255,255,255,.12); color: #fff; }
.cg-lb-nav.prev { left: 24px; }
.cg-lb-nav.next { right: 24px; }
.cg-lb-content { max-width: 85vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; }
.cg-lb-img {
    max-width: 100%; max-height: 75vh; border-radius: 16px; object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,.4); transition: opacity .3s;
}
.cg-lb-caption { margin-top: 20px; text-align: center; }
.cg-lb-caption h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cg-lb-caption p { font-size: .75rem; color: rgba(255,255,255,.4); }
.cg-lb-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: 2px;
}

/* ===== CONTACT ===== */
#contact {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}
.appt-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 24px; overflow: hidden;
    border: 1px solid var(--c-border);
    background: var(--c-bg-card);
    backdrop-filter: blur(16px);
    min-height: 620px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}
/* Left side — form */
.appt-form-side {
    padding: 48px;
    display: flex; flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.appt-form-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(37,99,235,.06);
    border: 1px solid rgba(37,99,235,.12);
    font-size: .6rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--c-gold); width: fit-content;
    margin-bottom: 20px;
}
.appt-form-badge i { font-size: .45rem; animation: pulse 2s ease infinite; }
.appt-form-side h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800; letter-spacing: -.5px;
    margin-bottom: 6px;
}
.appt-form-sub {
    font-size: .82rem; color: var(--c-text-dim);
    margin-bottom: 32px; line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
/* Treatment selector chips */
.appt-treatments {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
}
.appt-treat-chip {
    padding: 9px 18px; border-radius: 100px;
    font-size: .72rem; font-weight: 700;
    background: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text-mid);
    cursor: pointer;
    transition: all .3s var(--ease);
    letter-spacing: .3px;
}
.appt-treat-chip:hover, .appt-treat-chip.active {
    background: var(--c-gold); color: #fff;
    border-color: var(--c-gold);
    box-shadow: 0 4px 16px rgba(37,99,235,.15);
}
.appt-treat-chip i { margin-right: 5px; font-size: .6rem; }
/* Input rows */
.appt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.appt-field { position: relative; }
.appt-field.full { grid-column: 1 / -1; }
.appt-field input, .appt-field textarea, .appt-field select {
    width: 100%; padding: 15px 18px 15px 46px;
    background: rgba(255,255,255,.4);
    border: 1.5px solid var(--c-border);
    border-radius: 14px;
    color: var(--c-text);
    font-size: .88rem; font-family: inherit;
    transition: all .3s var(--ease);
}
.appt-field input::placeholder, .appt-field textarea::placeholder {
    color: var(--c-text-dim); font-size: .82rem;
}
.appt-field input:focus, .appt-field textarea:focus, .appt-field select:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(37,99,235,.08);
    background: #fff;
}
.appt-field textarea { min-height: 80px; resize: vertical; padding-top: 15px; }
.appt-field select { cursor: pointer; appearance: none; }
.appt-field select option { background: #fff; }
.appt-field-icon {
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-dim); font-size: .8rem;
    pointer-events: none;
    transition: color .3s;
}
.appt-field textarea ~ .appt-field-icon { top: 20px; transform: none; }
.appt-field input:focus ~ .appt-field-icon,
.appt-field textarea:focus ~ .appt-field-icon,
.appt-field select:focus ~ .appt-field-icon {
    color: var(--c-gold);
}
.appt-submit {
    width: 100%; padding: 17px;
    background: linear-gradient(135deg, #2563eb, #2563eb);
    color: #fff; border: none; border-radius: 14px;
    font-size: .9rem; font-weight: 800;
    letter-spacing: .5px; cursor: pointer;
    transition: all .4s var(--ease);
    margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.appt-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37,99,235,.25);
}
.appt-submit i { font-size: .75rem; transition: transform .3s; }
.appt-submit:hover i { transform: translateX(4px); }
.appt-secure {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 14px;
    font-size: .65rem; color: var(--c-text-dim);
    flex-wrap: wrap;
    text-align: center;
}
.appt-secure i { color: var(--c-gold); font-size: .6rem; flex-shrink: 0; }

/* Right side — info + map */
.appt-info-side {
    background: linear-gradient(160deg, #0f172a 0%, #1d4ed8 60%, #2563eb 100%);
    padding: 48px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    color: #fff; position: relative;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.appt-info-side::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle 250px at 80% 20%, rgba(255,255,255,.06), transparent),
        radial-gradient(circle 200px at 20% 80%, rgba(96,165,250,.08), transparent);
}
.appt-info-side > * { position: relative; z-index: 2; }
.appt-info-title {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 800;
    margin-bottom: 8px; letter-spacing: -.5px;
}
.appt-info-desc {
    font-size: .82rem; color: rgba(255,255,255,.5);
    line-height: 1.7; margin-bottom: 28px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.appt-info-cards { display: flex; flex-direction: column; gap: 10px; }
.appt-ic {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: all .35s var(--ease);
}
.appt-ic:hover {
    background: rgba(255,255,255,.08);
    transform: translateX(4px);
}
.appt-ic-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa; font-size: .85rem; flex-shrink: 0;
}
.appt-hours-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 2px 10px; border-radius: 100px;
    font-size: .6rem; font-weight: 700; margin-right: 6px;
    vertical-align: middle;
}
.appt-hours-badge.open { background: rgba(34,197,94,.15); color: #22c55e; }
.appt-hours-badge.closed { background: rgba(239,68,68,.15); color: #ef4444; }
.appt-hours-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: currentColor;
    animation: apptDotPulse 2s infinite;
}
@keyframes apptDotPulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.appt-ic h4 { font-size: .78rem; font-weight: 700; color: #fff; }
.appt-ic p { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 1px; overflow-wrap: break-word; word-break: break-word; }
.appt-ic > div { min-width: 0; }
.appt-ic a { color: rgba(255,255,255,.7); transition: color .3s; }
.appt-ic a:hover { color: #60a5fa; }
.appt-map-wrap {
    margin-top: 20px; border-radius: 16px; overflow: hidden;
    height: 130px;
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.appt-map-wrap iframe {
    width: 100%; height: 100%; border: none;
    filter: brightness(.5) contrast(1.2) saturate(.4) hue-rotate(180deg);
    transition: filter .4s;
}
.appt-map-wrap:hover iframe {
    filter: brightness(.7) contrast(1.1) saturate(.6) hue-rotate(180deg);
}

/* Contact — Tablet (900px) */
@media(max-width: 900px) {
    .appt-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 20px;
    }
    .appt-form-side { padding: 36px 32px; }
    .appt-info-side { padding: 36px 32px; min-height: auto; }
    .appt-info-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .appt-map-wrap { height: 180px; }
}
/* Contact — Small Tablet (768px) */
@media(max-width: 768px) {
    .appt-form-side { padding: 28px 24px; }
    .appt-form-side h3 { font-size: 1.3rem; }
    .appt-form-sub { font-size: .8rem; margin-bottom: 24px; }
    .appt-info-side { padding: 28px 24px; }
    .appt-info-title { font-size: 1.15rem; }
    .appt-info-desc { font-size: .8rem; margin-bottom: 22px; }
    .appt-treatments {
        flex-wrap: nowrap; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; padding-bottom: 4px;
    }
    .appt-treatments::-webkit-scrollbar { display: none; }
    .appt-treat-chip { flex-shrink: 0; }
}
/* Contact — Mobile (600px) */
@media(max-width: 600px) {
    .appt-wrap { border-radius: 18px; }
    .appt-form-side { padding: 24px 20px; }
    .appt-form-side h3 { font-size: 1.2rem; }
    .appt-form-sub { font-size: .78rem; margin-bottom: 20px; }
    .appt-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
    .appt-field input, .appt-field textarea, .appt-field select {
        padding: 14px 14px 14px 42px; font-size: 16px;
    }
    .appt-field-icon { left: 14px; }
    .appt-treat-chip { padding: 8px 14px; font-size: .7rem; }
    .appt-submit { padding: 15px; font-size: .82rem; }

    .appt-info-side { padding: 24px 20px; }
    .appt-info-title { font-size: 1.1rem; }
    .appt-info-desc { font-size: .78rem; margin-bottom: 20px; }
    .appt-info-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .appt-ic { padding: 14px; gap: 12px; border-radius: 12px; }
    .appt-ic-icon { width: 36px; height: 36px; border-radius: 10px; font-size: .8rem; }
    .appt-ic h4 { font-size: .75rem; }
    .appt-ic p { font-size: .72rem; word-break: break-word; overflow-wrap: break-word; }
    .appt-map-wrap { height: 160px; margin-top: 16px; border-radius: 12px; }
    .appt-secure { font-size: .6rem; }
}
/* Contact — Small Mobile (480px) */
@media(max-width: 480px) {
    .appt-wrap { border-radius: 16px; }
    .appt-form-side { padding: 22px 18px; }
    .appt-info-side { padding: 22px 18px; }
    .appt-form-side h3 { font-size: 1.1rem; }
    .appt-form-sub { font-size: .75rem; margin-bottom: 18px; }
    .appt-field input, .appt-field textarea, .appt-field select {
        padding: 13px 12px 13px 38px; font-size: 16px;
    }
    .appt-field-icon { left: 12px; font-size: .7rem; }
    .appt-treat-chip { padding: 7px 12px; font-size: .68rem; }
    .appt-ic { padding: 12px; gap: 10px; }
    .appt-ic-icon { width: 34px; height: 34px; font-size: .75rem; }
    .appt-ic h4 { font-size: .72rem; }
    .appt-ic p { font-size: .68rem; }
    .appt-info-title { font-size: 1.05rem; }
    .appt-info-desc { font-size: .75rem; }
    .appt-map-wrap { height: 150px; }
}
/* Contact — Tiny (380px) */
@media(max-width: 380px) {
    .appt-wrap { border-radius: 14px; }
    .appt-form-side { padding: 20px 16px; }
    .appt-info-side { padding: 20px 16px; }
    .appt-form-side h3 { font-size: 1rem; }
    .appt-form-sub { font-size: .72rem; }
    .appt-treat-chip { padding: 6px 10px; font-size: .62rem; }
    .appt-field input, .appt-field textarea, .appt-field select {
        padding: 12px 10px 12px 36px;
    }
    .appt-field-icon { left: 10px; }
    .appt-ic { padding: 10px; gap: 8px; }
    .appt-ic-icon { width: 30px; height: 30px; font-size: .65rem; border-radius: 8px; }
    .appt-ic h4 { font-size: .68rem; }
    .appt-ic p { font-size: .62rem; }
    .appt-info-title { font-size: .95rem; }
    .appt-map-wrap { height: 130px; }
    .appt-submit { padding: 14px; font-size: .78rem; }
    .appt-secure { font-size: .55rem; }
}

/* ===== FOOTER ===== */
.footer { position: relative; overflow: hidden; }

/* ── CTA Banner ── */
.ft-cta {
    position: relative;
    background: linear-gradient(160deg, #0c1425 0%, #1d4ed8 45%, #2563eb 70%, #22d3ee 100%);
    padding: 72px 0;
    overflow: hidden;
}
.ft-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1400&q=80') center/cover;
    opacity: .12; mix-blend-mode: luminosity;
}
.ft-cta::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle 500px at 70% 50%, rgba(96,165,250,.15), transparent);
}
.ft-cta .container { position: relative; z-index: 2; text-align: center; }
.ft-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 100px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    font-size: .68rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #67e8f9;
    margin-bottom: 32px;
}
.ft-cta-eyebrow i { font-size: .5rem; animation: pulse 2s ease infinite; }
.ft-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; letter-spacing: -2px;
    margin-bottom: 18px;
}
.ft-cta h2 em {
    font-style: normal; display: inline-block;
    background: linear-gradient(90deg, #1d4ed8, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ft-cta-desc {
    color: rgba(255,255,255,.55); font-size: 1.05rem;
    line-height: 1.8; max-width: 520px; margin: 0 auto 40px;
}
.ft-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ft-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 36px; border-radius: 100px;
    font-size: .9rem; font-weight: 800; border: none;
    transition: all .4s var(--ease); letter-spacing: .3px;
}
.ft-cta-btn.primary { background: #fff; color: #1d4ed8; }
.ft-cta-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.ft-cta-btn.ghost {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.25);
}
.ft-cta-btn.ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff; transform: translateY(-4px);
}
.ft-cta-stats {
    display: flex; gap: 48px; justify-content: center;
    margin-top: 56px; flex-wrap: wrap;
}
.ft-cta-stat { text-align: center; display: flex; flex-direction: column; align-items: center; min-width: 0; }
.ft-cta-stat strong {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 900; color: #fff;
    -webkit-text-fill-color: #fff;
    display: block; line-height: 1.1;
    min-width: fit-content;
}
.ft-cta-stat span {
    font-size: .75rem; color: rgba(255,255,255,.4);
    letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
    display: block; margin-top: 6px;
}

/* ── Footer Body ── */
.ft-body {
    background: #0f172a; position: relative;
    color: #fff;
}
.ft-body::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2563eb, #2563eb, #60a5fa, #2563eb, #2563eb, transparent);
}

/* Main content: 2 col layout */
.ft-main {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; min-height: 440px;
    align-items: start;
}
.ft-left {
    padding: 64px 0;
}
.ft-right {
    padding: 64px 0;
    border-left: 1px solid rgba(255,255,255,.05);
    padding-left: 56px;
}

/* Brand */
.ft-logo {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 900;
    letter-spacing: 6px; color: #fff;
    display: block; margin-bottom: 28px;
}
.ft-logo img { height: 80px; width: auto; }
.ft-logo em { font-style: normal; color: #60a5fa; }
.ft-tagline {
    font-size: 1.15rem; color: rgba(255,255,255,.45);
    line-height: 1.85; margin-bottom: 36px; max-width: 460px;
}

/* Horizontal nav chips */
.ft-chips-label {
    font-size: .72rem; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.2);
    margin-bottom: 14px;
}
.ft-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
}
.ft-chip {
    padding: 10px 22px; border-radius: 100px; font-size: .82rem;
    font-size: .76rem; font-weight: 700;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: all .35s var(--ease);
    letter-spacing: .3px;
}
.ft-chip:hover {
    color: #fff;
    background: rgba(96,165,250,.1);
    border-color: rgba(96,165,250,.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,235,.15);
}

/* Social row */
.ft-social {
    display: flex; gap: 8px; margin-top: 8px;
}
.ft-social a {
    width: 44px; height: 44px; border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.35); font-size: 1.05rem;
    transition: all .35s var(--ease);
}
.ft-social a:hover {
    background: #2563eb; color: #fff;
    border-color: #2563eb;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 24px rgba(37,99,235,.3);
}

/* Right side: contact cards */
.ft-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 20px;
}
.ft-c-card {
    padding: 22px; border-radius: 16px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
    transition: all .35s var(--ease);
}
.ft-c-card:hover {
    background: rgba(96,165,250,.04);
    border-color: rgba(96,165,250,.15);
    transform: translateY(-2px);
}
.ft-c-card-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(96,165,250,.08);
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa; font-size: .8rem;
    margin-bottom: 14px;
    transition: all .3s;
}
.ft-c-card:hover .ft-c-card-icon { background: #2563eb; color: #fff; }
.ft-c-card-label {
    font-size: .7rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 5px;
}
.ft-c-card-val {
    font-size: .95rem; color: rgba(255,255,255,.7);
    line-height: 1.5;
}
.ft-c-card-val a { color: rgba(255,255,255,.7); transition: color .3s; }
.ft-c-card-val a:hover { color: #60a5fa; }
.ft-c-card.full { grid-column: 1 / -1; }

/* Working Hours Card */
.ft-hours-card { grid-column: 1 / -1; }
.ft-hours-status {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    font-size: .68rem; font-weight: 700; letter-spacing: .3px;
    margin-bottom: 16px; width: fit-content;
}
.ft-hours-status.open {
    background: rgba(34,197,94,.08); color: #22c55e;
    border: 1px solid rgba(34,197,94,.15);
}
.ft-hours-status.closed {
    background: rgba(239,68,68,.08); color: #ef4444;
    border: 1px solid rgba(239,68,68,.15);
}
.ft-hours-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: currentColor; flex-shrink: 0;
    animation: ftDotPulse 2s infinite;
}
@keyframes ftDotPulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.ft-hours-list { display: flex; flex-direction: column; gap: 0; }
.ft-hours-row {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.ft-hours-row:last-child { border-bottom: none; }
.ft-hours-row.today {
    background: rgba(96,165,250,.04);
    margin: 0 -16px; padding: 8px 16px;
    border-radius: 8px; border-bottom-color: transparent;
}
.ft-hours-row.today .ft-hours-day { color: var(--c-gold); }
.ft-hours-row.today .ft-hours-time { color: #fff; }
.ft-hours-row.closed .ft-hours-time { color: rgba(255,255,255,.2); }
.ft-hours-day {
    font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5);
    min-width: 90px;
}
.ft-hours-time {
    font-family: var(--font-display); font-size: .78rem;
    font-weight: 700; color: rgba(255,255,255,.65);
    flex: 1;
}
.ft-hours-today {
    font-size: .55rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--c-gold);
    background: rgba(37,99,235,.1);
    padding: 3px 10px; border-radius: 100px;
    border: 1px solid rgba(37,99,235,.15);
}

/* Map */
.ft-map {
    border-radius: 16px; overflow: hidden;
    height: 140px;
    border: 1px solid rgba(255,255,255,.05);
    position: relative;
}
.ft-map iframe {
    width: 100%; height: 100%; border: none;
    filter: brightness(.5) contrast(1.3) saturate(.3) hue-rotate(180deg);
    transition: filter .4s;
}
.ft-map:hover iframe { filter: brightness(.7) contrast(1.1) saturate(.5) hue-rotate(180deg); }
.ft-map-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(15,23,42,.4);
    opacity: 1; transition: opacity .4s;
    pointer-events: none;
}
.ft-map:hover .ft-map-overlay { opacity: 0; }
.ft-map-overlay span {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 100px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.6);
    letter-spacing: .5px;
}

/* WhatsApp Contact Card */
.ft-wa-card { position: relative; }
.ft-c-card-icon.wa {
    background: rgba(37,211,102,.1);
    color: #25d366;
}
.ft-wa-card:hover .ft-c-card-icon.wa {
    background: #25d366;
    color: #fff;
}
.ft-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.15);
    color: #25d366;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s var(--ease);
}
.ft-wa-btn:hover {
    background: #25d366;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.25);
}

/* Subscribe + WhatsApp Band */
.ft-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 32px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
}
.ft-sub-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.ft-sub-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(96,165,250,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #60a5fa;
    flex-shrink: 0;
}
.ft-sub-left h4 {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 800;
    color: rgba(255,255,255,.85);
    margin: 0 0 3px;
}
.ft-sub-left p {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    margin: 0;
    line-height: 1.4;
}
.ft-sub-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 520px;
}
.ft-sub-form {
    display: flex;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: border-color .3s;
}
.ft-sub-form:focus-within {
    border-color: rgba(96,165,250,.25);
}
.ft-sub-input {
    flex: 1;
    padding: 11px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: .8rem;
    outline: none;
    min-width: 0;
}
.ft-sub-input::placeholder {
    color: rgba(255,255,255,.25);
}
.ft-sub-btn {
    padding: 0 18px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    transition: all .3s;
    flex-shrink: 0;
}
.ft-sub-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}
.ft-sub-btn:disabled {
    background: #22c55e;
}
.ft-sub-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    background: rgba(37,211,102,.08);
    border: 1px solid rgba(37,211,102,.15);
    color: #25d366;
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}
.ft-sub-wa:hover {
    background: #25d366;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.2);
}

@media (max-width: 900px) {
    .ft-subscribe {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 20px;
    }
    .ft-sub-right {
        max-width: none;
        flex-direction: column;
    }
    .ft-sub-wa { text-align: center; justify-content: center; }
}

/* ── Info strip ── */
.ft-strip {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; gap: 20px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.ft-strip-group {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ft-strip-item {
    display: flex; align-items: center; gap: 7px;
    font-size: .72rem; color: rgba(255,255,255,.35);
}
.ft-strip-item i { color: #60a5fa; font-size: .75rem; }
.ft-strip-item strong { color: rgba(255,255,255,.6); font-weight: 600; font-size: .82rem; }
.ft-strip-divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,.08);
}
.ft-lang-flags {
    display: flex; gap: 6px;
}
.ft-flag {
    padding: 6px 14px; border-radius: 6px; font-size: .82rem;
    font-size: .65rem; font-weight: 700;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    color: rgba(255,255,255,.4);
    transition: all .3s;
}
.ft-flag:hover {
    background: rgba(96,165,250,.06);
    border-color: rgba(96,165,250,.15);
    color: #60a5fa;
}

/* ── Bottom ── */
.ft-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.ft-copy { font-size: .8rem; color: rgba(255,255,255,.2); }
.ft-made {
    display: flex; align-items: center; gap: 6px;
    font-size: .68rem; color: rgba(255,255,255,.25);
}
.ft-made { font-size: .8rem; }
.ft-made i { color: #2563eb; font-size: .7rem; }
.ft-addr-sub { color: rgba(255,255,255,.35); font-size: .7rem; margin-top: 1px; }
.ft-dev {
    display: flex; align-items: center; gap: 6px;
    font-size: .7rem; color: rgba(255,255,255,.2);
}
.ft-dev i { color: rgba(255,255,255,.15); font-size: .6rem; }
.ft-dev a {
    color: rgba(255,255,255,.35);
    text-decoration: none; font-weight: 600;
    transition: color .3s;
}
.ft-dev a:hover { color: #60a5fa; }
.ft-legal { display: flex; gap: 16px; }
.ft-legal a {
    font-size: .8rem; color: rgba(255,255,255,.2);
    transition: color .3s;
}
.ft-legal a:hover { color: #60a5fa; }

@media(max-width:900px) {
    .ft-main { grid-template-columns: 1fr; gap: 0; }
    .ft-left { padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .ft-right { padding: 48px 0; border-left: none; padding-left: 0; }
}
@media(max-width:600px) {
    .ft-contact-grid { grid-template-columns: 1fr; }
    .ft-cta h2 { font-size: 2rem; letter-spacing: -1px; }
    .ft-cta-stats { gap: 24px; }
    .ft-cta { padding: 60px 0; }
}

/* ===== FLOATING CTA ===== */
.float-wrap {
    position: fixed; bottom: 28px; right: 28px;
    z-index: 9990;
    display: flex; flex-direction: column; gap: 12px;
    align-items: flex-end;
}
.float-b {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    border: none;
    transition: all .4s var(--ease);
    position: relative;
}
.float-b:hover { transform: scale(1.12); }
.float-wa { background: #25d366; color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.35); }
.float-ph { background: var(--c-gold); color: #ffffff; box-shadow: 0 4px 24px rgba(37,99,235,.35); }
.float-label {
    position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--c-border);
    color: var(--c-white);
    padding: 6px 14px; border-radius: 8px;
    font-size: .75rem; font-weight: 600;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.float-b:hover .float-label { opacity: 1; }

/* Callback Popup */
.float-callback-wrap { position: relative; }
.callback-popup {
    position: absolute; bottom: 68px; right: 0;
    width: 340px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(29,78,216,.1);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(29,78,216,.12), 0 4px 16px rgba(29,78,216,.06);
    opacity: 0; visibility: hidden;
    transform: translateY(12px) scale(.96);
    transition: all .4s cubic-bezier(.22,1,.36,1);
    z-index: 10;
    overflow: hidden;
}
.callback-popup.open {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}
.cb-header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    position: relative;
}
.cb-header-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.cb-header h4 { font-family: var(--font-display); font-size: .88rem; font-weight: 700; }
.cb-header p { font-size: .65rem; opacity: .8; margin-top: 2px; }
.cb-close {
    position: absolute; top: 14px; right: 14px;
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255,255,255,.12);
    border: none; color: #fff; font-size: .7rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s;
}
.cb-close:hover { background: rgba(255,255,255,.25); }
.cb-form { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.cb-field { display: flex; flex-direction: column; gap: 6px; }
.cb-field label {
    font-size: .7rem; font-weight: 600; color: var(--c-text);
    display: flex; align-items: center; gap: 6px;
    letter-spacing: .2px;
}
.cb-field label i { color: var(--c-gold); font-size: .6rem; }
.cb-field input {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid rgba(29,78,216,.12);
    border-radius: 12px;
    background: rgba(29,78,216,.02);
    font-family: var(--font-body);
    font-size: 16px; color: var(--c-text);
    transition: all .3s;
    outline: none;
}
.cb-field input:focus {
    border-color: var(--c-gold);
    background: rgba(37,99,235,.04);
    box-shadow: 0 0 0 4px rgba(37,99,235,.06);
}
.cb-field input::placeholder { color: var(--c-text-dim); }
.cb-submit {
    width: 100%; padding: 13px 20px;
    border: none; border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-family: var(--font-display);
    font-size: .82rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; transition: all .4s var(--ease);
    box-shadow: 0 4px 16px rgba(37,99,235,.2);
    position: relative; overflow: hidden;
}
.cb-submit::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transform: translateX(-100%); transition: transform .6s;
}
.cb-submit:hover::before { transform: translateX(100%); }
.cb-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.3); }
.cb-note {
    display: flex; align-items: flex-start; gap: 7px;
    font-size: .62rem; color: var(--c-text-dim);
    line-height: 1.5; padding: 0 2px;
}
.cb-note i { color: var(--c-gold); font-size: .55rem; margin-top: 2px; flex-shrink: 0; }
.cb-success {
    padding: 40px 20px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cb-success-icon {
    font-size: 2.5rem; color: #22c55e;
    animation: successPop .5s cubic-bezier(.22,1,.36,1);
}
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.cb-success h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700; color: var(--c-text);
}
.cb-success p { font-size: .78rem; color: var(--c-text-mid); }

@media (max-width: 480px) {
    .callback-popup { width: calc(100vw - 32px); right: -12px; }
}

.back-top {
    position: fixed; bottom: 28px; left: 28px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--c-border);
    color: var(--c-text-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; z-index: 9990;
    opacity: 0; transform: translateY(20px);
    transition: all .4s var(--ease);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed; top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, #2563eb, #2563eb, #60a5fa);
    z-index: 99999;
    transition: width .15s;
}

/* ===== ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ======================================================== */

@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero-grid { grid-template-columns: 1fr 340px; gap: 32px; }
    .hero-title { font-size: clamp(2.6rem, 5.5vw, 4rem); }
    section { padding: 56px 0; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; -webkit-text-size-adjust: 100%; max-width: 100vw; }
    .container { padding: 0 20px; }
    section { padding: 40px 0; }
    .section-header { margin-bottom: 32px; }
    h1.section-heading, h2.section-heading, h3.section-heading,
    div.section-heading h2 { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -1px; }
    .section-desc { font-size: .88rem; }

    /* Hero */
    .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 110px 0 50px; }
    .hero-why { order: 2; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); letter-spacing: -1.5px; }
    .hero-sub { font-size: .9rem; margin-bottom: 28px; max-width: 100%; }
    .hero-btns { gap: 10px; }
    .hero-btns .btn-mag { padding: 14px 24px; font-size: .82rem; width: 100%; justify-content: center; }
    .hero-stats {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 16px; margin-top: 32px; padding-top: 24px;
    }
    .hero-stat { text-align: center; }
    .hero-stat h3 { font-size: 1.6rem; }
    .hero-stat p { font-size: .6rem; letter-spacing: 1.5px; }
    .hero-card { padding: 24px 20px; border-radius: 20px; max-height: 400px; overflow-y: auto; }
    .hero-card-title { font-size: 1rem; margin-bottom: 16px; }
    .hero-why-stat { padding: 11px 0; gap: 12px; }
    .hero-why-stat-icon { width: 36px; height: 36px; font-size: .75rem; border-radius: 10px; }
    .hero-why-stat-text h4 { font-size: .78rem; }
    .hero-why-stat-text p { font-size: .64rem; }
    .hero-card-cta { padding: 12px 0; font-size: .78rem; border-radius: 12px; margin-top: 14px; }
    .hero-scroll { display: none; }

    /* Marquee */
    .marquee { padding: 14px 0; }

    /* Lab */
    .lab-grid { grid-template-columns: 1fr; gap: 14px; }
    .lab-card-inner { padding: 20px; }
    .lab-card h3 { font-size: .95rem; }
    .lab-card p { font-size: .78rem; }

    /* Devices */
    .dev-card { min-width: 250px; }
    .dev-card-img { height: 150px; }
    .dev-card-body { padding: 18px; }
    .dev-card h3 { font-size: .88rem; }
    .dev-card p { font-size: .72rem; }

    /* Team */
    .team-header-row { margin-bottom: 32px; }
    .team-carousel { gap: 16px; }
    .team-member { min-width: 260px; }

    /* Before/After */
    .ba-section { padding: 32px 20px; border-radius: 20px; }
    .ba-eyebrow { font-size: .55rem; }
    .ba-h2 { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -1px; }
    .ba-nav-btn { width: 36px; height: 36px; font-size: .65rem; }
    .ba-featured { grid-template-columns: 1fr; }
    .ba-featured-slider { min-height: 240px; }
    .ba-featured-info { padding: 24px 20px; }
    .ba-featured-info h3 { font-size: 1.2rem; }
    .ba-desc { font-size: .78rem; }
    .ba-featured-details { gap: 10px; }
    .ba-detail { padding: 10px; }
    .ba-detail-icon { width: 32px; height: 32px; font-size: .6rem; }
    .ba-detail span { font-size: .62rem; }
    .ba-featured-cta { padding: 12px 20px; font-size: .78rem; border-radius: 12px; }
    .ba-gallery { gap: 12px; }
    .ba-gcard { flex: 0 0 260px; }
    .ba-gcard-slider { height: 180px; }
    .ba-gcard-body { padding: 14px; }
    .ba-gcard-body h4 { font-size: .78rem; }
    .ba-gcard-body p { font-size: .6rem; }

    /* Gallery */
    .cg-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; gap: 8px; }
    .cg-item { border-radius: 12px; }
    .cg-h2 { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -1px; }
    .cg-item-overlay { padding: 12px; }
    .cg-item-overlay h4 { font-size: .68rem; }
    .cg-item-overlay p { font-size: .52rem; }
    .cg-item-zoom { width: 30px; height: 30px; font-size: .55rem; top: 10px; right: 10px; }
    .cg-lb-close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: .9rem; }
    .cg-lb-nav { width: 40px; height: 40px; font-size: .7rem; }
    .cg-lb-nav.prev { left: 12px; }
    .cg-lb-nav.next { right: 12px; }

    /* Reviews */
    .reviews-top { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
    .rev-card { padding: 24px; }
    .rev-name { font-size: .82rem; }
    .rev-text { font-size: .82rem; }

    /* Contact — handled by dedicated breakpoints */

    /* Footer CTA */
    .ft-cta { padding: 60px 0; }
    .ft-cta h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .ft-cta-desc { font-size: .88rem; }
    .ft-cta-actions { flex-direction: column; gap: 10px; }
    .ft-cta-btn { width: 100%; justify-content: center; padding: 14px 28px; }

    /* Footer */
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ft-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }

    /* Floating */
    .float-wrap { bottom: 16px; right: 16px; gap: 10px; }
    .float-b { width: 48px; height: 48px; font-size: 1.1rem; }
    .float-label { display: none; }
    .back-top { bottom: 16px; left: 16px; width: 38px; height: 38px; font-size: .72rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero-grid { padding: 100px 0 40px; }
    .hero-title { word-break: break-word; }
    .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); letter-spacing: -1px; }
    .hero-location-badge { padding: 5px 14px; font-size: .6rem; letter-spacing: 1px; margin-bottom: 12px; }
    .hero-loc-flag { font-size: .9rem; }
    .hero-tag { padding: 7px 16px; font-size: .62rem; letter-spacing: 1.5px; margin-bottom: 20px; }
    .hero-sub { font-size: .85rem; line-height: 1.75; margin-bottom: 24px; }
    .hero-btns .btn-mag { padding: 13px 20px; font-size: .78rem; }
    .hero-stats { gap: 12px; margin-top: 24px; padding-top: 20px; }
    .hero-stat h3 { font-size: 1.3rem; }
    .hero-stat p { font-size: .55rem; letter-spacing: 1px; }
    .hero-card { padding: 20px 16px; border-radius: 16px; }
    .hero-why-stat-icon { width: 32px; height: 32px; font-size: .7rem; border-radius: 8px; }
    .hero-why-stat-text h4 { font-size: .72rem; }
    .hero-why-stat-text p { font-size: .58rem; }

    /* Lab */
    .lab-card-inner { padding: 16px; }
    .lab-card h3 { font-size: .88rem; }

    /* Devices */
    .dev-card { min-width: 220px; }
    .dev-card-img { height: 130px; }

    /* Team */
    .team-member { min-width: 230px; }

    /* Gallery */
    .cg-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; gap: 6px; }
    .cg-item.wide { grid-column: span 2; }
    .cg-item.tall { grid-row: span 2; }
    .cg-item { border-radius: 10px; }
    .cg-item-overlay p { display: none; }
    .cg-lb-content { max-width: 95vw; }

    /* Reviews */
    .rev-card { padding: 20px; }
    .rev-avatar, .rev-avatar-placeholder { width: 36px; height: 36px; font-size: .65rem; }
    .rev-text { font-size: .78rem; }

    /* Contact — handled by dedicated breakpoints */

    /* Footer */
    .ft-cta { padding: 48px 0; }
    .ft-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Mobile menu */
    .mm-inner { padding: 32px 24px 24px; }
    .mm-link-text { font-size: clamp(1.3rem, 6vw, 1.8rem); }
}

@media (max-width: 360px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; }
    .hero-card { padding: 18px 14px; }
    .cg-grid { grid-auto-rows: 100px; }
}

/* Safe area (notch) */
@supports (padding-top: env(safe-area-inset-top)) {
    .hdr { padding-top: max(8px, env(safe-area-inset-top)); }
    .mm-inner { padding-top: max(40px, calc(32px + env(safe-area-inset-top))); }
    .float-wrap { bottom: calc(16px + env(safe-area-inset-bottom)); }
    .back-top { bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .cg-item-overlay { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%); }
    .cg-item-zoom { opacity: 1; transform: scale(1); }
    .hero-why-stat:hover { transform: none; }
    .hero-why-stat:hover .hero-why-stat-icon { transform: none; }
    .srv2-card:hover { transform: none; box-shadow: none; }
    .srv2-card:hover::before { opacity: 0; }
    .srv2-card:hover .srv2-card-icon { transform: none; }
    .lab-card:hover { transform: none; }
    .dev-card:hover { transform: none; }
    .feat-card:hover { transform: none; box-shadow: none; }
    .feat-card:hover .feat-card-icon { transform: none; }
    .feat-card:hover::before { opacity: 0; }
    .ba-slider-handle { width: 40px; height: 40px; }
    .ba-slider-handle i { font-size: .75rem; }
}

/* Smooth scroll containers */
@media (max-width: 768px) {
    .devices-row, .appt-treatments, .srv2-tabs, .team-carousel, .ba-gallery {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .dev-card, .appt-treat-chip, .srv2-tab, .team-card, .ba-gcard { scroll-snap-align: start; }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-grid { padding: 80px 0 32px; }
    .hero-why { display: none; }
}

/* Reduced motion */
/* ===== FADE-UP ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible,
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MISSING LAYOUT CLASSES ===== */

/* feat-content: right column in features section */
.feat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* srv2-header-left: services header left column */
.srv2-header-left {
    flex: 1;
}

/* srv2-panels: wrapper for service category panels */
.srv2-panels {
    position: relative;
    z-index: 1;
    margin-top: 32px;
}

/* inner-label: section subtitle label */
.inner-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-gold);
    margin-bottom: 10px;
}

/* btn-link: text button with arrow */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    color: var(--c-gold);
    text-decoration: none;
    transition: gap .3s, color .3s;
}
.btn-link:hover {
    gap: 10px;
    color: var(--c-gold-dark);
}

/* ===== FAQ HOME SECTION — PREMIUM ===== */
.sec-faq {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}
.sec-faq-header {
    text-align: center;
    margin-bottom: 36px;
}
.sec-faq-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
    color: var(--c-text);
    margin-bottom: 12px;
}
.sec-faq-title em {
    font-family: var(--font-serif); font-style: italic;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #22d3ee, #67e8f9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec-faq-desc {
    font-size: .92rem;
    color: var(--c-text-dim);
    max-width: 400px;
    margin: 0 auto;
}
.sec-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}
.sec-faq-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.sec-faq-card:hover {
    border-color: rgba(37,99,235,.15);
    box-shadow: 0 8px 32px rgba(29,78,216,.06);
    transform: translateY(-2px);
}
.sec-faq-card.open {
    border-color: rgba(37,99,235,.2);
    box-shadow: 0 12px 40px rgba(29,78,216,.08);
}
.sec-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 14px;
    text-align: left;
    transition: background .3s;
}
.sec-faq-q:hover { background: rgba(37,99,235,.02); }
.sec-faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.sec-faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(37,99,235,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-gold);
    font-size: .82rem;
    transition: background .3s, color .3s;
}
.sec-faq-card.open .sec-faq-icon,
.sec-faq-card:hover .sec-faq-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}
.sec-faq-q-left > span {
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.4;
}
.sec-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37,99,235,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-gold);
    font-size: .6rem;
    transition: transform .35s var(--ease), background .3s;
}
.sec-faq-card.open .sec-faq-toggle {
    transform: rotate(180deg);
    background: rgba(37,99,235,.1);
}
.sec-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease), padding .35s var(--ease);
    padding: 0 24px 0 76px;
}
.sec-faq-card.open .sec-faq-a {
    max-height: 500px;
    padding: 0 24px 22px 76px;
}
.sec-faq-a p {
    font-size: .8rem;
    color: var(--c-text-dim);
    line-height: 1.85;
}
.sec-faq-bottom {
    margin-top: 48px;
}
.sec-faq-bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
}
.sec-faq-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sec-faq-bottom-left > i {
    font-size: 1.3rem;
    color: var(--c-gold);
}
.sec-faq-bottom-left strong {
    display: block;
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-text);
}
.sec-faq-bottom-left span {
    font-size: .75rem;
    color: var(--c-text-dim);
}
.sec-faq-bottom-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sec-faq-link {
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-gold);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    transition: background .3s, color .3s;
}
.sec-faq-link:hover {
    background: rgba(37,99,235,.06);
}
.sec-faq-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(37,211,102,.08);
    border: 1px solid rgba(37,211,102,.15);
    color: #25d366;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}
.sec-faq-wa:hover {
    background: rgba(37,211,102,.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sec-faq-grid { grid-template-columns: 1fr; gap: 10px; }
    .sec-faq-q { padding: 18px 16px; }
    .sec-faq-icon { width: 32px; height: 32px; font-size: .75rem; border-radius: 10px; }
    .sec-faq-q-left { gap: 12px; }
    .sec-faq-a { padding-left: 60px; }
    .sec-faq-card.open .sec-faq-a { padding-left: 60px; }
    .sec-faq-bottom-card { flex-direction: column; text-align: center; padding: 20px; }
    .sec-faq-bottom-left { flex-direction: column; gap: 8px; }
    .sec-faq-bottom-actions { flex-direction: column; width: 100%; gap: 8px; }
    .sec-faq-link, .sec-faq-wa { width: 100%; text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal-up { opacity: 1; transform: none; }
    .fade-up { opacity: 1; transform: none; }
    .hero-title .line-inner { transform: none; }
    .hero-sub, .hero-btns, .hero-stats, .hero-why { opacity: 1; transform: none; }
    .hero-why-stat { opacity: 1; transform: none; }
}
