:root {
    /* V4 Brand Universe — Central Source of Truth */

    /* Colors — Quiet Luxury */
    --bg-primary: #0a0a0a;
    --text-main: #ffffff;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --gold-rule: rgba(201, 168, 76, 0.25);
    --glass-border: rgba(255, 255, 255, 0.08);
    --rule: rgba(255, 255, 255, 0.08);

    /* Spacing — Museum Focus */
    --museum-padding: 160px;
    --section-pad: 160px;
    --pad-container: clamp(2rem, 5vw, 6rem);
    --nav-height: 72px;

    /* Typography — Dramatic Scale */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --h1-scale: clamp(3.5rem, 8vw, 7rem);
    --body-scale: 1.1rem;
    --body-text: rgba(255, 255, 255, 0.75);
    --muted-text: rgba(255, 255, 255, 0.4);

    /* Motion — Weighted Elegance */
    --expensive-curve: cubic-bezier(0.16, 1, 0.3, 1);
    --reveal-duration: 0.9s;
}

/* Skip Link */
.v4-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: 1rem;
    z-index: 2000;
    transition: top 0.3s ease;
}

.v4-skip-link:focus {
    top: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: var(--body-scale);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--h1-scale);
}

/* IntersectionObserver States */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--reveal-duration) var(--expensive-curve);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pad-container);
}

.grid-thirds {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    align-items: center;
}

.hero-content-v4 {
    grid-column: span 7;
}

.hero-visual-v4 {
    grid-column: span 5;
}

@media (max-width: 1024px) {
    .grid-thirds {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

section {
    padding: var(--museum-padding) 0;
}

/* Buttons — Tactical & Reactive */
.btn-v4 {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--gold);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s var(--expensive-curve);
    border: none;
}

.btn-v4:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
    filter: brightness(1.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.5s var(--expensive-curve);
}

.btn-glass:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

/* Services Grid — Asymmetrical Chris Do Layout */
.v4-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding-bottom: 200px;
    /* Space for offset overflow */
}

.v4-service-card {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    transition: all 0.6s var(--expensive-curve);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Staggered Offsets */
.v4-service-card:nth-child(2) {
    transform: translateY(60px);
}

.v4-service-card:nth-child(3) {
    transform: translateY(120px);
}

.v4-service-card:nth-child(4) {
    transform: translateY(180px);
}

/* Ensure IntersectionObserver accounts for offsets or we reveal in target pos */
.v4-service-card.reveal-init {
    opacity: 0;
    /* We don't use translateY here as it clashes with the stagger, we use margin or separate wrapper */
}

.v4-service-card.revealed {
    opacity: 1;
}

.v4-service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 76, 0.3);
    /* Lifting only 2px as per request */
    margin-top: -2px;
}

/* Custom Cursor Interaction Placeholder */
.v4-service-card:hover~#cursor-ring {
    transform: scale(1.5);
    background: rgba(201, 168, 76, 0.1);
}

.v4-service-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.v4-service-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Kinetic Ticker — Moving Brand Signature */
.v4-ticker-container {
    background: #000;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes tickerLoop {
    0% {
        transform: translateX(0);
    }

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

.v4-ticker-track:hover {
    animation-play-state: paused;
}

.v4-ticker-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-right: 6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--expensive-curve);
}

.v4-ticker-item:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.v4-ticker-dot {
    color: rgba(201, 168, 76, 0.2);
    margin-right: 6rem;
}

/* GHL Booking Section — Heavy Glass & Anti-Shift */
.v4-booking-section {
    position: relative;
    z-index: 1;
}

.v4-booking-pod {
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: clamp(2rem, 5vw, 4rem);
    min-height: 700px;
    /* Anti-Layout Shift */
    position: relative;
}

.v4-booking-pod iframe {
    width: 100%;
    border: none;
    background: transparent !important;
}

.v4-booking-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.v4-booking-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.v4-booking-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* V4 Global Header — Glassmorphic Sticky Nav */
.v4-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s var(--expensive-curve);
}

.v4-header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
}

.v4-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v4-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
}


.v4-nav-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.3s var(--expensive-curve);
    position: relative;
}

.v4-nav-item:hover {
    color: #fff;
}

.v4-nav-item.active-site {
    color: var(--gold);
}

.v4-nav-item.active-site::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

