/* ==========================================================================
   New Skin Laser Studio — Main Stylesheet  v2.3.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --bg: #000000;
    --bg-card: #0f0f11;
    --bg-elevated: #212227;
    --bg-icon: #221f1f;
    --bg-featured: #011424;
    --text: #ffffff;
    --text-body: #d0d0d0;
    --text-muted: #636363;
    --text-faint: rgba(255, 255, 255, 0.32);
    --cyan: #64d2f4;
    --brand-blue: #0762b5;
    --blue: #0762b5;
    --blue-dim: rgba(7, 98, 181, 0.14);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --container: 1440px;
    --gutter: clamp(20px, 5vw, 80px);
    --section-py: clamp(20px, 6vw, 80px);
    --radius: 5px;
    --radius-lg: 8px;
    --transition: 0.25s ease;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Darker Grotesque', sans-serif;
    --font-eyebrow: 'Barlow', sans-serif;
    --nsl-divider-transition: 0.4s ease;
    --nsl-services-bg-img: url('/wp-content/themes/newskin-child/assets/images/new-skin-laser-studio-services-hero.webp');
}

/* --------------------------------------------------------------------------
   2. Hard Reset — override GeneratePress global styles
   -------------------------------------------------------------------------- */
html,
body {
    background: #000 url('/wp-content/themes/newskin-child/assets/images/site-bg.webp') center/cover fixed !important;
    color: var(--text) !important;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

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

html {
    scroll-behavior: smooth;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: inherit !important;
}

a:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

ul,
ol {
    list-style: none;
}

/* Global paragraph baseline — GRO-348 */
p {
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.5;
}

/* Kill GeneratePress structural elements we don't use */
.site-header,
.main-navigation,
.site-footer,
.footer-widgets,
.page-header,
.entry-header,
.entry-footer,
.post-navigation,
.comments-area,
.paging-navigation {
    display: none !important;
}

/* Flatten GP content wrappers to zero */
.site,
.site-content,
.content-area,
.site-main,
article.page,
.inside-article,
.entry-content,
.separate-containers .inside-article,
.one-container .container {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.ns-container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.ns-section {
    padding-block: var(--section-py);
}

.ns-section--dark {
    background: transparent;
}

.ns-section--card {
    background: rgba(15, 15, 17, 0.7);
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.ns-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-eyebrow);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text);
    background: var(--bg-elevated);
    border: none;
    padding: 5px 12px;
    border-radius: 0;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Continuous left→right fill sweep animation */
.ns-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    clip-path: inset(0 100% 0 0);
    animation: badge-sweep 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes badge-sweep {
    0%   { clip-path: inset(0 100% 0 0); }
    8%   { clip-path: inset(0 100% 0 0); }
    42%  { clip-path: inset(0 0% 0 0); }
    58%  { clip-path: inset(0 0% 0 0); }
    92%  { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 100% 0 0); }
}



.ns-section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.12;
    margin-bottom: 0;
    color: var(--text) !important;
}

.ns-section-heading span.accent,
h1 span {
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ns-display-heading {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 120px);
    font-weight: 800;
    font-style: normal;
    line-height: 0.95;
    letter-spacing: 0;
}

.ns-body-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.8;
    color: var(--text-body);
}

.ns-body-text p+p {
    margin-top: 14px;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.ns-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.35s ease, color 0.35s ease;
    text-decoration: none !important;
    border-radius: 0;
    white-space: nowrap;
    background: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Skewed gradient fill slides in from left on hover */
.ns-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -25%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.076, 1);
    z-index: -1;
}

.ns-btn:hover::before { transform: translateX(0) skewX(-15deg); }

.ns-btn--primary {
    background: var(--text) !important;
    color: var(--bg) !important;
    border-color: var(--text);
}

.ns-btn--primary:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: var(--cyan);
}

.ns-btn--outline {
    background: transparent !important;
    color: var(--text) !important;
    border-color: var(--text);
}

.ns-btn--outline:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: var(--cyan);
}

.ns-btn--blue {
    background: var(--cyan) !important;
    color: var(--text) !important;
    border-color: var(--cyan);
}

.ns-btn--blue:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: var(--cyan);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.ns-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    padding: 20px 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

.ns-header.scrolled {
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
}

.ns-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ns-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.ns-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

.ns-header.scrolled .ns-logo-img {
    height: 50px;
}

.ns-hamburger {
    background: var(--brand-blue);
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 0;
    transition: background 0.3s ease, width 0.4s ease, height 0.4s ease;
    flex-shrink: 0;
}

.ns-header.scrolled .ns-hamburger {
    width: 40px;
    height: 40px;
}

.ns-hamburger:hover { background: #0a7fd4; }

.ns-hamburger__icon { color: #fff; display: block; }
.ns-ham-bar {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.ns-hamburger.active .ns-ham-bar--top { transform: translateY(7px) rotate(45deg); }
.ns-hamburger.active .ns-ham-bar--mid { opacity: 0; }
.ns-hamburger.active .ns-ham-bar--bot { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav Overlay (full-screen two-panel menu) ──────────────────── */
.ns-nav-overlay {
    position: fixed; inset: 0;
    z-index: 1100;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.ns-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Both panels share the textured background */
.ns-nav-panel {
    position: absolute; inset: 0;
    background-image: url('/wp-content/themes/newskin-child/assets/images/nav-menu-background.webp');
    background-size: cover;
    background-position: center;
    background-color: rgba(0,0,0,0.94);
    background-blend-mode: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
    transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
    will-change: transform;
}
/* Panel A stays fixed; only inner .ns-nav-menu slides out */
.ns-nav-panel--main { transform: translateX(0); }

.ns-nav-menu,
.ns-nav-contact {
    transition: transform 0.42s cubic-bezier(0.77,0,0.175,1), opacity 0.3s ease;
    will-change: transform, opacity;
}
.ns-nav-panel--main.slide-out .ns-nav-menu,
.ns-nav-panel--main.slide-out .ns-nav-contact {
    transform: translateX(-110%);
    opacity: 0;
    pointer-events: none;
}

/* Sub panel: transparent overlay — fades in on top of Panel A */
.ns-nav-panel--sub {
    transform: translateX(0);
    opacity: 0;
    pointer-events: none;
}
.ns-nav-panel--sub.slide-in {
    opacity: 1;
    pointer-events: all;
}

/* Sub content: slides in from right */
.ns-nav-sub__title,
.ns-nav-sub__items,
.ns-nav-sub__back {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.35s ease;
}
.ns-nav-panel--sub.slide-in .ns-nav-sub__title {
    transform: translateX(0); opacity: 1; transition-delay: 0.06s;
}
.ns-nav-panel--sub.slide-in .ns-nav-sub__items {
    transform: translateX(0); opacity: 1; transition-delay: 0.12s;
}
.ns-nav-panel--sub.slide-in .ns-nav-sub__back {
    transform: translateX(0); opacity: 1; transition-delay: 0.18s;
}

/* Panel header: logo + close */
.ns-nav-panel__header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ns-nav-panel__logo img { height: 80px; width: auto; display: block; }

.ns-nav-close {
    background: var(--brand-blue);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 44px; height: 44px;
    border-radius: 0;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}
.ns-nav-close:hover { background: #0a7fd4; }

.ns-nav-close svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ns-nav-sub__back svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}



/* Main menu list */
.ns-nav-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    width: 100%; max-width: 440px;
}
.ns-nav-link {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-display);
    font-size: clamp(14px,1.6vw,18px);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.72) !important;
    text-decoration: none !important;
    padding: 8px 16px;
    width: 100%; text-align: center;
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: center;
}
.ns-nav-link:hover, .ns-nav-link:focus {
    color: #fff !important;
    transform: scale(1.07);
}
.ns-nav-plus {
    font-size: 18px; color: var(--cyan); font-weight: 400; line-height: 1;
}

.ns-nav-contact {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 14px; letter-spacing: 0.04em;
}
.ns-nav-contact a { color: rgba(255,255,255,0.50) !important; text-decoration: none !important; transition: color 0.2s; }
.ns-nav-contact a:hover { color: #fff !important; }

/* ── Submenu panel ── */
.ns-nav-sub__title {
    font-family: var(--font-display);
    font-size: clamp(22px,3.5vw,38px);
    font-weight: 600; color: var(--cyan);
    text-align: center; margin: 0 0 30px;
    letter-spacing: 0.02em;
}
.ns-nav-sub__items {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    width: 100%; max-width: 750px;
}
.ns-nav-sub__items li a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(13px,1.4vw,16px); font-weight: 300;
    color: rgba(255,255,255,0.68) !important;
    text-decoration: none !important;
    padding: 6px 16px; text-align: center;
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: center;
}
.ns-nav-sub__items li a:hover {
    color: #fff !important;
    transform: scale(1.09);
}
.ns-nav-sub__back {
    margin-top: 32px;
    width: 44px; height: 44px; border-radius: 0;
    background: rgba(255,255,255,0.10); border: none;
    color: #fff; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.ns-nav-sub__back:hover { background: rgba(255,255,255,0.20); }

/* Desktop/Tablet: 2 columns for 11+ items */
@media (min-width: 768px) {
    .ns-nav-sub__items:has(li:nth-child(11)) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 24px;
        max-width: 750px;
        align-items: start;
    }
    .ns-nav-sub__items:has(li:nth-child(11)) li a {
        text-align: left;
    }
}

/* Mobile: scrolling with themed scrollbar */
@media (max-width: 767px) {
    .ns-nav-panel--sub {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .ns-nav-sub__title {
        margin: 0 0 20px;
    }
    .ns-nav-sub__items {
        max-height: 80vh;
        overflow-y: auto;
        width: 100%;
        padding-right: 8px;
        margin-bottom: 20px;
    }
    .ns-nav-sub__items::-webkit-scrollbar {
        width: 4px;
    }
    .ns-nav-sub__items::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .ns-nav-sub__items::-webkit-scrollbar-thumb {
        background: var(--cyan);
        border-radius: 4px;
    }
    .ns-nav-sub__back {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .ns-nav-link { font-size: 15px; padding: 6px 12px; }
    .ns-nav-menu { gap: 2px; }
    .ns-nav-panel { padding: 72px 16px 32px; }
}

/* --------------------------------------------------------------------------
   7. Hero (S2 + S2a)
   -------------------------------------------------------------------------- */
.ns-hero {
    position: relative;
    min-height: 80svh;
    display: flex;
    flex-direction: column;
    background: #000;
    overflow: hidden;
}

.ns-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    background-color: #0a0a14;
    display: block;
}


/* ==========================================================================
   HP Hero slideshow gallery (ns-hero__slideshow)
   Same fade pattern as service hero — 1 slide visible at a time.
   ========================================================================== */
.ns-hero__slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ns-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.ns-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.ns-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}
.ns-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.65) 75%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* H1 — angled, behind diagonal block */
.ns-hero__title-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 80%;
    z-index: 2;
    text-align: center;
    transform: translateY(-50%) rotate(-7deg);
    transform-origin: center center;
    white-space: nowrap;
}

