/* =========================================================================
   CSS Variables & Tokens (PractiOne - Luxury Consulting Theme)
   ========================================================================= */
:root {
    /* Colors */
    --color-bg: #0A0A0A;
    /* Deep Charcoal / Matte Black */
    --color-surface: #141414;
    /* Slightly lighter surface */
    --color-surface-hover: #1C1C1C;
    --color-accent: #C5A059;
    /* Champagne Gold */
    --color-accent-hover: #D8B263;
    --color-text-main: #F8F8F8;
    /* Pearl White */
    --color-text-muted: #FFFFFF;
    /* Subtle grey for readable subtext */
    --color-border: rgba(197, 160, 89, 0.2);
    --color-glass: rgba(10, 10, 10, 0.65);

    /* Light Theme Variables */
    --color-bg-light: #FFFFFF;
    --color-surface-light: #F7F7F7;
    --color-surface-hover-light: #F0F0F0;
    --color-text-main-light: #0A0A0A;
    --color-text-muted-light: #4A4A4A;
    --color-border-light: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing */
    --space-sm: 2rem;
    --space-md: 4rem;
    --space-lg: 8rem;
    --space-xl: 12rem;
    --space-xxl: 16rem;
}

/* Light Theme Utility Overrides */
.theme-light {
    background-color: var(--color-bg-light) !important;
    color: var(--color-text-main-light) !important;
}

.theme-light .section-title {
    color: var(--color-text-main-light) !important;
}

.theme-light .section-label {
    color: var(--color-accent) !important;
}

.theme-light p,
.theme-light li,
.theme-light .expertise-card p,
.theme-light .expertise-card li,
.theme-light .bio-text {
    color: var(--color-text-muted-light) !important;
}

.theme-light .expertise-card {
    background: var(--color-surface-light) !important;
    border-color: var(--color-border-light) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.theme-light .expertise-card h3 {
    color: var(--color-text-main-light) !important;
}

.theme-light .expertise-card:hover {
    background: var(--color-surface-hover-light) !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 15px rgba(197, 160, 89, 0.1) !important;
}

.theme-light .bio-image-placeholder {
    background: linear-gradient(45deg, #F0F0F0, #E0E0E0) !important;
    border: 1px solid var(--color-border-light) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
}

.theme-light .signature {
    color: var(--color-accent) !important;
}

/* =========================================================================
   Reset & Base Styles
   ========================================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--space-xl) 0;
}

/* =========================================================================
   Typography Utilities
   ========================================================================= */
.section-label {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3), 0 0 15px rgba(197, 160, 89, 0.1);
}

.btn-secondary,
.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover,
.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.theme-light .btn-secondary,
.theme-light .btn-outline {
    color: #0A0A0A;
    border-color: #0A0A0A;
}

.theme-light .btn-secondary:hover,
.theme-light .btn-outline:hover {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

/* =========================================================================
   Navigation
   ========================================================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    padding: 0.5rem 2rem;
    transition: all var(--transition-fast);
    /* Initially Transparent */
    background: transparent;
    border: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.15);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
}

.logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin: -60px 0;
    /* Let it overflow slightly so it doesn't stretch the navbar */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-size: 1.8rem;
    /* Slightly larger scale for fat fingers */
    cursor: pointer;
    transition: color var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--color-accent);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: 0 6%;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cfilter id=\"noiseFilter\"%3E%3CfeTurbulence type=\"fractalNoise\" baseFrequency=\"0.85\" numOctaves=\"3\" stitchTiles=\"stitch\"/%3E%3C/filter%3E%3Crect width=\"100%25\" height=\"100%25\" filter=\"url(%23noiseFilter)\"/%3E%3C/svg%3E');
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    background: var(--color-accent);
    animation: floatShapes 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    width: 45vw;
    height: 45vw;
    max-width: 700px;
    max-height: 700px;
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 35vw;
    height: 35vw;
    max-width: 500px;
    max-height: 500px;
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.shape-3 {
    width: 25vw;
    height: 25vw;
    max-width: 400px;
    max-height: 400px;
    top: 40%;
    left: 40%;
    opacity: 0.1;
    animation-delay: -14s;
    animation-duration: 18s;
}