/* Universe Dropdown */
.v4-universe-dropdown {
    position: relative;
    cursor: pointer;
}

.v4-universe-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: grid;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s var(--expensive-curve);
    z-index: 1001;
}

.v4-universe-dropdown:hover .v4-universe-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v4-universe-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s var(--expensive-curve);
}

.v4-universe-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding-left: 1.5rem;
}

.v4-universe-link.active-site {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* V4 Master Footer — Big & Small Anchor */

.v4-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.v4-footer-brand .v4-logo {
    font-size: 2rem;
    display: block;
    margin-bottom: 1.5rem;
}

.v4-brand-statement {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 320px;
}

.v4-footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.v4-footer-links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.v4-footer-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    transition: all 0.3s var(--expensive-curve);
}

.v4-footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Footer GHL Hook */
.v4-footer-ghl {
    margin-top: 2rem;
}

.v4-ghl-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 5px;
    border-radius: 4px;
    transition: border-color 0.3s var(--expensive-curve);
}

.v4-ghl-input-group:focus-within {
    border-color: rgba(201, 168, 76, 0.5);
}

.v4-ghl-input {
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    width: 100%;
}

.v4-ghl-input:focus {
    outline: none;
}

.v4-ghl-submit {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.3s var(--expensive-curve);
}

.v4-ghl-submit:hover {
    transform: scale(1.05);
}

.v4-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .v4-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .v4-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Custom Cursor Placeholder Styles */
#custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s var(--expensive-curve);
}

/* === V4 DESIGN SYSTEM UPDATE === */

/* === SECTION MARKER === */
.v4-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.v4-eyebrow-line {
    height: 1px;
    background: #c9a84c;
    opacity: 0.5;
    flex-shrink: 0;
}

.v4-eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(201, 168, 76, 0.6);
}

.v4-section-h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 4rem;
}