.ns-hero__title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 86px);
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    display: flex;
    justify-content: center;
}

/* Per-character fill animation: transparent → white → transparent */
.ns-hero__title-char {
    display: inline-block;
    color: transparent;
    animation: hero-char-fill 5s ease-in-out infinite;
}

@keyframes hero-char-fill {
    0% {
        color: transparent;
    }

    20% {
        color: rgba(255, 255, 255, 0.18);
    }

    55% {
        color: rgba(255, 255, 255, 0.18);
    }

    75% {
        color: transparent;
    }

    100% {
        color: transparent;
    }
}

/* Diagonal block: subtitle → band → badge */
.ns-hero__diagonal-block {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 50%;
    z-index: 3;
    transform: rotate(-7deg);
    transform-origin: center center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 1. Subtitle */
.ns-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text);
    margin: 0 0 10px;
    padding: 0 8%;
    white-space: nowrap;
}

/* 2. Single scrolling ticker band */
.ns-ticker-band {
    background: linear-gradient(to right,
            rgba(5, 5, 10, 0.95) 0%,
            rgba(7, 98, 181, 0.25) 40%,
            rgba(100, 210, 244, 0.10) 60%,
            rgba(5, 5, 10, 0.95) 100%);
    border-top: 1px solid rgba(100, 210, 244, 0.20);
    border-bottom: 1px solid rgba(100, 210, 244, 0.20);
    padding: 12px 0;
    overflow: hidden;
}

/* 3. Badge row */
.ns-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-body);
    white-space: nowrap;
    margin: 10px 0 0;
    padding: 0;
    align-self: flex-end;
    margin-right: 8%;
}

.ns-hero__badge-star {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 4. Scroll hint arrow */
.ns-hero__scroll-hint {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    animation: ns-bounce-hint 2s ease-in-out infinite;
}

@keyframes ns-bounce-hint {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Ticker track */
.ns-ticker__track {
    display: flex;
    width: max-content;
    animation: ns-marquee 50s linear infinite;
    white-space: nowrap;
}

.ns-ticker__item {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text);
    padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ns-ticker__item::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: rgba(100, 210, 244, 0.55);
    flex-shrink: 0;
}

@keyframes ns-marquee {
    from {
        transform: translateX(0)
    }

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

/* Hero responsive */
@media (max-width: 1024px) {
    .ns-hero { min-height: 70svh; }
    .ns-hero__title-wrap {
        top: 82%;
    }
}


@media (max-width: 768px) {
    .ns-hero { min-height: 60svh; }
    .ns-hero__title-wrap {
        top: 80%;
        transform: translateY(-50%) rotate(-4deg);
    }

    .ns-hero__title {
        font-size: clamp(36px, 10vw, 58px);
    }

    .ns-hero__diagonal-block {
        top: 50%;
        transform: rotate(-4deg);
        left: 0%;
        right: 0%;
    }

    .ns-hero__subtitle {
        font-size: clamp(14px, 4vw, 20px);
        padding: 0 5%;
    }

    .ns-hero__badge {
        align-self: flex-end;
    }

    .ns-ticker__item {
        font-size: 12px;
        padding-inline: 12px;
        gap: 12px;
    }
}

/* --------------------------------------------------------------------------
   8. Service Tabs (S3)
   -------------------------------------------------------------------------- */
.ns-service-tabs {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: visible;
}

.ns-service-tabs__arch-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.ns-service-tabs__arch {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 72px;
    height: 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ns-service-tabs__arch svg {
    animation: ns-arch-bounce 2s ease-in-out infinite;
}

@keyframes ns-arch-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

.ns-service-tabs__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.ns-tab-badge {
    flex: 1;
    padding: 18px 24px;
    font-family: var(--font-eyebrow);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.ns-tab-badge strong {
    color: var(--cyan) !important;
    font-weight: 700;
}

.ns-tab-badge+.ns-tab-badge {
    border-left: 1px solid var(--border);
}

@media (max-width: 480px) {
    .ns-service-tabs__inner {
        flex-direction: column;
        gap: 0;
    }

    .ns-tab-badge+.ns-tab-badge {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .ns-tab-badge {
        padding: 14px 16px;
    }
}

/* --------------------------------------------------------------------------
   9. About (S4)
   -------------------------------------------------------------------------- */
.ns-about {
    background-image: url('/wp-content/themes/newskin-child/assets/images/new-skin-laser-studio-about-bg.webp');
    background-size: cover;
    background-position: right center;
    background-color: #000;
    position: relative;
}

.ns-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    align-items: stretch;
}

.ns-about__image-col {
    overflow: hidden;
    position: relative;
    min-height: 400px;
    max-height: 700px;
}

.ns-about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ns-about__text-col {
    display: flex;
    align-items: center;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px);
}

.ns-about__text-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 520px;
    padding-right: 0px;
}

@media (max-width: 1600px) {
    .ns-about__text-inner {
        padding-right: clamp(20px, 15vw, 140px);
    }
}

@media (max-width: 1200px) {
    .ns-about__text-inner {
        padding-right: 15vw;
    }
}

.ns-about__awards {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    top: clamp(48px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.ns-about__award img {
    width: clamp(80px, 12vw, 150px);
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .ns-about__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ns-about__image-col {
        max-height: 250px;
        min-height: 200px;
    }
    .ns-about__text-col {
        padding: 40px 20px;
    }
    
    .ns-about__text-inner {
        padding-right: 0;
    }
    
    .ns-about__awards {
        position: relative;
        right: auto;
        top: auto;
        flex-direction: row;
        margin-bottom: 8px;
    }
}

/* --------------------------------------------------------------------------
   10. Services Grid (S5)
   -------------------------------------------------------------------------- */
#our-services {
    overflow-x: hidden;
    background: transparent !important;
}

.ns-services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.ns-services__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-end;
}

.ns-services__nav-btn {
    width: 46px; height: 46px;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.3s ease, color 0.3s ease, opacity 0.4s ease;
    flex-shrink: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.ns-services__nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: linear-gradient(to right, var(--brand-blue), var(--cyan));
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: -1;
}

.ns-services__nav-btn:hover::before {
    transform: scale(1);
}

.ns-services__nav-btn:hover {
    border-color: transparent;
    color: #fff;
}

.ns-services__nav-btn svg {
    position: relative;
    z-index: 1;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}

.ns-services__nav-btn.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.ns-services__view-all {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: border-color var(--transition), color var(--transition);
}

.ns-services__view-all:hover {
    color: var(--cyan) !important;
    border-color: var(--cyan);
}

.ns-services__swiper-wrap {
    padding-left: var(--gutter);
    overflow: hidden;
}

.ns-services-swiper {
    overflow: visible !important;
}

.ns-service-card {
    background: #0F0F11;
    border: 1px solid #221F1F;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ns-service-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-elevated);
    position: relative;
}

.ns-service-card__image::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    z-index: 1;
    pointer-events: none;
}

.ns-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    position: relative;
    z-index: 0;
    filter: brightness(0.9);
}