@keyframes floatShapes {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-8%, 8%) scale(1.1);
    }

    66% {
        transform: translate(5%, -5%) scale(0.9);
    }

    100% {
        transform: translate(2%, 2%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 50%;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    background: none;
    color: var(--color-text-main);
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    white-space: nowrap;
    /* Prevent random breaking */
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-main);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.scroll-line {
    width: 100%;
    height: 0;
    background: var(--color-accent);
    animation: scrollDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDown {
    0% {
        height: 0;
        top: 0;
        position: absolute;
    }

    50% {
        height: 100%;
        top: 0;
        position: absolute;
    }

    100% {
        height: 0;
        top: 100%;
        position: absolute;
    }
}

/* =========================================================================
   Premium Hero Visual Cards
   ========================================================================= */
.hero-premium-visual {
    position: relative;
    flex: 1;
    max-width: 50%;
    height: 520px;
    z-index: 2;
    pointer-events: auto;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: slowPulse 8s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.premium-card {
    position: absolute;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    color: var(--color-text-main);
    z-index: 1;
    transition: transform var(--transition-slow), border-color var(--transition-fast);
}

.premium-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-5px);
}

.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    padding: 2.5rem;
    z-index: 2;
}

.main-card:hover {
    transform: translate(-50%, -55%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.card-header i {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    height: 140px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-top: 1rem;
}

.bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: visible;
    transition: height 1s ease-out;
}

.bar-1 { height: 35%; animation: growBar1 1.5s ease-out forwards; }
.bar-2 { height: 50%; animation: growBar2 1.5s ease-out forwards 0.2s; }
.bar-3 { height: 75%; animation: growBar3 1.5s ease-out forwards 0.4s; }
.bar-4 { height: 100%; background: linear-gradient(to top, rgba(197,160,89,0.4), rgba(197,160,89,0.8)); animation: growBar4 1.5s ease-out forwards 0.6s; }

.bar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 30px;
    background: var(--color-accent);
    filter: blur(15px);
    opacity: 0.6;
}

@keyframes growBar1 { from { height: 0; } to { height: 35%; } }
@keyframes growBar2 { from { height: 0; } to { height: 50%; } }
@keyframes growBar3 { from { height: 0; } to { height: 75%; } }
@keyframes growBar4 { from { height: 0; } to { height: 100%; } }

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--color-text-main);
    font-family: var(--font-body);
}

.gold-text {
    color: var(--color-accent) !important;
    font-weight: 600;
}

.float-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    min-width: 260px;
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.4rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-text span {
    font-size: 0.85rem;
    color: var(--color-text-main);
}

.float-card-1 {
    top: 2%;
    right: -8%;
    animation: floatGen 6s ease-in-out infinite alternate;
}

.float-card-2 {
    bottom: 22%;
    left: -10%;
    animation: floatGen 8s ease-in-out infinite alternate-reverse;
}

.float-card-3 {
    bottom: 2%;
    right: 8%;
    animation: floatGen 7s ease-in-out infinite alternate 1s;
}

@keyframes floatGen {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* =========================================================================
   Reading Progress Bar
   ========================================================================= */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}

.reading-progress-bar {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--color-accent);
}

.scroll-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: rgba(8, 8, 8, 0.78);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, background 0.2s ease;
    z-index: 998;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: rgba(16, 16, 16, 0.92);
}

/* Mobile sizing handled in main media queries */

/* =========================================================================
   Expertise Section
   ========================================================================= */
.expertise {
    background-color: var(--color-bg);
    overflow: hidden;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

.expertise-card:hover {
    transform: translateY(-8px);
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 15px rgba(197, 160, 89, 0.1);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.expertise-card ul {
    list-style: none;
    margin-top: 1rem;
}

.expertise-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.expertise-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* =========================================================================
   Bio Section (Magazine Feature)
   ========================================================================= */
.bio {
    background-color: #0d0d0d;
    overflow: hidden;
}

.bio-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 6rem;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
}

.bio-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.15);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.placeholder-text {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    letter-spacing: 2px;
    font-style: italic;
    opacity: 1;
}