.v4-section-h2 .gold {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.v4-section-h2 .white {
    color: var(--white);
    display: block;
}

/* --- Removed Legacy Definitions Area --- */


/* === SCROLL DOTS === */

/* === MOBILE === */
@media (max-width: 1024px) {

    .v4-nav-left,
    .v4-nav-right {
        display: none;
    }

    .scroll-dots {
        display: none;
    }

    .hero-popout {
        display: none;
    }

    .v4-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .v4-service-row {
        grid-template-columns: 50px 1fr;
    }

    .v4-service-link {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    .v4-footer-brand-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .v4-footer-services {
        grid-template-columns: 1fr;
    }
}

/* === FUTUR NAV === */
.v4-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(2rem, 5vw, 5rem);
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

.v4-nav-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.v4-nav-logo .pk {
    color: #c9a84c;
}

.v4-nav-logo .consulting {
    color: #ffffff;
    font-weight: 300;
}

.v4-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.v4-nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.v4-nav-link {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.v4-nav-link:hover {
    color: #c9a84c;
}

.v4-nav-book {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.55rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.v4-nav-book:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

.nav-has-drop {
    position: relative;
}

.nav-drop-arrow {
    font-size: 0.45rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.nav-has-drop:hover .nav-drop-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-mega-drop {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #c9a84c;
    padding: 1.5rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.nav-has-drop:hover .nav-mega-drop,
.nav-mega-drop.kb-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-mega-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: #c9a84c;
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mega-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease;
}

.nav-mega-item:last-child {
    border-bottom: none;
}

.nav-mega-item::before {
    content: '◆';
    font-size: 0.28rem;
    color: #c9a84c;
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.nav-mega-item:hover {
    color: #ffffff;
}

.nav-mega-item:hover::before {
    opacity: 1;
}

/* === FUTUR HERO === */
.v4-hero-futur {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(72px + 4rem) clamp(2rem, 10vw, 12rem) 6rem;
    position: relative;
    overflow: hidden;
}

.v4-hero-futur-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(201, 168, 76, 0.7);
    margin-bottom: 2rem;
}

.v4-hero-futur-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 7vw, 7rem);

    font-weight: 400;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 900px;
}

.v4-hero-futur-h1 .gold {
    color: #c9a84c;
    font-style: italic;
}

.v4-hero-futur-sub {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.v4-hero-futur-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.v4-btn-primary {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0a0a0a;
    background: #c9a84c;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #c9a84c;
}

.v4-btn-primary:hover {
    background: transparent;
    color: #c9a84c;
}

.v4-btn-secondary {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.v4-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* === IDENTITYIQ STATS === */
.v4-stats-section {
    background: #050505;
    padding: 6rem clamp(2rem, 5vw, 5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v4-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.v4-stat-block {
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.v4-stat-block:last-child {
    border-right: none;
}

.v4-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5.5rem);
    color: #c9a84c;
    font-style: italic;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.v4-stat-context {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* === ALTERNATING 3 COL SERVICES === */
.v4-services-alt {
    padding: 8rem clamp(2rem, 5vw, 5rem);
}

.v4-service-alt-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v4-service-alt-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.v4-service-alt-cell {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: background 0.3s ease;
}

.v4-service-alt-cell:last-child {
    border-right: none;
}

.v4-service-alt-cell:hover {
    background: rgba(201, 168, 76, 0.02);
}

.v4-service-alt-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.08);
    font-style: italic;
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.v4-service-alt-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: #c9a84c;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v4-service-alt-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.v4-service-alt-link {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c9a84c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.v4-service-alt-link:hover {
    gap: 0.8rem;
}

/* === FUTUR ABOUT === */
.v4-about-futur {
    padding: 8rem clamp(2rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.v4-about-visual {
    position: relative;
}

.v4-about-visual-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.v4-about-visual-box::before {
    content: 'P&K';
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(201, 168, 76, 0.06);
    font-style: italic;
    position: absolute;
}

.v4-about-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(201, 168, 76, 0.15);
    pointer-events: none;
}

.v4-about-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.v4-about-content h2 .gold {
    color: #c9a84c;
    font-style: italic;
    display: block;
}

.v4-about-content h2 .white {
    color: #ffffff;
    display: block;
}

.v4-about-content p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.v4-about-list {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.v4-about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.v4-about-list-item::before {
    content: '◆';
    color: #c9a84c;
    font-size: 0.35rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

/* === FUTUR TESTIMONIALS === */
.v4-testimonials {
    padding: 8rem clamp(2rem, 5vw, 5rem) 3rem;
    background: #050505;
}

/* === TESTIMONIAL CAROUSEL === */
.v4-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.v4-carousel-track-wrap {
    flex: 1;
    overflow: hidden;
}

.v4-carousel-track {
    display: flex;
    gap: 2px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
}

.v4-carousel-track .v4-testimonial-card:nth-child(3n+1) {
    margin-top: 2rem;
}

.v4-carousel-track .v4-testimonial-card:nth-child(3n+2) {
    margin-top: 0;
}

.v4-carousel-track .v4-testimonial-card:nth-child(3n+3) {
    margin-top: 2rem;
}

.v4-carousel-track .v4-testimonial-card {
    flex: 0 0 calc(33.333% - 2px);
    min-width: 0;
    opacity: 1;
    transform: none;
}

.v4-carousel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v4-carousel-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .v4-carousel-track .v4-testimonial-card {
        flex: 0 0 100%;
    }

    .v4-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.v4-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 4rem;
}

.v4-testimonial-card {
    background: #050505;
    padding: 3rem 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v4-testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.v4-testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: #c9a84c;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.v4-testimonial-text {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.v4-testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

.v4-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.v4-testimonial-avatar svg {
    width: 24px;
    height: 24px;
    color: rgba(201, 168, 76, 0.4);
}

.v4-testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v4-testimonial-result {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* === CREDIT DADDY CONSULTATION BOX === */
.v4-consultation {
    padding: 8rem clamp(2rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v4-consult-box {
    max-width: 560px;
    width: 100%;
    padding: 3.5rem;
    position: relative;
    text-align: center;
    border: none;
    background: transparent;
}

.v4-consult-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(201, 168, 76, 0.6);
    margin-bottom: 1rem;
}

.v4-consult-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.v4-consult-title .gold {
    color: #c9a84c;
    font-style: italic;
}

.v4-consult-price {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: #c9a84c;
    font-style: italic;
    line-height: 1;
    margin: 1.5rem 0 0.5rem;
}

.v4-consult-price-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2rem;
}

.v4-consult-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    border-top: none;
    padding-top: 0;
}

.v4-consult-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.v4-consult-list li:last-child {
    border-bottom: none;
}

.v4-consult-list li::before {
    content: '◆';
    color: #c9a84c;
    font-size: 0.35rem;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

/* === TAB SERVICE PANEL === */
.v4-tab-service-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
}

.v4-tab-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
}

.v4-tab-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #050505;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v4-tab-service-item.active {
    background: rgba(201, 168, 76, 0.08);
    border-left: 2px solid var(--gold);
}

.v4-tab-service-name {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.v4-tab-service-item.active .v4-tab-service-name,
.v4-tab-service-item:hover .v4-tab-service-name {
    color: var(--gold);
}

.v4-tab-service-arrow {
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 0.8rem;
}

.v4-tab-service-item.active .v4-tab-service-arrow,
.v4-tab-service-item:hover .v4-tab-service-arrow {
    opacity: 1;
}

.v4-feature-tabs {
    padding: 8rem clamp(2rem, 5vw, 5rem);
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v4-tabs-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.v4-tabs-nav::-webkit-scrollbar {
    display: none;
}

.v4-tab-btn {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.4);
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: -1px;
}

.v4-tab-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.v4-tab-btn.active {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

.v4-tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.v4-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.v4-tab-panel-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.v4-tab-panel-title .gold {
    color: #c9a84c;
    font-style: italic;
}

.v4-tab-panel-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.v4-tab-panel-visual {
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.v4-tab-panel-visual-label {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(201, 168, 76, 0.1);
    font-style: italic;
}

/* === IDENTITYIQ STICKY BAR === */
/* === STICKY FLOATING MENU === */
.v4-sticky-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 2rem));
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 900;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    max-width: 75vw;
    width: auto;
}

.v4-sticky-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.v4-sticky-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.v4-sticky-link {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
}

.v4-sticky-link:hover {
    color: #c9a84c;
}

.v4-sticky-link.active {
    color: #c9a84c;
}

.v4-sticky-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.v4-sticky-cta {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0a0a0a;
    background: #c9a84c;
    padding: 0.45rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.5rem;
    border-radius: 2px;
}

.v4-sticky-cta:hover {
    background: #e8c97a;
}

@media (max-width: 768px) {
    .v4-sticky-bar {
        bottom: 1rem;
        padding: 0.5rem 0.75rem;
        gap: 0.15rem;
    }

    .v4-sticky-links {
        display: none;
    }

    .v4-sticky-cta {
        margin-left: 0;
    }
}

/* === SCROLL DOTS === */
.scroll-dots {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 900;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-dot.active {
    background: #c9a84c;
    transform: scale(1.5);
}

.scroll-dot-label {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c9a84c;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.scroll-dot:hover .scroll-dot-label {
    opacity: 1;
}

.scroll-dot:hover {
    background: #c9a84c;
}

/* === MOBILE === */
@media (max-width: 1024px) {
    .v4-nav-links {
        display: none;
    }

    .scroll-dots {
        display: none;
    }

    .v4-sticky-links {
        display: none;
    }

    .v4-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v4-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v4-stat-block:nth-child(2) {
        border-right: none;
    }

    .v4-service-alt-row {
        grid-template-columns: 1fr;
    }

    .v4-service-alt-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .v4-about-futur {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .v4-tab-panel.active {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .v4-consult-box {
        padding: 2.5rem 1.5rem;
    }
}


/* === TESTIMONIALS LIGHT === */
.v4-testimonials-light {
    background: #ffffff;
}

.v4-testimonials-light .v4-eyebrow-text {
    color: rgba(0, 0, 0, 0.4);
}

.v4-testimonials-light .v4-eyebrow-line {
    background: #c9a84c;
}

.v4-testimonials-light .v4-section-h2 .gold {
    color: #c9a84c;
}

.v4-testimonials-light .v4-section-h2 .white {
    color: #111111;
}

.v4-testimonials-light .v4-testimonial-card {
    background: #f5f5f5;
}

.v4-testimonials-light .v4-testimonial-quote-mark {
    color: #c9a84c;
    opacity: 0.3;
}

.v4-testimonials-light .v4-testimonial-text {
    color: #333333;
}

.v4-testimonials-light .v4-testimonial-name {
    color: #c9a84c;
}

.v4-testimonials-light .v4-testimonial-result {
    color: #777777;
}

.v4-testimonials-light .v4-testimonial-client {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.v4-testimonials-light .v4-testimonial-avatar {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
}

.v4-testimonials-light .v4-carousel-btn {
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.5);
}

.v4-testimonials-light .v4-carousel-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* === COPY ITEMS === */
.v4-copy-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem 0;
}

.v4-copy-toast {
    position: absolute;
    right: calc(100% + 0.75rem);
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #c9a84c;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.v4-copy-toast::before {
    content: '✓';
    color: #c9a84c;
    font-size: 0.7rem;
    font-weight: 700;
}

.v4-copy-item.copied .v4-copy-toast {
    opacity: 1;
}




/* === TESTIMONIAL CARDS FINAL === */
.v4-testimonial-card {
    flex: 0 0 calc(33.333% - 2px);
    min-width: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #c9a84c;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 0;
    opacity: 1;
    transform: none;
}

.v4-testimonial-body {
    padding: 22px 20px 18px;
}

.v4-testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 18px;
    display: block;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.v4-testimonial-text::before {
    display: none;
}

.v4-testimonial-client {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: none;
    padding-top: 0;
}

.v4-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #c9a84c;
    font-style: italic;
    flex-shrink: 0;
}

.v4-testimonial-avatar svg {
    display: none;
}

.v4-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.v4-testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.v4-testimonial-service {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.v4-testimonial-result {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: #c9a84c;
}

@media (max-width: 768px) {
    .v4-testimonial-card {
        flex: 0 0 100%;
    }
}

.v4-carousel-btn {
    background: transparent;
    border: 2px solid #c9a84c;
    color: #c9a84c;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v4-carousel-btn:hover {
    background: #c9a84c;
    color: #0a0a0a;
}




/* === SERVICE CARD GRID === */
.v4-svc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 3rem;
    width: 100%;
}

.v4-svc-card {
    background: #0a0a0a;
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    transition: background 0.3s ease;
    border: 2px solid transparent;
}

.v4-svc-card:hover {
    background: rgba(201, 168, 76, 0.03);
    z-index: 1;
}

.v4-svc-card-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #c9a84c;
    font-style: italic;
    line-height: 1.1;
}

.v4-svc-card-desc {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.v4-svc-card:hover .v4-svc-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

.v4-svc-tl:hover {
    border-left-color: #c9a84c;
    border-bottom-color: #c9a84c;
    border-top-color: transparent;
    border-right-color: transparent;
}

.v4-svc-tc:hover {
    border-left-color: #c9a84c;
    border-bottom-color: #c9a84c;
    border-top-color: transparent;
    border-right-color: transparent;
}

.v4-svc-tr:hover {
    border-left-color: #c9a84c;
    border-bottom-color: #c9a84c;
    border-top-color: transparent;
    border-right-color: transparent;
}

.v4-svc-bl:hover {
    border-left-color: #c9a84c;
    border-top-color: #c9a84c;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.v4-svc-bc:hover {
    border-left-color: #c9a84c;
    border-top-color: #c9a84c;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.v4-svc-br:hover {
    border-left-color: #c9a84c;
    border-top-color: #c9a84c;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

@media (max-width: 768px) {
    .v4-svc-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .v4-svc-card-grid {
        grid-template-columns: 1fr;
    }
}

/* === FOOTER V5 === */
.v4-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem clamp(2rem, 5vw, 5rem) 6rem;
}

.v4-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v4-footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.v4-footer-logo .pk {
    color: #c9a84c;
}

.v4-footer-logo .consulting {
    color: #ffffff;
    font-weight: 300;
}

.v4-footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
    margin-bottom: 1rem;
    margin-top: 0.4rem;
}

.v4-footer-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 300px;
}

.v4-footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c9a84c;
    margin-bottom: 1.25rem;
}

.v4-footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.v4-footer-col-contact .v4-copy-value {
    font-size: 0.78rem;
    color: #c9a84c;
}

.v4-footer-col-contact .v4-copy-icon {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
}

.v4-footer-hours {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    margin-top: 0.6rem;
}

.v4-footer-col-services {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.v4-footer-col-connect {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.v4-footer-nav-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.v4-footer-nav-link:hover {
    color: #c9a84c;
}

.v4-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: none;
}

.v4-footer-legal-link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.v4-footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.v4-footer-copy {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: #c9a84c;
    text-align: center;
}

.v4-footer-disclaimer {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    max-width: 820px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
}

@media (max-width: 1024px) {
    .v4-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .v4-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === HOW WE HELP SECTION === */
.hwh-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.hwh-stat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hwh-stat-num {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: #c9a84c;
    line-height: 1;
    font-style: italic;
}

.hwh-stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
}

.hwh-stat-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
}

.hwh-services {
    display: flex;
    flex-direction: column;
}

.hwh-svc-row {
    display: grid;
    grid-template-columns: 20px 160px 1.5rem 1fr;
    align-items: center;
    gap: 0;
    padding: 0.6rem 0;
    column-gap: 1rem;
}

.hwh-diamond {
    width: 6px;
    height: 6px;
    background: #c9a84c;
    transform: rotate(45deg);
    flex-shrink: 0;
    justify-self: center;
}

.hwh-svc-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #c9a84c;
    font-style: italic;
    white-space: nowrap;
}

.hwh-svc-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    justify-self: center;
}

.hwh-svc-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === ALTERNATE MARQUEE === */
.v4-marquee-alt {
    background: rgba(201, 168, 76, 0.03);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.v4-marquee-alt .v4-marquee-track {
    animation-direction: reverse;
}

.v4-marquee-alt .v4-marquee-item {
    color: rgba(255, 255, 255, 0.06);
}

.v4-marquee-alt .v4-marquee-item .num {
    color: rgba(201, 168, 76, 0.5);
}

/* === STATIC STAT BAR === */
.hwh-stat-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 0;
    margin-top: 3rem;
    gap: 2rem;
}

.hwh-stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    text-align: center;
}

.hwh-stat-bar-num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: #c9a84c;
    font-style: italic;
    line-height: 1;
}

.hwh-stat-bar-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.35);
}