.ns-service-card:hover .ns-service-card__image img {
    transform: scale(1.07);
}

/* 2px gradient line: hidden → fills in on hover */
.ns-service-card__divider {
    height: 2px;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.35s ease;
    transform-origin: left center;
    flex-shrink: 0;
}

.ns-service-card:hover .ns-service-card__divider {
    transform: scaleX(1);
    opacity: 1;
}

.ns-services-swiper .swiper-wrapper { align-items: stretch; }
.ns-services-swiper .swiper-slide { height: auto; }
.ns-service-card { height: 100%; display: flex; flex-direction: column; }

.ns-service-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: var(--bg-card);
}

.ns-service-card__title {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.25s ease;
}

.ns-service-card:hover .ns-service-card__title {
    color: var(--cyan);
}

.ns-service-card__desc {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.6;
    flex: 1;
}

/* CTA: always in DOM, hidden until hover (no layout jump) */
.ns-service-card__cta {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
    pointer-events: none;
    text-decoration: none !important;
    margin-top: 4px;
}

.ns-service-card:hover .ns-service-card__cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   11. Melanin-Rich (S6)
   -------------------------------------------------------------------------- */
.ns-melanin__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.ns-melanin__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.ns-melanin__credential {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(100, 210, 244, 0.3);
    padding: 6px 14px;
    border-radius: 0;
    width: fit-content;
}

.ns-melanin__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ns-melanin-card {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #0F0F11;
    border: 1px solid #221F1F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    transition: border-color var(--transition), transform var(--transition);
}

.ns-melanin-card:hover {
    transform: translateY(-3px);
}

.ns-melanin-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 3;
}
.ns-melanin-card:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.ns-melanin-card__icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    z-index: 2;
    flex-shrink: 0;
}
.ns-melanin-card__icon-base,
.ns-melanin-card__icon-grad {
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    transition: opacity 0.35s ease;
}
.ns-melanin-card__icon-base { opacity: 1; }
.ns-melanin-card__icon-grad { opacity: 0; }
.ns-melanin-card:hover .ns-melanin-card__icon-base { opacity: 0; }
.ns-melanin-card:hover .ns-melanin-card__icon-grad { opacity: 1; }

.ns-melanin-card__title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-top: 4px;
}

.ns-melanin-card__tag {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64D2F4;
    background: rgba(100, 210, 244, 0.125);
    padding: 3px 12px;
    border-radius: 0;
    position: relative;
    z-index: 2;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .ns-melanin__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* --------------------------------------------------------------------------
   12. Stats Bar (S7)
   -------------------------------------------------------------------------- */
.ns-stats {
    background: transparent;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-block: 48px;
}

.ns-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ns-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.ns-stat__icon {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    overflow: visible;
}

.ns-stat__icon svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.ns-stat__text {
    display: flex;
    flex-direction: column;
}

.ns-stat__number {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 72px);
    font-weight: 800;
    line-height: 1;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--cyan);
}

.ns-stat__label {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

@media (max-width: 900px) {
    .ns-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .ns-stats__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   13. Partners (S8)
   -------------------------------------------------------------------------- */
#partners {
    background: transparent;
}

.ns-partners__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(32px, 5vw, 80px);
    margin-bottom: 48px;
}

.ns-partners__header-left {
    flex: 0 0 auto;
}

.ns-partners__header-right {
    flex: 1;
    max-width: 480px;
    padding-top: 8px;
}

.ns-partners__swiper-wrap {
    overflow: hidden;
}

.ns-partners-swiper {
    overflow: visible;
}

.ns-partner-logo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    width: 220px;
    min-height: 120px;
    max-height: 150px;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.ns-partner-logo:hover {
    opacity: 0.85;
}

.ns-partner-logo img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

.ns-partner-logo__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .ns-partners__header {
        flex-direction: column;
        gap: 24px;
    }
    .ns-partners__header-right {
        max-width: 100%;
    }
    .ns-partner-logo {
        width: 160px;
        min-height: 100px;
        padding: 16px 20px;
    }
}

/* --------------------------------------------------------------------------
   14. Memberships (S9)
   -------------------------------------------------------------------------- */
.ns-memberships__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(32px, 5vw, 80px);
    margin-bottom: 56px;
}

.ns-memberships__header-left {
    flex: 0 0 auto;
}

.ns-memberships__header-right {
    flex: 1;
    max-width: 480px;
    padding-top: 8px;
}

.ns-memberships__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 40px;
}

/* ── Card base ── */
.ns-membership-card {
    background: #0F0F11;
    border: 1px solid #221F1F;
    border-radius: 0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

/* Adjacent card borders collapse */
.ns-membership-card + .ns-membership-card {
    border-left: none;
}

/* ── Active / Hover state ── */
.ns-membership-card--featured,
.ns-membership-card:hover {
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(7, 98, 181, 0.14) 0%, rgba(100, 210, 244, 0.07) 100%);
    box-shadow: inset 0 0 0 1px var(--cyan);
    z-index: 1;
}

.ns-membership-card--featured + .ns-membership-card,
.ns-membership-card:hover + .ns-membership-card {
    border-left: none;
}

/* ── Featured badge ── */
.ns-membership-card__badge {
    display: inline-block;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    color: #fff;
    font-family: var(--font-eyebrow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 20px;
    align-self: flex-start;
}

/* ── Card header: icon + meta ── */
.ns-membership-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #221F1F;
}

.ns-membership-card--featured .ns-membership-card__header,
.ns-membership-card:hover .ns-membership-card__header {
    border-bottom-color: rgba(100, 210, 244, 0.2);
}

/* ── Sparkle icon (dual-layer: gray ↔ gradient) ── */
.ns-membership-card__icon {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ns-membership-card__icon-base,
.ns-membership-card__icon-grad {
    position: absolute;
    top: 0; left: 0;
    width: 48px; height: 48px;
    transition: opacity 0.35s ease;
}

.ns-membership-card__icon-base { opacity: 1; }
.ns-membership-card__icon-grad { opacity: 0; }

.ns-membership-card--featured .ns-membership-card__icon-base,
.ns-membership-card:hover .ns-membership-card__icon-base { opacity: 0; }
.ns-membership-card--featured .ns-membership-card__icon-grad,
.ns-membership-card:hover .ns-membership-card__icon-grad { opacity: 1; }

/* ── Tier / name ── */
.ns-membership-card__meta {
    display: flex;
    flex-direction: column;
}

.ns-membership-card__tier {
    font-family: var(--font-eyebrow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    padding: 4px 10px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 4px;
    transition: background 0.35s ease, color 0.35s ease;
}

.ns-membership-card--featured .ns-membership-card__tier,
.ns-membership-card:hover .ns-membership-card__tier {
    background: var(--brand-blue);
    color: #fff;
}

.ns-membership-card__name {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text);
}

/* ── Description ── */
.ns-membership-card__desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #221F1F;
}

.ns-membership-card--featured .ns-membership-card__desc,
.ns-membership-card:hover .ns-membership-card__desc {
    border-bottom-color: rgba(100, 210, 244, 0.2);
}