.accent-line {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    z-index: 1;
    transition: transform var(--transition-slow);
}

.bio-grid:hover .accent-line {
    transform: translate(-10px, -10px);
}

.bio-content {
    max-width: 600px;
}

.bio-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-top: 3rem;
}

/* =========================================================================
   Premium Services Addon
   ========================================================================= */
.premium-services {
    background-color: var(--color-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.premium-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.premium-text {
    flex: 1;
}

.premium-list {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.premium-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.premium-item:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 10, 0.8);
}

.premium-item i {
    color: var(--color-accent);
    font-size: 1.5rem;
}


/* =========================================================================
   Footer & Luminescent Reveal
   ========================================================================= */
.footer {
    background-color: #030303;
    padding: 8rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.footer-parallax-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 140vw;
    /* Prevent huge horizontal stretch */
}

.premium-aurora-container {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(80px);
    opacity: 0.6;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    animation: floatOrb 20s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.aurora-orb.orb-1 {
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    top: -10%;
    left: 10%;
    opacity: 0.15;
    animation-delay: 0s;
}

.aurora-orb.orb-2 {
    width: 50vw;
    height: 50vw;
    max-width: 800px;
    max-height: 800px;
    bottom: -20%;
    right: -10%;
    background: #e2c78a;
    /* Lighter gold for variation */
    opacity: 0.1;
    animation-delay: -5s;
    animation-duration: 25s;
}

.aurora-orb.orb-3 {
    width: 30vw;
    height: 30vw;
    max-width: 500px;
    max-height: 500px;
    top: 50%;
    left: 50%;
    background: #ffffff;
    /* White center for premium glow */
    opacity: 0.05;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 10%) scale(1.1);
    }
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: radial-gradient(circle, rgba(197, 160, 89, 1) 0%, rgba(197, 160, 89, 0) 70%);
    opacity: 0;
    box-shadow: 0 0 40px 10px rgba(197, 160, 89, 0.4);
    z-index: 1;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    z-index: 1;
}

/* 
 * Intersection Observer will add an .active class to the footer 
 * to trigger the luminescent reveal when scrolled into view
 */
.footer.active .footer-glow {
    animation: luminescentReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.footer.active .footer-particles {
    animation: fadeInParticles 2s 0.5s ease-out forwards;
}

@keyframes luminescentReveal {
    0% {
        opacity: 0;
        width: 0%;
        box-shadow: 0 0 0px 0px rgba(197, 160, 89, 0);
    }

    50% {
        opacity: 1;
        width: 100%;
        box-shadow: 0 0 60px 20px rgba(197, 160, 89, 0.6);
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(197, 160, 89, 0.8) 20%, rgba(197, 160, 89, 0) 80%);
    }

    100% {
        opacity: 0.8;
        width: 100%;
        box-shadow: 0 0 40px 10px rgba(197, 160, 89, 0.3);
        background: radial-gradient(circle, rgba(197, 160, 89, 1) 0%, rgba(197, 160, 89, 0) 70%);
    }
}