.hwh-stat-bar-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* === RESULTS MARQUEE === */
.v4-marquee-results {
    background: #050505;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    padding: 3rem 0;
}

.v4-marquee-results .v4-marquee-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

.v4-marquee-results .v4-marquee-item {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.07);
    font-style: italic;
    padding: 0 3rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.v4-marquee-results .v4-marquee-item .num {
    color: #c9a84c;
    font-style: italic;
}

.v4-marquee-track-reverse {
    animation: marqueeLeft 32s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .hwh-stat-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hwh-stat-bar-sep {
        display: none;
    }

    .hwh-stat-bar-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .hwh-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === PERFORMANCE & CLS === */
.v4-marquee-track,
.v4-carousel-track,
.v4-sticky-bar {
    will-change: transform;
}

section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.v4-hero-futur {
    content-visibility: visible;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.v4-nav {
    height: var(--nav-height);
    min-height: var(--nav-height);
}

.v4-hero-futur-h1,
.v4-section-h2 {
    min-height: 1.1em;
}

/* === PK LOADING SCREEN === */
#pk-loader {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.8s;
}

#pk-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pk-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pk-loader-diamond {
    font-size: 1.5rem;
    color: #c9a84c;
    animation: pkDiamondPulse 1.5s ease-in-out infinite;
    line-height: 1;
}

@keyframes pkDiamondPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.85);
    }
}

.pk-loader-brand {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.pk-loader-pk {
    color: #c9a84c;
    font-size: 5rem;
}

.pk-loader-consulting {
    color: #ffffff;
    font-weight: 300;
    font-size: 5rem;
}

.pk-loader-counter {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pk-loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(201, 168, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.pk-loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            transparent,
            #c9a84c,
            rgba(201, 168, 76, 0.6));
    transition: width 0.1s linear;
}
/* Marquee group fix */
.v4-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}

/* Marquee track fix */
.v4-marquee-results .v4-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
}

.v4-marquee-results .v4-marquee-item {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.v4-marquee-divider {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 1rem !important;
}

/* Marquee divider inline fix */
.v4-marquee-results .v4-marquee-group {
    flex-direction: row !important;
    align-items: center !important;
}

.v4-marquee-results .v4-marquee-divider {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}

.v4-marquee-results .v4-marquee-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* Marquee label color fix */
.v4-marquee-results .v4-marquee-item .label {
    color: #c9a84c !important;
}