/* ── Feature list ── */
.ns-membership-card__features {
    list-style: none;
    padding: 0; margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ns-membership-card__feature {
    font-size: 16px;
    color: var(--text-body);
    padding: 13px 0;
    border-bottom: 1px solid #221F1F;
    line-height: 1.45;
}

.ns-membership-card__feature::before {
    display: none;
}

.ns-membership-card--featured .ns-membership-card__feature,
.ns-membership-card:hover .ns-membership-card__feature {
    color: var(--text);
    border-bottom-color: rgba(100, 210, 244, 0.15);
}

/* ── CTA button ── */
.ns-membership-card .ns-btn {
    margin-top: 24px;
    align-self: flex-start;
}

/* Featured/hover card: show gradient fill immediately */
.ns-membership-card--featured .ns-btn::before,
.ns-membership-card:hover .ns-btn::before {
    transform: translateX(0) skewX(-15deg);
}

.ns-membership-card--featured .ns-btn,
.ns-membership-card:hover .ns-btn {
    border-color: var(--cyan);
    color: #fff !important;
}

/* ── CTA strip ── */
.ns-memberships__cta-strip {
    background: rgba(100, 210, 244, 0.10);
    border: 1px solid rgba(100, 210, 244, 0.20);
    border-radius: 0;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 0;
}

.ns-memberships__cta-strip p {
    font-size: 16px;
    color: var(--text);
    max-width: 560px;
    margin: 0;
}

@media (max-width: 1024px) {
    .ns-memberships__header {
        flex-direction: column;
        gap: 24px;
    }
    .ns-memberships__header-right { max-width: 100%; }
}

@media (max-width: 900px) {
    .ns-memberships__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ns-membership-card + .ns-membership-card {
        border-left: 1px solid #221F1F;
        border-top: none;
    }
    .ns-memberships__cta-strip {
        flex-direction: column;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   15. Team Spotlight (S10)
   -------------------------------------------------------------------------- */
.ns-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.ns-team__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.ns-team__photo-wrap {
    overflow: hidden;
    border-radius: 0;
    background: var(--bg-elevated);
}

.ns-team__photo-wrap:first-child {
    margin-bottom: 40px;
}

.ns-team__photo-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: brightness(0.75);
}

.ns-team__photo-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
}

.ns-team__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .ns-team__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ns-team__photos {
        order: 2;
    }

    .ns-team__text {
        order: 1;
    }
}

/* --------------------------------------------------------------------------
   16. Testimonials (S11)
   -------------------------------------------------------------------------- */
.ns-testimonials__header {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ns-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 48px;
}

.ns-testimonial-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0F0F11;
    border: 1px solid #221F1F;
    border-radius: 0;
    cursor: pointer;
    transition: border-color 0.35s ease;
}

.ns-testimonial-card:hover {
    border-color: var(--cyan);
    z-index: 1;
}

.ns-testimonial-card__thumb {
    position: absolute;
    inset: 0;
}

.ns-testimonial-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.65);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.ns-testimonial-card:hover .ns-testimonial-card__thumb img {
    filter: brightness(0.8);
    transform: scale(1.03);
}

/* Play button: square, centered */
.ns-testimonial-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
}

.ns-testimonial-card:hover .ns-testimonial-card__play {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.95);
}

.ns-testimonial-card__play::after {
    content: '';
    width: 0; height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

/* Info overlay at bottom */
.ns-testimonial-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.ns-testimonial-card__avatar {
    width: 38px;
    height: 38px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ns-testimonial-card__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ns-testimonial-card__name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ns-testimonial-card__treatment {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ns-testimonials__cta {
    text-align: center;
}

@media (max-width: 900px) {
    .ns-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .ns-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    .ns-testimonial-card {
        aspect-ratio: 2/3;
    }
}

/* --------------------------------------------------------------------------
   17. Men's Packages (S12)
   -------------------------------------------------------------------------- */
.ns-mens__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ns-mens-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* Card: mirrors ns-melanin-card style */
.ns-mens-card {
    background: #0F0F11;
    border: 1px solid #221F1F;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 24px;
    transition: border-color var(--transition), transform var(--transition);
}

.ns-mens-card:hover {
    transform: translateY(-3px);
    z-index: 1;
}

/* Gradient line at bottom (mirrors melanin) */
.ns-mens-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 3;
}

.ns-mens-card:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* Sparkle icon: dual-layer (matches melanin) */
.ns-mens-card__icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.ns-mens-card__icon-base,
.ns-mens-card__icon-grad {
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    transition: opacity 0.35s ease;
}

.ns-mens-card__icon-base { opacity: 1; }
.ns-mens-card__icon-grad { opacity: 0; }

.ns-mens-card:hover .ns-mens-card__icon-base { opacity: 0; }
.ns-mens-card:hover .ns-mens-card__icon-grad { opacity: 1; }

.ns-mens-card__name {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 8px;
}

.ns-mens-card__subtitle {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.ns-mens-card__age {
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    background: rgba(100, 210, 244, 0.125);
    padding: 4px 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* CTA banner */
.ns-mens__cta-banner {
    background: rgba(100, 210, 244, 0.07);
    border: 1px solid rgba(100, 210, 244, 0.15);
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 0;
}

.ns-mens__cta-banner p {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin: 0;
}

@media (max-width: 900px) {
    .ns-mens-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {
    .ns-mens__cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .ns-mens__cta-banner .ns-btn {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .ns-mens-cards {
        grid-template-columns: 1fr;
    }

}

/* --------------------------------------------------------------------------
   18. Before & After (S13)
   -------------------------------------------------------------------------- */

/* Full-width layout — text col has its own gutter padding, swiper bleeds to right */
.ns-before-after__layout {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
}

.ns-before-after__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 3vw, 40px) clamp(48px, 6vw, 80px) var(--gutter);
}

.ns-before-after__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Force BOOK NOW to the same 46px height as nav buttons */
.ns-before-after__controls .ns-btn {
    height: 46px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Nav buttons — 46px to match .ns-btn height */
.ns-ba-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, opacity 0.4s ease;
    flex-shrink: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.ns-ba-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--brand-blue), var(--cyan));
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: -1;
}

.ns-ba-nav-btn:hover::before { transform: scale(1); }
.ns-ba-nav-btn:hover { border-color: transparent; }
.ns-ba-nav-btn.swiper-button-disabled { opacity: 0.3; pointer-events: none; }

.ns-ba-nav-btn svg {
    position: relative;
    z-index: 1;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}

/* Swiper bleeds to right viewport edge */
.ns-ba-swiper {
    overflow: hidden;
    width: 100%;
    align-self: center;
}

.ns-ba-swiper .swiper-wrapper {
    align-items: stretch;
}

.ns-ba-swiper .swiper-slide {
    height: auto;
}

/* Dashed-border photo pair (from reference image) */
.ns-ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    width: 100%;
    min-width: 0;
    height: 100%;
}

.ns-ba-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    min-width: 0;
}

.ns-ba-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .ns-before-after__layout {
        grid-template-columns: 1fr;
    }
    .ns-before-after__text {
        padding: 40px var(--gutter) 24px;
    }
    .ns-before-after__controls {
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------------------------------
   19. FAQ (S14)
   -------------------------------------------------------------------------- */
.ns-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto;
}

.ns-faq-item {
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid #3B3535;
}

.ns-faq-item__trigger {
    width: 100%;
    background: #0F0F11;
    border: none;
    padding: 0 24px 0 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
    min-height: 56px;
}

.ns-faq-item__trigger:hover {
    background: var(--bg-elevated);
}

/* Blue number square — full row height, solid brand-blue */
.ns-faq-item__num {
    width: 56px;
    align-self: stretch;
    background: var(--brand-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
    margin-right: 20px;
}

.ns-faq-item__question {
    font-size: 16px;
    font-weight: 500;
    color: var(--text) !important;
    flex: 1;
    line-height: 1.45;
    align-self: center;
    padding: 18px 0;
}

/* Icon: bare + SVG, no border box */
.ns-faq-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    color: var(--text-muted);
}

.ns-faq__plus-icon {
    transition: transform 0.35s ease;
    flex-shrink: 0;
    color: #fff;
}

/* Rotate + to × on open — only the SVG rotates, not its container */
.ns-faq-item.open .ns-faq__plus-icon {
    transform: rotate(45deg);
}

.ns-faq-item__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.ns-faq-item.open .ns-faq-item__body {
    max-height: 400px;
}

.ns-faq-item__answer {
    padding: 24px 24px 24px 76px !important;
    font-size: clamp(16px, 1.4vw, 18px) !important;
    color: var(--text-muted);
    line-height: 1.5;
    background: var(--bg-card);
}

/* --------------------------------------------------------------------------
   20. Experts / Specialists (S15)
   -------------------------------------------------------------------------- */
.ns-experts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.ns-experts__image-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.ns-expert-card {
    display: flex;
    flex-direction: column;
}

.ns-expert-card--title-above .ns-expert-card__name {
    order: -1;
    padding: 0 0 16px;
}