@keyframes fadeInParticles {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

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

.footer-brand h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.footer-brand p {
    color: var(--color-text-main);
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: block;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.footer-social-links {
    flex-direction: column;
    align-items: flex-start;
}

.social-link-linkedin {
    width: auto !important;
    height: auto !important;
    padding: 0.8rem 1.1rem;
    border-radius: 999px !important;
    gap: 0.65rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.social-link-linkedin i {
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    font-size: 0.85rem;
}

.legal-links a {
    margin-left: 2rem;
}

.legal-links a:hover {
    color: var(--color-text-main);
}

/* =========================================================================
   Animations & Reveal
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    transform: translateY(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.fade-left {
    transform: translateX(50px);
}

/* Apply staggered delays if defined */
.active[style*="--delay"] {
    transition-delay: var(--delay);
}

/* =========================================================================
   Media Queries
   ========================================================================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        height: auto;
        min-height: auto;
        padding: 15vh 6% 5vh;
        gap: 4rem;
    }

    .hero-content {
        max-width: 100%;
        flex: none;
    }

    .hero-premium-visual {
        flex: none;
        height: 420px;
        width: 90%;
        max-width: 440px;
        margin: 0 auto;
    }

    .main-card {
        width: 300px;
        padding: 2rem;
    }

    .float-card-1 {
        right: -5%;
    }

    .float-card-2 {
        left: -5%;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bio-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .premium-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 2rem;
    }

    .navbar.scrolled {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 60px);
        background: var(--color-bg);
        border-bottom: 2px solid var(--color-accent);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem 0;
        gap: 0;
        transform: translateY(-10px);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-links a:not(.btn) {
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: none;
        margin-bottom: 0;
        padding: 1rem 0;
        color: var(--color-text-main);
        transition: color var(--transition-fast);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 85%;
        text-align: center;
        display: block;
    }

    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn):active {
        color: var(--color-accent);
    }

    .nav-links a:not(.btn)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 2rem;
        width: 100%;
        max-width: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        /* Above the mobile menu overlay */
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        white-space: normal;
        /* Allow wrapping if absolutely needed on tiny screens but clamp should hold it */
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero {
        padding-top: 18vh;
        gap: 2rem;
    }

    .hero-premium-visual {
        height: 380px;
        width: 100%;
        max-width: 380px;
    }

    .main-card {
        width: 220px;
        padding: 1.2rem;
    }

    .card-header {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        gap: 0.5rem;
    }

    .card-header i {
        font-size: 1.1rem;
    }

    .mock-chart {
        height: 90px;
        gap: 10px;
    }

    .chart-labels {
        font-size: 0.7rem;
        margin-top: 10px;
    }
    
    /* Show all 3 float cards on mobile — diagonal layout */
    .hero-premium-visual .float-card-2,
    .hero-premium-visual .float-card-3 {
        display: flex;
    }

    .float-card {
        min-width: auto;
        padding: 0.7rem 1rem;
        gap: 0.7rem;
    }

    .float-card-1 {
        top: -2%;
        right: -4%;
        left: auto;
    }

    .float-card-2 {
        left: -4%;
        bottom: auto;
        top: 32%;
        right: auto;
    }

    .float-card-3 {
        bottom: 2%;
        right: -4%;
        left: auto;
    }

    .card-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .card-text strong {
        font-size: 0.78rem;
    }

    .card-text span {
        font-size: 0.68rem;
    }

    .premium-list {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links a {
        margin: 0 1rem;
    }
}
/* =========================================================================
   2026 Revision Layer
   ========================================================================= */

.section-header {
    max-width: 900px;
}

.section-header .section-title {
    margin-bottom: 1.2rem;
}

.section-intro {
    color: var(--color-text-main);
    font-size: 1.05rem;
    max-width: 760px;
}

.theme-light .section-intro {
    color: var(--color-text-muted-light) !important;
}

.navbar {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 0.65rem 0;
    border: none;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 0.55rem 0;
    background: rgba(10, 10, 10, 0.97);
    border: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 120px;
    margin: -28px 0;
}

.nav-links {
    gap: 1.2rem;
}

.nav-links > a,
.nav-dropdown-toggle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links > a:not(.btn) {
    color: var(--color-text-main);
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    width: calc(100% + 36px);
    height: 18px;
}

.nav-dropdown-toggle {
    border: none;
    background: transparent;
    color: var(--color-text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    color: var(--color-accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    padding: 0.65rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0.65rem;
    border-radius: 6px;
    color: var(--color-text-main);
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.3px;
}

.nav-dropdown-menu a:hover {
    background: rgba(197, 160, 89, 0.15);
    color: #ffffff;
}

.nav-item.has-dropdown:hover .nav-dropdown-menu,
.nav-item.has-dropdown:focus-within .nav-dropdown-menu,
.nav-item.has-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--color-text-main);
}

.nav-phone i {
    color: var(--color-accent);
}

.nav-cta.nav-cta-solid {
    padding: 0.7rem 1.2rem;
    font-size: 0.74rem;
    letter-spacing: 1px;
}

.hero.hero-humanized {
    height: auto;
    min-height: 88vh;
    padding: 9rem 5% 4.5rem;
}

.hero.consult-hero {
    height: auto;
    min-height: 52vh;
    padding: 9rem 0 4.5rem;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    white-space: normal;
    margin-bottom: 1.5rem;
}

.hero-visual {
    position: relative;
    justify-self: end;
    max-width: 560px;
}

.hero-visual img {
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.eva-photo {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
}

.hero-visual-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.trust-proof {
    padding-top: 5rem;
}

.trust-logo-bar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    text-align: center;
}

.trust-main-title {
    color: var(--color-text-main-light);
    margin-bottom: 0.45rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.trust-logo-subtitle {
    color: var(--color-text-main-light);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.85;
    font-size: 1rem;
}

.trust-logo-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.trust-logo-items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    background: var(--color-surface-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    color: var(--color-text-main-light);
}

.trust-logo-items span i {
    color: var(--color-accent);
    font-size: 0.95rem;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.impact-card {
    background: #101010;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.22);
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.impact-stars {
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
}

.impact-card h3 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.theme-light .impact-card p {
    color: #ffffff !important;
}

.foundations {
    background: #0f0f0f;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.foundation-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.24);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.foundation-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.5);
}

.foundation-card i {
    font-size: 1.7rem;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

.foundation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.foundation-card p {
    color: var(--color-text-main);
    margin: 0;
    font-size: 0.93rem;
}

.pillars-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillars-grid .expertise-card {
    padding: 2.4rem 1.8rem;
}

.pillars-grid .expertise-card p {
    min-height: 72px;
}

.elite-programs {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.elite-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.elite-track {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.elite-track h3 {
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.elite-track-grid {
    display: grid;
    gap: 0.85rem;
}

.elite-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
}

.elite-item i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.impact-metrics {
    background: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.6rem;
}

.metric-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 10px;
    padding: 1.35rem 1rem;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.metric-label {
    color: var(--color-text-main);
    font-size: 0.88rem;
    line-height: 1.4;
}

.why-practione {
    border-top: 1px solid var(--color-border-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1.5rem;
    align-items: start;
}

.why-content p {
    color: rgba(33, 33, 33, 0.82);
    margin-bottom: 1rem;
}

.why-list {
    list-style: none;
    margin-top: 1rem;
}

.why-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.65rem;
    color: rgba(33, 33, 33, 0.82);
}

.why-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.team-card {
    background: #101010;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.team-card-visual {
    margin: -2rem -1.6rem 1.5rem;
    position: relative;
    padding: 1.25rem 1.25rem 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.32), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 100%);
}

.team-card-photo {
    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: 0 24px 35px rgba(0, 0, 0, 0.35);
}

.team-card .section-label,
.team-card h3 {
    color: #ffffff;
}

.team-card p {
    color: #ffffff;
    margin-bottom: 1.4rem;
}

.theme-light .team-card p {
    color: #ffffff !important;
}

.team-card .btn {
    width: 100%;
    justify-content: center;
}

.construction-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5rem 1.5rem 3rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(197, 160, 89, 0.12), transparent 28%),
        linear-gradient(180deg, #060606 0%, #101010 100%);
}

.construction-card {
    width: min(100%, 760px);
    padding: 3rem;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.26);
    background: rgba(10, 10, 10, 0.84);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.construction-logo {
    display: inline-flex;
    margin-bottom: 2rem;
}

.construction-logo img {
    width: 110px;
    height: auto;
}

.construction-card .section-label {
    margin-bottom: 1rem;
}

.construction-card .section-title {
    margin-bottom: 1rem;
}

.construction-card p {
    max-width: 38rem;
    margin: 0 auto;
    color: var(--color-text-soft);
}

.construction-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.section-divider-wrap {
    padding: 0 0 0.9rem;
}

.section-divider-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0) 0%,
        rgba(197, 160, 89, 0.2) 12%,
        rgba(197, 160, 89, 0.55) 50%,
        rgba(197, 160, 89, 0.2) 88%,
        rgba(10, 10, 10, 0) 100%
    );
}

.insights {
    border-top: none;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.insight-card {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    padding: 1.5rem;
    background: #ffffff;
}

.insight-card i {
    font-size: 1.6rem;
    color: var(--color-accent);
    margin-bottom: 0.7rem;
}

.insight-card h3 {
    color: var(--color-text-main-light);
    margin-bottom: 0.8rem;
}

.insight-card p {
    color: var(--color-text-muted-light);
    margin-bottom: 1rem;
}

.insight-card a {
    color: var(--color-text-main-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.insight-card a:hover {
    color: var(--color-accent);
}

.pre-footer {
    background: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.conversion-main {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.5rem;
}

.conversion-main h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.conversion-main p {
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
}

.conversion-secondary {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 14px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.conversion-secondary-text {
    margin-bottom: 1rem;
    color: var(--color-text-main);
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 0.55rem;
    row-gap: 0.25rem;
}

.conversion-secondary-intro {
    font-style: italic;
    opacity: 0.96;
}

.conversion-secondary-highlight {
    color: #f3e2ba;
    font-weight: 600;
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background: transparent;
    color: var(--color-text-main);
    padding: 0.75rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.form-control:focus {
    outline: none;
    border-color: rgba(197, 160, 89, 0.7);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.form-control::placeholder {
    color: #ffffff;
}

.form-control-light {
    color: var(--color-text-main-light);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.form-control-light::placeholder {
    color: rgba(10, 10, 10, 0.45);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--color-text-main);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.footer-grid.footer-grid-four {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.footer-logo {
    width: auto;
    height: auto;
    max-height: 138px;
    margin-bottom: 1.25rem;
    object-fit: contain;
    image-rendering: auto;
}

.consult-intake {
    background: var(--color-bg-light);
}

.intake-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
}

.intake-trust-panel {
    background: #0e0e0e;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 1.8rem;
    color: #ffffff;
    position: sticky;
    top: 130px;
}

.intake-trust-panel h2 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.intake-trust-panel p {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.65;
}

.theme-light .intake-trust-panel p,
.theme-light .intake-step p,
.theme-light .intake-contact {
    color: #ffffff !important;
}

.intake-step-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.intake-step {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0.7rem;
    align-items: center;
}

.intake-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.84rem;
}

.intake-step p {
    margin: 0;
    font-size: 0.93rem;
    color: #ffffff;
    font-weight: 500;
}

.confidentiality-badge {
    margin-top: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 999px;
    font-size: 0.82rem;
    color: #ffffff;
}

.intake-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.intake-contact a {
    color: #ffffff;
    text-decoration: underline;
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.24), transparent 40%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(16, 16, 16, 0.94));
}

.privacy-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.privacy-hero-subtitle {
    max-width: 760px;
    color: #ffffff;
}

.privacy-last-updated {
    color: #ffffff;
    font-size: 0.96rem;
}

.privacy-policy-shell {
    background: #ffffff;
}

.privacy-policy-layout {
    display: block;
    max-width: 860px;
    margin: 0 auto;
}

.privacy-policy-card {
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.policy-section + .policy-section {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.policy-section h2 {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
    font-size: 1.22rem;
    font-weight: 600;
}

.policy-section-number {
    display: inline;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.policy-section p {
    color: #2f2f2f;
    line-height: 1.75;
    margin-bottom: 0.8rem;
}

.policy-section ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.policy-section li {
    position: relative;
    padding-left: 1.15rem;
    color: #2f2f2f;
    line-height: 1.75;
}

.policy-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.policy-contact-signoff {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
}

.policy-contact-signoff span,
.policy-contact-signoff a {
    color: var(--color-text-main-light);
    font-weight: 500;
}

.policy-contact-signoff a:hover {
    color: var(--color-accent);
}

.intake-form-panel {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.6rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.wizard-form {
    display: grid;
    gap: 1.2rem;
}

.wizard-progress {
    margin-bottom: 0.4rem;
}

.wizard-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.wizard-step-text {
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-text-muted-light);
}

.wizard-step-title {
    font-size: 0.9rem;
    color: var(--color-text-main-light);
    font-weight: 600;
}

.wizard-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.wizard-progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #b88f3e 0%, #d8b263 100%);
    transition: width var(--transition-fast);
}

.form-step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
}

.form-step.is-active {
    display: block;
}

.form-step legend {
    font-size: 1.3rem;
    color: var(--color-text-main-light);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-group {
    display: grid;
    gap: 0.42rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--color-text-main-light);
    font-size: 0.87rem;
    font-weight: 500;
}

.form-group label span {
    font-weight: 400;
    color: var(--color-text-muted-light);
}

.choice-grid,
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.choice-grid label,
.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 0.55rem 0.6rem;
    color: var(--color-text-main-light);
    font-size: 0.85rem;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.wizard-prev,
.wizard-next,
.wizard-submit {
    flex: 1;
}

.wizard-submit {
    display: none;
}

.wizard-form.is-final-step .wizard-submit {
    display: inline-flex;
}

.wizard-form.is-final-step .wizard-next {
    display: none;
}

.form-success-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
}

.form-success-modal.open {
    display: block;
}

.form-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-success-dialog {
    position: relative;
    width: min(520px, calc(100% - 2rem));
    margin: 12vh auto 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
    z-index: 1;
}

.form-success-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    border: none;
    background: transparent;
    color: #3f3f3f;
    cursor: pointer;
    font-size: 1.15rem;
}

.form-success-icon {
    font-size: 2.8rem;
    color: #3c9a57;
    margin-bottom: 0.6rem;
}

.form-success-dialog h3 {
    color: #0a0a0a;
    margin-bottom: 0.7rem;
}

.form-success-dialog p {
    color: #3d3d3d;
    margin-bottom: 1.2rem;
}

.scroll-indicator.scroll-indicator-text {
    height: auto;
    width: auto;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text-main);
    font-size: 0.78rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 999px;
}

.scroll-indicator.scroll-indicator-text i {
    color: var(--color-accent);
    font-size: 0.95rem;
}

.scroll-indicator.scroll-indicator-text .ph-arrow-down {
    animation: bounceArrow 1.4s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

@media (max-width: 1200px) {
    .scroll-indicator {
        bottom: 10px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lead-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid.footer-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .hero.hero-humanized {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-self: stretch;
    }

    .impact-cards,
    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .foundation-grid,
    .elite-tracks,
    .why-grid,
    .intake-layout {
        grid-template-columns: 1fr;
    }

    .intake-trust-panel {
        position: relative;
        top: 0;
    }

    .privacy-policy-layout {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.95rem 0;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 92px;
        margin: -16px 0;
    }

    .nav-links {
        align-items: center;
        overflow-y: auto;
        padding: 1rem 0 2rem 0;
        gap: 0;
    }

    .nav-links > a,
    .nav-item {
        width: 85%;
        max-width: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        text-align: center;
    }

    .nav-item.has-dropdown::after {
        display: none;
    }

    .nav-links > a {
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: var(--color-text-main) !important;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--color-text-main);
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
        margin-top: 0;
        padding: 0.3rem 0 0.6rem 1.2rem;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .nav-dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: var(--color-text-main);
        border-radius: 0;
    }

    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--color-accent);
    }

    .nav-item.has-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-phone {
        justify-content: flex-start;
        margin-top: 1.5rem;
        border: none;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .nav-cta.nav-cta-solid {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .trust-logo-items,
    .impact-cards,
    .pillars-grid,
    .metrics-grid,
    .insights-grid,
    .lead-grid,
    .form-grid,
    .choice-grid,
    .checkbox-grid,
    .footer-grid.footer-grid-four {
        grid-template-columns: 1fr;
    }

    .team-card-visual {
        margin: -2rem -1.6rem 1.25rem;
    }

    .construction-page {
        padding-top: 6.5rem;
    }

    .construction-card {
        padding: 2.25rem 1.5rem;
    }

    .privacy-policy-card {
        padding: 1.35rem;
    }

    .policy-section h2 {
        font-size: 1.08rem;
    }

    .wizard-actions {
        flex-direction: column;
    }

    .section-padding {
        padding: 5.5rem 0;
    }

    .section-divider-wrap {
        padding-bottom: 0.55rem;
    }

    .scroll-to-top {
        right: 1rem;
        bottom: 1rem;
    }

    .scroll-indicator.scroll-indicator-text {
        display: none; /* Hide on mobile to prevent overlapping */
    }
}