.ns-expert-card__photo {
    width: 100%;
    display: block;
    object-fit: cover;
    border: 1px solid #221F1F;
    filter: grayscale(100%) brightness(0.75);
    transition: filter 0.5s ease, border-color 0.35s ease;
}

.ns-expert-card__photo { aspect-ratio: 3/4; }

.ns-expert-card:hover .ns-expert-card__photo {
    filter: grayscale(0%) brightness(1);
    border-color: var(--cyan);
}

.ns-expert-card__name {
    font-size: clamp(16px, 1.8vw, 32px);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    padding: 16px 0 0;
    transition: color 0.35s ease;
}

.ns-expert-card:hover .ns-expert-card__name {
    color: var(--cyan);
}

.ns-experts__text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.ns-experts__text-col .ns-section-heading { margin-bottom: 0; }
.ns-experts__text-col .ns-body-text       { margin-bottom: 0; }

@media (max-width: 900px) {
    .ns-experts__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ns-experts__image-col {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .ns-expert-card__photo { aspect-ratio: 3/4; }
}

/* --------------------------------------------------------------------------
   21. Booking CTA (S16)
   -------------------------------------------------------------------------- */
.ns-booking-cta {
    background: var(--bg-card);
    overflow: hidden;
}

.ns-booking-cta__wrap {
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

.ns-booking-cta__text {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px) var(--gutter);
    align-self: center;
}

.ns-booking-cta__contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.ns-booking-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    color: inherit;
    position: relative;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.ns-booking-cta__contact-item:hover {
    background: linear-gradient(to right, var(--brand-blue), var(--cyan));
    border-color: transparent;
}

.ns-booking-cta__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #212227;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: background 0.35s ease, color 0.35s ease;
}

.ns-booking-cta__contact-item:hover .ns-booking-cta__icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.ns-booking-cta__contact-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 3px;
    line-height: 1.2;
    transition: color 0.35s ease;
}

.ns-booking-cta__contact-item:hover strong {
    color: #fff;
}

.ns-booking-cta__contact-item span {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.35s ease;
}

.ns-booking-cta__contact-item:hover span {
    color: rgba(255,255,255,0.85);
}

.ns-booking-cta__image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

.ns-booking-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .ns-booking-cta__wrap {
        flex-direction: column;
    }

    .ns-booking-cta__text {
        flex: none;
        padding: 56px var(--gutter);
    }

    .ns-booking-cta__image {
        height: 400px;
        padding: 40px var(--gutter);
    }

    .ns-booking-cta__contacts {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   22. Contact Form (S17)
   -------------------------------------------------------------------------- */
.ns-contact__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    position: relative;
    z-index: 2;
}

/* SVG accent shapes */
.ns-contact__shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.ns-contact__shape--desktop {
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    display: block;
}

.ns-contact__shape--mobile {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    display: none;
}

@media (max-width: 900px) {
    .ns-contact__shape--desktop { display: none; }
    .ns-contact__shape--mobile  { display: block; }
}

/* Form */
.wpcf7 .wpcf7-form,
.ns-contact__form-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ns-contact__form-inner iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 20px;
    background: transparent;
}

.ns-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(20px, 4vw, 48px);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.ns-form-field {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #3B3535 !important;
    border-radius: 0;
    padding: 12px 0 !important;
    font-family: var(--font-body) !important;
    font-size: 14px;
    color: #B9B9B9 !important;
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.ns-form-field:focus {
    border-bottom-color: var(--cyan) !important;
}

.wpcf7 textarea,
.ns-form-field[rows] {
    resize: vertical;
    min-height: 100px;
}

.ns-form-field::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #B9B9B9;
    opacity: 1;
}

.wpcf7 input[type="submit"],
.ns-btn.ns-btn--primary {
    background: var(--text) !important;
    color: var(--bg) !important;
    border: 1px solid var(--text) !important;
    font-family: var(--font-body) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.wpcf7 input[type="submit"]:hover {
    background: transparent !important;
    color: var(--text) !important;
}

/* Recaptcha + consent */
.ns-contact__recaptcha {
    margin-top: 4px;
}

.ns-recaptcha-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    min-width: 220px;
}

.ns-recaptcha-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4285f4;
    flex-shrink: 0;
}

.ns-contact__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.ns-contact__consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--cyan);
}

.ns-contact__consent span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
}

.wpcf7-spinner {
    display: none !important;
}

/* Info card */
.ns-contact__info-card {
    background: #221F1F;
    border-radius: 0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: relative;
    overflow: visible;
}

.ns-contact__corner-square {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: #64D2F4;
    display: block;
    z-index: 0;
}

.ns-contact__info-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
}

.ns-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.ns-contact__info-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #64D2F4;
    margin-top: 2px;
}

.ns-contact__info-item a,
.ns-contact__info-item span {
    font-size: 18px;
    color: #B9B9B9;
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition);
}

.ns-contact__info-item a:hover {
    color: var(--cyan);
}

@media (max-width: 900px) {
    .ns-contact__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

    .ns-contact__corner-square {
        top: -20px;
        left: -20px;
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */

.ns-footer {
    background: var(--bg-card) !important;
}

/* Map row */
.ns-footer__map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    line-height: 0;
}

.ns-footer__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Row 1: 3-column top ── */
.ns-footer__top {
    display: grid;
    grid-template-columns: 1.1fr 2fr 0.9fr;
    gap: clamp(40px, 5vw, 80px);
    padding-block: 72px;
    align-items: start;
}

/* Brand col */
.ns-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ns-footer__logo {
    display: inline-block;
    text-decoration: none;
}

.ns-footer__logo img {
    display: block;
    max-width: 160px;
    height: auto;
}

.ns-footer__tagline {
    font-size: 20px;
    font-weight: 500;
    color: #B9B9B9;
    line-height: 1.6;
    max-width: 300px;
}

/* Nav 3-sub-columns */
.ns-footer__nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 3vw, 48px);
}

.ns-footer__nav-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 0;
    padding-bottom: 12px;
}

.ns-footer__nav-col h4::after {
    content: '';
    display: block;
    width: 75%;
    height: 2px;
    background: rgba(255, 255, 255, 0.20);
    margin-top: 12px;
}

.ns-footer__nav-col ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ns-footer__nav-col ul li a {
    font-size: 20px;
    font-weight: 500;
    color: #B9B9B9;
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
}

.ns-footer__nav-col ul li a:hover {
    color: var(--cyan);
}

/* Hours table */
.ns-hours-table {
    border-collapse: collapse;
    width: 100%;
}

.ns-hours-table tr td {
    font-size: 20px;
    font-weight: 500;
    color: #B9B9B9;
    padding: 4px 0;
    line-height: 1.5;
}

.ns-hours-table tr td:first-child {
    font-weight: 500;
    color: #B9B9B9;
    padding-right: 16px;
    white-space: nowrap;
}

/* Badge col */
.ns-footer__badge-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.ns-footer__badge-img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
}

/* ── Row 2: 4-icon contacts ── */
.ns-footer__contacts-row {
    padding-block: 32px;
}

.ns-footer__contacts-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid #221F1F;
    border-bottom: 1px solid #221F1F;
    padding-block: 32px;
    padding-inline: 0;
}

.ns-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.ns-footer__contact-item:hover {
    background: rgba(100, 210, 244, 0.06);
    border-color: rgba(100, 210, 244, 0.2);
}

.ns-footer__contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #221F1F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.ns-footer__contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 3px;
}

.ns-footer__contact-item span {
    font-size: 20px;
    font-weight: 500;
    color: #B9B9B9;
    line-height: 1.4;
}

/* ── Row 3: copyright bar ── */
.ns-footer__bottom {
    padding-block: 24px;
}

.ns-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ns-footer__copyright {
    font-size: 16px;
    font-weight: 400;
    color: #B9B9B9;
    line-height: 1.5;
}

.ns-footer__attribution {
    font-size: 16px;
    font-weight: 400;
    color: #B9B9B9;
    text-align: right;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.ns-footer__attribution a {
    color: #B9B9B9;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.ns-footer__attribution a:hover {
    color: var(--cyan);
}

.ns-footer__attribution-logo {
    display: inline-block;
    height: 28px;
    width: auto;
    vertical-align: middle;
    opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ns-footer__top {
        grid-template-columns: 1fr 2fr;
    }

    .ns-footer__badge-col {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .ns-footer__contacts-inner {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 40px;
    }
}

@media (max-width: 640px) {
    .ns-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ns-footer__nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ns-footer__contacts-inner {
        grid-template-columns: 1fr;
        padding-inline: 20px;
    }

    .ns-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ns-footer__attribution {
        text-align: left;
    }
}


/* --------------------------------------------------------------------------
   24. Inner pages
   -------------------------------------------------------------------------- */
.ns-page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.ns-page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    font-style: italic;
    color: var(--text);
}

.ns-page-content {
    padding-block: var(--section-py);
    background: var(--bg);
    color: var(--text);
}

/* --------------------------------------------------------------------------
   25. AOS + misc
   -------------------------------------------------------------------------- */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

@media (max-width: 768px) {
    :root {
        --section-py: clamp(48px, 10vw, 80px);
    }
}
/* --------------------------------------------------------------------------
   26. Meet the Specialists — Slider Section
   -------------------------------------------------------------------------- */
.ns-meet-specialists__header {
    text-align: center;
    margin-bottom: 56px;
}

.ns-meet-specialists__intro {
    max-width: 660px;
    margin: 16px auto 0;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
}

.ns-specialists-swiper-wrap {
    overflow: hidden;
}

.ns-specialists-swiper {
    overflow: visible;
}

.ns-specialist-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    height: 360px;
    display: flex;
    flex-direction: column;
}

.ns-specialist-card__bg {
    width: 100%;
    height: 62%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    transition: transform 0.4s ease;
}

.ns-specialist-card__foot {
    flex: 1;
    background: var(--bg-card);
    padding: 40px 16px 18px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ns-specialist-card__avatar {
    position: absolute;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-card);
    background: var(--bg-elevated);
    transition: border-color 0.4s ease, background 0.4s ease;
}

.ns-specialist-card__name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.04em;
    margin-bottom: 3px;
    transition: transform 0.4s ease;
    transform-origin: left center;
}

.ns-specialist-card__role {
    font-family: var(--font-eyebrow);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
    transform-origin: left center;
}

.ns-specialist-card:hover .ns-specialist-card__bg {
    transform: scale(1.05);
}

.ns-specialist-card:hover .ns-specialist-card__avatar {
    border-color: transparent;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%) border-box;
}

.ns-specialist-card:hover .ns-specialist-card__name,
.ns-specialist-card:hover .ns-specialist-card__role {
    transform: scale(1.05);
}



.ns-specialists-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.ns-specialists-nav__btn {
    width: 46px;
    height: 46px;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: border-color var(--transition);
}

.ns-specialists-nav__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--brand-blue), var(--cyan));
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: -1;
}

.ns-specialists-nav__btn:hover::before {
    transform: scale(1);
}

.ns-specialists-nav__btn:hover {
    border-color: transparent;
}

.ns-specialists-nav__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

/* Lift icon above ::before gradient layer */
.ns-specialists-nav__btn svg {
    position: relative;
    z-index: 1;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    width: 24px;
    height: 24px;
}

.ns-meet-specialists__cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .ns-specialist-card {
        height: 320px;
    }

    .ns-meet-specialists__intro {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ns-specialist-card {
        height: 290px;
    }
}

/* --------------------------------------------------------------------------
   27. Our Services Page — Static 2×3 Grid
   -------------------------------------------------------------------------- */
.ns-svcpage-section {
    background: var(--bg);
    padding: var(--section-py) 80px;
}

.ns-svcpage-inner {
    max-width: 1280px;
    margin-inline: auto;
}

.ns-svcpage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ns-svcpage-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ns-svcpage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(100, 210, 244, 0.12);
}

.ns-svcpage-card:focus-within {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.ns-svcpage-card__image {
    height: 260px;
    overflow: hidden;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.ns-svcpage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.ns-svcpage-card:hover .ns-svcpage-card__image img {
    transform: scale(1.04);
}

.ns-svcpage-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 178px;
    background: var(--bg-card);
}

.ns-svcpage-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.ns-svcpage-card__divider {
    border: none;
    border-top: 1px solid color-mix(in srgb, var(--cyan) 30%, transparent);
    margin: 0;
}

.ns-svcpage-card__copy {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-body);
    flex: 1;
}

.ns-svcpage-card__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-decoration: none !important;
    transition: color var(--transition);
}

.ns-svcpage-card__cta svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.ns-svcpage-card:hover .ns-svcpage-card__cta {
    color: var(--cyan) !important;
}

.ns-svcpage-card:hover .ns-svcpage-card__cta svg {
    transform: translateX(4px);
}

@media (max-width: 1279px) {
    .ns-svcpage-section {
        padding-inline: 24px;
    }

    .ns-svcpage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 833px) {
    .ns-svcpage-section {
        padding-inline: 16px;
    }

    .ns-svcpage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ns-svcpage-card__body {
        min-height: auto;
    }
}

/* ==========================================================================
   Single Service Page — Unique Blocks   v2.3.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   Service Page — Additional Tokens
   -------------------------------------------------------------------------- */
:root {
    --svc-gap: 40px;
    --svc-col-gap: 30px;
    --svc-card-gap: 14px;
}

/* --------------------------------------------------------------------------
   Block: Service Hero  (ns-svc-hero)
   -------------------------------------------------------------------------- */
.ns-svc-hero {
    background: var(--bg);
    padding: var(--section-py) var(--gutter);
}
.ns-svc-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 625px 1fr;
    gap: var(--svc-col-gap);
    align-items: start;
}
.ns-svc-hero__gallery {
    display: grid;
    grid-template-columns: 298px 298px;
    grid-template-rows: 259.5px 259.5px;
    gap: 10px;
    position: relative;
}
.ns-svc-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ns-svc-hero__img--main {
    grid-row: 1 / 3;
}
.ns-svc-hero__img--accent {
    position: absolute;
    bottom: -20px;
    left: 160px;
    width: 188px;
    height: 188px;
    border: 3px solid var(--bg);
    object-fit: cover;
}
.ns-svc-hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-svc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
}
.ns-svc-hero__description p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1em;
    line-height: 1.7;
}
.ns-svc-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 51px;
    background: var(--cyan);
    color: var(--bg) !important;
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--cyan);
    transition: background var(--transition), color var(--transition);
    text-decoration: none !important;
}
.ns-svc-hero__cta:hover {
    background: transparent;
    color: var(--cyan) !important;
}

/* --------------------------------------------------------------------------
   Block: Treatment Process  (ns-treatment)
   -------------------------------------------------------------------------- */
.ns-treatment {
    background: var(--text);
    padding: var(--section-py) var(--gutter);
}
.ns-treatment__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-treatment__header {
    max-width: 915px;
}
.ns-treatment__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 12px;
}
.ns-treatment__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bg-icon);
    line-height: 1.65;
}
.ns-treatment__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 407px));
    gap: var(--svc-col-gap);
}
.ns-treatment__step {
    display: flex;
    flex-direction: column;
    gap: var(--svc-card-gap);
}
.ns-treatment__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-elevated);
    color: var(--cyan);
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 1rem;
}
.ns-treatment__step-title {
    font-family: var(--font-eyebrow);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bg);
}
.ns-treatment__step-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--bg-icon);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Block: Why Choose Us  (ns-why-us)
   -------------------------------------------------------------------------- */
.ns-why-us {
    background: var(--bg);
    padding: var(--section-py) var(--gutter);
}
.ns-why-us__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-why-us__header {
    max-width: 462px;
}
.ns-why-us__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.ns-why-us__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.65;
}
.ns-why-us__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--svc-col-gap);
}
.ns-why-us__feature {
    display: flex;
    flex-direction: column;
    gap: var(--svc-card-gap);
}
.ns-why-us__feature-title {
    font-family: var(--font-eyebrow);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
}
.ns-why-us__feature-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Block: Pricing Table  (ns-pricing)
   -------------------------------------------------------------------------- */
.ns-pricing {
    background: var(--text);
    padding: var(--section-py) var(--gutter);
}
.ns-pricing__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-pricing__header {
    max-width: 915px;
}
.ns-pricing__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 12px;
}
.ns-pricing__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bg-icon);
    line-height: 1.65;
}
.ns-pricing__list {
    width: min(625px, 100%);
    display: flex;
    flex-direction: column;
}
.ns-pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 53px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}
.ns-pricing__row:nth-child(odd) {
    background: var(--bg-elevated);
    color: var(--text);
}
.ns-pricing__row:nth-child(even) {
    background: transparent;
    color: var(--bg);
}
.ns-pricing__row:hover {
    background: var(--bg-card);
    color: var(--text);
}
.ns-pricing__name {
    font-weight: 500;
}
.ns-pricing__price {
    font-weight: 700;
    color: var(--cyan);
}

/* --------------------------------------------------------------------------
   Block: Results Gallery  (ns-results)
   -------------------------------------------------------------------------- */
.ns-results {
    background: var(--bg);
    padding: var(--section-py) var(--gutter);
}
.ns-results__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-results__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 25px;
    background: var(--bg-elevated);
    color: var(--cyan);
    font-family: var(--font-eyebrow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.ns-results__lead {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ns-results__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text);
}
.ns-results__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-body);
}
.ns-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 378px);
    gap: var(--svc-col-gap);
}
.ns-results__tile {
    width: 378px;
    height: 378px;
    overflow: hidden;
}
.ns-results__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.ns-results__tile:hover img {
    transform: scale(1.04);
}
.ns-results__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 51px;
    border: 2px solid var(--cyan);
    color: var(--cyan) !important;
    background: transparent;
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background var(--transition), color var(--transition);
}
.ns-results__cta:hover {
    background: var(--cyan);
    color: var(--bg) !important;
}

/* --------------------------------------------------------------------------
   Block: Service FAQ  (ns-svc-faq)
   -------------------------------------------------------------------------- */
.ns-svc-faq {
    background: var(--bg);
    padding: var(--section-py) var(--gutter);
}
.ns-svc-faq__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--svc-gap);
}
.ns-svc-faq__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text);
}
.ns-svc-faq__list {
    display: flex;
    flex-direction: column;
}
.ns-svc-faq__item {
    border-bottom: 1px solid rgba(148, 158, 161, 0.3);
}
.ns-svc-faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.ns-svc-faq__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--bg-elevated);
    color: var(--cyan);
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}
.ns-svc-faq__question-text {
    font-family: var(--font-eyebrow);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    flex: 1;
    transition: color var(--transition);
}
.ns-svc-faq__answer {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-body);
    padding: 0 0 20px 70px;
    line-height: 1.7;
    display: none;
}
/* FAQ hover */
.ns-svc-faq__question:hover .ns-svc-faq__number {
    background: var(--cyan);
    color: var(--bg);
}
/* FAQ open state */
.ns-svc-faq__item.is-open .ns-svc-faq__answer {
    display: block;
}
.ns-svc-faq__item.is-open .ns-svc-faq__number {
    background: var(--cyan);
    color: var(--bg);
}
.ns-svc-faq__item.is-open .ns-svc-faq__question-text {
    color: var(--cyan);
}

/* --------------------------------------------------------------------------
   Block: Map  (ns-map)
   -------------------------------------------------------------------------- */
.ns-map {
    width: 100%;
    line-height: 0;
}
.ns-map__embed {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   Service Page — Responsive: 1024px (tablet)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .ns-svc-hero__inner {
        grid-template-columns: 1fr;
    }
    .ns-svc-hero__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .ns-svc-hero__img--accent {
        left: auto;
        right: 10px;
        bottom: -16px;
        width: 140px;
        height: 140px;
    }
    .ns-results__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ns-results__tile {
        width: 100%;
        height: 300px;
    }
}

/* --------------------------------------------------------------------------
   Service Page — Responsive: 768px (mobile landscape)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .ns-svc-hero__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
    }
    .ns-treatment__steps {
        grid-template-columns: 1fr;
    }
    .ns-why-us__features {
        grid-template-columns: 1fr;
    }
    .ns-pricing__list {
        width: 100%;
    }
    .ns-results__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ns-results__tile {
        width: 100%;
        height: 250px;
    }
    .ns-svc-faq__answer {
        padding-left: 0;
    }
}

/* --------------------------------------------------------------------------
   Service Page — Responsive: 375px (mobile portrait)
   -------------------------------------------------------------------------- */
@media (max-width: 375px) {
    .ns-svc-hero__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ns-svc-hero__img--main {
        grid-row: auto;
    }
    .ns-svc-hero__img--accent {
        display: none;
    }
    .ns-svc-hero__cta {
        width: 100%;
    }
    .ns-results__grid {
        grid-template-columns: 1fr;
    }
    .ns-results__tile {
        width: 100%;
        height: 220px;
    }
    .ns-svc-faq__question {
        gap: 12px;
    }
    .ns-svc-faq__number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Condition Page — Unique Sections  (added v2.3.0)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Condition Banner
   -------------------------------------------------------------------------- */
.ns-condition-banner {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ns-condition-banner__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.ns-condition-banner__inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 160px var(--gutter) var(--section-py);
    gap: 60px;
}
.ns-condition-banner__content {
    width: 622px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ns-condition-banner__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
    text-align: left;
}
.ns-condition-banner__intro {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--text-body);
    text-align: center;
}

/* --------------------------------------------------------------------------
   Condition About
   -------------------------------------------------------------------------- */
.ns-condition-about {
    width: 100%;
}
.ns-condition-about__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: var(--section-py) var(--gutter);
}
.ns-condition-about__image {
    width: 625px;
    height: 492px;
    flex-shrink: 0;
    object-fit: cover;
}
.ns-condition-about__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ns-condition-about__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ns-condition-about__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid rgba(115,115,115,0.6);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
}
.ns-condition-about__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
}
.ns-condition-about__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ns-condition-about__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--text-body);
}
.ns-condition-about__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 51px;
    background: var(--cyan);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--cyan);
    transition: background var(--transition), color var(--transition);
}
.ns-condition-about__cta:hover {
    background: transparent;
    color: var(--cyan);
}

/* --------------------------------------------------------------------------
   Available Treatments
   -------------------------------------------------------------------------- */
.ns-available-treatments {
    padding: var(--section-py) var(--gutter);
}
.ns-available-treatments__inner {
    max-width: 1095px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ns-available-treatments__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
}
.ns-available-treatments__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.ns-available-treatments__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    padding: 20px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--bg-elevated);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition);
}
.ns-available-treatments__pill:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* --------------------------------------------------------------------------
   Condition Treatment — Triple Column
   -------------------------------------------------------------------------- */
.ns-condition-treatment {
    background: var(--bg-card);
    display: flex;
    flex-direction: row;
    width: 100%;
}
.ns-condition-treatment__image {
    width: 480px;
    height: 666px;
    flex-shrink: 0;
    object-fit: cover;
}
.ns-condition-treatment__panel {
    flex: 1;
    min-width: 0;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
}
.ns-condition-treatment__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.ns-condition-treatment__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid rgba(115,115,115,0.6);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
}
.ns-condition-treatment__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
    text-align: center;
}
.ns-condition-treatment__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ns-condition-treatment__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--text-body);
}
.ns-condition-treatment__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 51px;
    align-self: center;
    background: var(--cyan);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--cyan);
    transition: background var(--transition), color var(--transition);
}
.ns-condition-treatment__cta:hover {
    background: transparent;
    color: var(--cyan);
}

/* --------------------------------------------------------------------------
   Condition Benefits
   -------------------------------------------------------------------------- */
.ns-condition-benefits {
    padding: var(--section-py) var(--gutter);
}
.ns-condition-benefits__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.ns-condition-benefits__header {
    max-width: 744px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.ns-condition-benefits__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid rgba(115,115,115,0.6);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
}
.ns-condition-benefits__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
    text-align: center;
}
.ns-condition-benefits__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.ns-condition-benefits__card {
    width: 420px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 30px;
}
.ns-condition-benefits__card-icon {
    width: 82px;
    height: 82px;
    object-fit: contain;
}
.ns-condition-benefits__card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: var(--text);
    text-align: left;
    width: 100%;
}
.ns-condition-benefits__card-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--text-body);
    text-align: center;
}

/* --------------------------------------------------------------------------
   Condition Results
   -------------------------------------------------------------------------- */
.ns-condition-results {
    position: relative;
    background-size: cover;
    background-position: center;
}
.ns-condition-results__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: var(--section-py) var(--gutter);
}
.ns-condition-results__content {
    width: 625px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ns-condition-results__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ns-condition-results__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid rgba(115,115,115,0.6);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
}
.ns-condition-results__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 50px;
    color: var(--text);
}
.ns-condition-results__body p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--text-body);
}
.ns-condition-results__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 51px;
    background: var(--cyan);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--cyan);
    transition: background var(--transition), color var(--transition);
}
.ns-condition-results__cta:hover {
    background: transparent;
    color: var(--cyan);
}
.ns-condition-results__gallery {
    flex: 1;
    height: 406px;
    display: flex;
    gap: 30px;
}
.ns-condition-results__photo {
    flex: 1;
    height: 406px;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Condition Page — Mobile (≤768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .ns-condition-banner {
        height: auto;
        min-height: 400px;
    }
    .ns-condition-banner__inner {
        justify-content: flex-end;
        padding-top: 80px;
        gap: 24px;
    }
    .ns-condition-banner__content {
        width: 100%;
    }
    .ns-condition-banner__title {
        font-size: 32px;
        line-height: 38px;
    }

    .ns-condition-about__inner {
        flex-direction: column;
        gap: 32px;
    }
    .ns-condition-about__image {
        width: 100%;
        height: 260px;
    }
    .ns-condition-about__content {
        width: 100%;
    }
    .ns-condition-about__title {
        font-size: 32px;
        line-height: 38px;
    }
    .ns-condition-about__cta {
        width: 100%;
    }

    .ns-available-treatments__title {
        font-size: 32px;
        line-height: 38px;
    }
    .ns-available-treatments__pill {
        height: 44px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .ns-condition-treatment {
        flex-direction: column;
    }
    .ns-condition-treatment__image {
        width: 100%;
        height: 240px;
    }
    .ns-condition-treatment__title {
        font-size: 32px;
        line-height: 38px;
    }
    .ns-condition-treatment__cta {
        width: 100%;
    }

    .ns-condition-benefits__header {
        max-width: 100%;
    }
    .ns-condition-benefits__title {
        font-size: 32px;
        line-height: 38px;
    }
    .ns-condition-benefits__card {
        width: 100%;
    }

    .ns-condition-results__inner {
        flex-direction: column;
        gap: 32px;
    }
    .ns-condition-results__content {
        width: 100%;
    }
    .ns-condition-results__title {
        font-size: 32px;
        line-height: 38px;
    }
    .ns-condition-results__cta {
        width: 100%;
    }
    .ns-condition-results__gallery {
        width: 100%;
        height: 220px;
    }
    .ns-condition-results__photo {
        height: 220px;
    }
}

/* ==========================================================================
   /services/ Page — Complimentry Hero + Services Cards  v1.0.0
   ========================================================================== */

/* --- Component variables -------------------------------------------------- */
:root {
    --nsl-hero-height-desktop: 600px;
    --nsl-hero-height-tablet: 420px;
    --nsl-hero-height-mobile: 300px;
    --nsl-hero-content-pad: clamp(24px, 5vw, 80px);
    --nsl-hero-overlay: rgba(0, 0, 0, 0.45);
    --nsl-hero-h1-size-desktop: clamp(48px, 5.5vw, 72px);
    --nsl-hero-h1-size-tablet: clamp(36px, 5vw, 52px);
    --nsl-hero-h1-size-mobile: clamp(28px, 8vw, 40px);
    --nsl-cards-gap: 30px;
    --nsl-cards-gap-tablet: 24px;
    --nsl-cards-gap-mobile: 20px;
    --nsl-cards-max-width: 1280px;
    --nsl-card-img-height: 260px;
    --nsl-card-body-min-height: 178px;
    --nsl-card-body-pad: 24px;
    --nsl-cards-section-py: clamp(60px, 8vw, 100px);
    --nsl-cards-section-px: clamp(20px, 5vw, 80px);
    --nsl-cards-section-bg: url('/wp-content/themes/newskin-child/assets/images/new-skin-laser-studio-services-bg.jpg');
    --nsl-bp-tablet: 1279px;
    --nsl-bp-mobile: 833px;
}

/* --- Complimentry Hero ----------------------------------------------------- */
.nsl-complimentry-hero {
    position: relative;
    width: 100%;
    min-height: 65svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nsl-complimentry-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nsl-complimentry-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.nsl-complimentry-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--nsl-hero-overlay);
    z-index: 1;
}

.nsl-complimentry-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--nsl-hero-content-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nsl-complimentry-hero__heading {
    font-family: var(--font-display);
    font-size: var(--nsl-hero-h1-size-desktop);
    font-weight: 800;
    color: var(--text);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nsl-complimentry-hero__heading mark {
    background: none;
    color: var(--cyan);
}

.nsl-complimentry-hero__intro {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-body);
    max-width: 620px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 1279px) {
    .nsl-complimentry-hero { min-height: 57svh; }
    .nsl-complimentry-hero__heading {
        font-size: var(--nsl-hero-h1-size-tablet);
    }
}

@media (max-width: 833px) {
    .nsl-complimentry-hero { min-height: 50svh; }
    .nsl-complimentry-hero__heading {
        font-size: var(--nsl-hero-h1-size-mobile);
    }
    .nsl-complimentry-hero__intro {
        font-size: 15px;
    }
}

/* --- Services Cards Grid --------------------------------------------------- */
.nsl-services-cards {
    background-image: var(--nsl-cards-section-bg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: var(--nsl-cards-section-py) var(--nsl-cards-section-px);
}

.nsl-services-cards__inner {
    max-width: var(--nsl-cards-max-width);
    margin-inline: auto;
}

.nsl-services-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nsl-cards-gap);
}

/* Card — reuses homepage card internal structure, scoped to .nsl-service-card */
.nsl-service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.nsl-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(100, 210, 244, 0.12);
}

.nsl-service-card:focus-within {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.nsl-service-card__image {
    height: var(--nsl-card-img-height);
    overflow: hidden;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.nsl-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.nsl-service-card:hover .nsl-service-card__image img {
    transform: scale(1.04);
}

.nsl-service-card__divider {
    height: 2px;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    transform: scaleX(0);
    opacity: 0;
    transition: transform var(--nsl-divider-transition), opacity var(--nsl-divider-transition);
    transform-origin: left center;
    flex-shrink: 0;
    border: none;
}

.nsl-service-card:hover .nsl-service-card__divider {
    transform: scaleX(1);
    opacity: 1;
}

.nsl-service-card__body {
    padding: var(--nsl-card-body-pad);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: var(--nsl-card-body-min-height);
    background: var(--bg-card);
}

.nsl-service-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    transition: color var(--transition);
}

.nsl-service-card:hover .nsl-service-card__title {
    color: var(--cyan);
}

.nsl-service-card__desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-body);
    flex: 1;
}

.nsl-service-card__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-decoration: none !important;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s, color var(--transition);
}

.nsl-service-card__cta svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.nsl-service-card:hover .nsl-service-card__cta,
.nsl-service-card:focus-within .nsl-service-card__cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    color: var(--cyan) !important;
}

.nsl-service-card:hover .nsl-service-card__cta svg {
    transform: translateX(4px);
}

@media (max-width: 1279px) {
    .nsl-services-cards {
        padding-inline: 24px;
    }
    .nsl-services-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--nsl-cards-gap-tablet);
    }
}

@media (max-width: 833px) {
    .nsl-services-cards {
        padding-inline: 16px;
    }
    .nsl-services-cards__grid {
        grid-template-columns: 1fr;
        gap: var(--nsl-cards-gap-mobile);
    }
    .nsl-service-card__body {
        min-height: auto;
    }
}


/* ACF block conversion fix: shared sparkle SVG helper uses .ns-sparkle-icon classes. */
.ns-melanin-card .ns-sparkle-icon,
.ns-membership-card .ns-sparkle-icon,
.ns-mens-card .ns-sparkle-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.ns-melanin-card .ns-sparkle-icon__base,
.ns-melanin-card .ns-sparkle-icon__grad,
.ns-membership-card .ns-sparkle-icon__base,
.ns-membership-card .ns-sparkle-icon__grad,
.ns-mens-card .ns-sparkle-icon__base,
.ns-mens-card .ns-sparkle-icon__grad {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.35s ease;
}
.ns-melanin-card .ns-sparkle-icon__base,
.ns-membership-card .ns-sparkle-icon__base,
.ns-mens-card .ns-sparkle-icon__base { opacity: 1; }
.ns-melanin-card .ns-sparkle-icon__grad,
.ns-membership-card .ns-sparkle-icon__grad,
.ns-mens-card .ns-sparkle-icon__grad { opacity: 0; }
.ns-melanin-card:hover .ns-sparkle-icon__base,
.ns-membership-card:hover .ns-sparkle-icon__base,
.ns-membership-card--featured .ns-sparkle-icon__base,
.ns-mens-card:hover .ns-sparkle-icon__base { opacity: 0; }
.ns-melanin-card:hover .ns-sparkle-icon__grad,
.ns-membership-card:hover .ns-sparkle-icon__grad,
.ns-membership-card--featured .ns-sparkle-icon__grad,
.ns-mens-card:hover .ns-sparkle-icon__grad { opacity: 1; }
