/* =============================================
   CFE VENTURE V2 - LUXURY EDITION
   Premium M&A Consulting Website
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */

:root {
    /* DARK LUXURY THEME (User Approved) */
    --primary: #D4AF37;
    /* Bright Premium Gold */
    --primary-hover: #F2C94C;

    --surface-dark: #050B14;
    /* Deepest Navy (Background) */
    --surface-card: #0F172A;
    /* Lighter Navy (Cards) */
    --surface-light: #F5F3EF;
    /* Cream (Accents) */

    --text-primary: #FFFFFF;
    /* White Text */
    --text-secondary: #94A3B8;
    /* Muted Blue-Gray */
    --text-gold: #D4AF37;

    /* Legacy mapping for Sub-Pages */
    --gold: var(--primary);
    --gold-light: var(--primary-hover);
    --gold-dark: #A67C00;

    --navy: var(--surface-dark);
    --navy-light: var(--surface-card);
    /* Map Navy Light to Card Surface */
    --navy-lighter: #1E293B;

    --cream: var(--surface-dark);
    /* FORCE Cream backgrounds to Dark Navy */
    --cream-dark: var(--surface-card);
    /* FORCE Gray backgrounds to Card Navy */
    --white: #FFFFFF;

    --surface-gray: var(--surface-card);
    /* Vital for Cards */

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    /* Added for Stats/Numbers */
    --font-body: 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.125rem;
    --space-sm: 0.25rem;
    --space-md: 0.5rem;
    --space-lg: 0.75rem;
    --space-xl: 1rem;
    --space-2xl: 1rem;
    --space-3xl: 1.25rem;
    --space-4xl: 1.5rem;
    --space-5xl: 2rem;
    /* CRITICAL: Aggressively reduced for high-density layout */

    /* Layout */
    --container-max: 1400px;
    --container-padding: 1rem;
    /* Reduced from 2rem */

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-normal: 0.4s;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--surface-dark);
    /* DARK MODE ACTIVE */
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background-color: var(--gold);
    color: var(--navy);
}

/* =============================================
   PRELOADER
   ============================================= */

.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
}

.preloader-line {
    width: 120px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    animation: preloaderLine 1.5s var(--ease-in-out) infinite;
}

@keyframes preloaderLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: transform 0.15s var(--ease-out-expo), opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .cursor-follower,
body:hover .cursor-dot {
    opacity: 1;
}

.cursor-follower.hover {
    transform: scale(1.5);
    background-color: rgba(201, 169, 98, 0.1);
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =============================================
   TOP BAR
   ============================================= */

.top-bar {
    background-color: var(--navy);
    padding: var(--space-sm) 0;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    color: var(--text-muted);
}

.top-bar-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
}

.top-bar-link {
    color: var(--gold);
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--gold-light);
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--surface-dark);
    /* Navy background */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) 0;
}


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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    /* White explicitly for transparent header */
    letter-spacing: 0.05em;
    transition: color var(--duration-normal);
}

.header.scrolled .logo-main {
    color: var(--gold);
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.35em;
    margin-top: 4px;
    opacity: 0.8;
}

.header:not(.scrolled) .logo-main {
    color: var(--gold);
}

.header:not(.scrolled) .logo-sub {
    color: var(--text-muted);
}

/* Navigation */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    position: relative;
    padding: var(--space-sm) 0;
    overflow: hidden;
}

.header:not(.scrolled) .nav-link {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transform: translateX(-101%);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: translateX(0);
}

/* Header CTA wrapper for multi-line support */
.header-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background-color: var(--gold);
    color: var(--navy);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.header-cta-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-right: 4px;
}

.header.scrolled .header-cta-sub {
    color: var(--text-secondary);
}

.header-cta:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-cta svg {
    transition: transform var(--duration-fast);
}

.header-cta:hover svg {
    transform: translateX(4px);
}

/* Menu Toggle */
.menu-toggle {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.header:not(.scrolled) .menu-toggle span {
    background-color: var(--white);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--navy);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-3xl);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-menu-footer {
    margin-top: var(--space-3xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out-expo) 0.3s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    /* Safety for clicking */
    z-index: 10;
    /* Force above overlays */
}

.btn svg {
    transition: transform var(--duration-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--navy-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 0.9375rem;
}

/* Link Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold-dark);
    transition: all var(--duration-fast);
}

.link-arrow svg {
    transition: transform var(--duration-fast);
}

.link-arrow:hover {
    color: var(--gold);
}

.link-arrow:hover svg {
    transform: translateX(6px);
}

/* =============================================
   SECTION LABELS & TITLES
   ============================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.label-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.label-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title-lg {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
}

.title-italic {
    font-style: italic;
    color: var(--gold-dark);
}

.title-accent {
    color: var(--gold);
}

.section-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-text-lg {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--navy);
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-centered .hero-label {
    justify-content: center;
}

.hero-content-centered .hero-text {
    margin-left: auto;
    margin-right: auto;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-label .label-line {
    width: 60px;
}

.hero-label span:last-child {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-visual {
    display: none;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
}

.hero-card-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.hero-card-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-card-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s var(--ease-in-out) infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0.3;
    }
}

/* =============================================
   MARQUEE
   ============================================= */

.marquee-section {
    background-color: var(--navy);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: var(--space-2xl);
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
}

.marquee-divider {
    color: var(--gold);
    font-size: 0.75rem;
}

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

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

/* Infinite Image Marquee */
.image-marquee-section {
    padding: var(--space-3xl) 0;
    background-color: var(--surface-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.image-marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.image-marquee-content {
    display: flex;
    gap: var(--space-xl);
    animation: imageMarquee 40s linear infinite;
}

.image-marquee-item {
    flex: 0 0 400px;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: filter var(--duration-normal);
}

.image-marquee-item:hover img {
    filter: brightness(0.9) contrast(1.1);
}

.image-marquee-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.image-marquee-label {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

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

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

/* =============================================
   ABOUT PREVIEW
   ============================================= */

.about-preview {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-preview-content .section-text {
    margin-bottom: var(--space-lg);
}

.about-preview-content .link-arrow {
    margin-top: var(--space-xl);
}

.visual-frame {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.visual-stat {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.03);
}

.vs-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
}

.vs-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.vs-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    letter-spacing: 0.02em;
}

.visual-quote {
    position: relative;
    z-index: 1;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.services-section .section-header {
    max-width: 600px;
    margin-bottom: var(--space-3xl);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    background-color: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out-expo);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--cream-dark);
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    transition: color var(--duration-fast);
}

.service-card:hover .service-card-number {
    color: var(--gold-light);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.service-card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-card-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: var(--space-lg);
    position: relative;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background-color: var(--gold);
}

.service-card-link {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.service-card:hover .service-card-link {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.services-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* =============================================
   TRANSACTIONS SECTION
   ============================================= */

.transactions-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.transactions-section .section-header {
    margin-bottom: var(--space-3xl);
}

.transactions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.transaction-card {
    background-color: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.transaction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.transaction-sector {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
}

.transaction-year {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.transaction-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.transaction-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.transaction-metrics {
    display: flex;
    gap: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: var(--space-lg);
}

.transaction-metrics .metric {
    display: flex;
    flex-direction: column;
}

.transaction-metrics .metric-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gold-dark);
}

.transaction-metrics .metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.transaction-tags {
    display: flex;
    gap: var(--space-sm);
}

.tag {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--white);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.transactions-cta {
    margin-top: var(--space-2xl);
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */

.testimonial-section {
    padding: var(--space-5xl) 0;
    background-color: var(--navy);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 12rem;
    color: var(--gold);
    opacity: 0.1;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    position: relative;
    z-index: 1;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */

.philosophy-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.philosophy-content {
    max-width: 500px;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.value-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background-color: var(--surface-card);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-card);
    border-radius: var(--radius-md);
    color: var(--gold-dark);
    flex-shrink: 0;
}

.value-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* =============================================
   INSIGHTS SECTION
   ============================================= */

.insights-section {
    padding: var(--space-5xl) 0;
    background-color: var(--white);
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.insight-card {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insight-card.featured {
    background-color: var(--navy);
}

.insight-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: var(--space-lg);
}

.insight-card-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
}

.insight-badge {
    position: relative;
    z-index: 1;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
}

.insight-card-content {
    padding: var(--space-xl);
}

.insight-card.featured .insight-card-content {
    padding: var(--space-2xl);
}

.insight-category {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: var(--space-sm);
}

.insight-date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: var(--space-md);
}

.insight-card.featured .insight-date {
    color: var(--text-muted);
}

.insight-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.insight-card.featured .insight-title {
    color: var(--white);
    font-size: 1.5rem;
}

.insight-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.insight-card.featured .insight-excerpt {
    color: var(--text-muted);
}

.insight-card.featured .link-arrow {
    color: var(--gold);
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-3xl);
}

.footer-logo .logo-main {
    font-size: 2rem;
}

.footer-tagline {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.footer-newsletter p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9375rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form .btn {
    padding: var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-column h5 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--duration-fast);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--white);
}

/* =============================================
   ANIMATIONS (AOS Alternative)
   ============================================= */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet */
@media (min-width: 768px) {
    :root {
        --container-padding: 3rem;
    }

    .nav {
        display: block;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-visual {
        display: block;
    }

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

    .about-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .philosophy-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

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

    .insight-card.featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .insight-card.featured .insight-card-image {
        height: auto;
        min-height: 300px;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title-lg {
        font-size: 3.5rem;
    }

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

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

    .testimonial-quote {
        font-size: 2rem;
    }

    .insights-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .insight-card.featured {
        grid-column: 1;
        grid-row: span 2;
        display: flex;
        flex-direction: column;
    }

    .insight-card.featured .insight-card-image {
        flex: 1;
    }

    .cta-title {
        font-size: 3.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    :root {
        --container-max: 1400px;
    }

    .hero-title {
        font-size: 5.5rem;
    }
}

/* Hide cursor on touch devices */
@media (hover: none) {

    .cursor-follower,
    .cursor-dot {
        display: none;
    }
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */

.page-hero {
    position: relative;
    padding: calc(var(--space-5xl) + 80px) 0 var(--space-4xl);
    background-color: var(--navy);
    overflow: hidden;
}

.page-hero.compact {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb span:last-child {
    color: var(--gold);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.page-hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */

.services-stats {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-block {
    padding: var(--space-lg);
}

.stat-block .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold-dark);
}

.stat-block .stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dark);
}

.stat-block .stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-sm);
}

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

.services-detail-section.dark {
    background-color: var(--navy);
}

.section-intro {
    max-width: 600px;
    margin-bottom: var(--space-4xl);
}

.section-intro.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-text-lg.light,
.section-title-lg.light {
    color: var(--white);
}

.section-title-lg.light .title-italic {
    color: var(--gold);
}

.service-detail-block {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.services-detail-section.dark .service-detail-block {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.detail-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: var(--cream-dark);
    line-height: 1;
}

.services-detail-section.dark .detail-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-detail-block.light .detail-number {
    color: rgba(255, 255, 255, 0.1);
}

.detail-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    padding-top: var(--space-md);
}

.service-detail-block.light .detail-title {
    color: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

.detail-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.service-detail-block.light .detail-intro {
    color: var(--text-muted);
}

/* Amazon-Style Feature Grid (Restored) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.feature-card {
    padding: var(--space-lg);
    border-top: 3px solid var(--primary);
    /* Gold Accent */
    background-color: var(--surface-gray);
    border-radius: var(--radius-sm);
    transition: transform var(--duration-normal);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--surface-card);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold-light);
}

@media (max-width: 768px) {
    .features-grid {
        gap: var(--space-md);
        margin-top: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #60A5FA;
    /* Digital Blue (Readable on Navy) */
    margin-bottom: var(--space-xs);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    /* Force Light Gray #94A3B8 */
    line-height: 1.6;
}

.service-detail-block.light .feature-item h4 {
    color: var(--white);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.service-detail-block.light .feature-item p {
    color: var(--text-muted);
}

.visual-card {
    background-color: var(--surface-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card.dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.visual-card-stat {
    text-align: center;
}

.vcs-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.vcs-label {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 250px;
}

.visual-card.dark .vcs-label {
    color: var(--text-muted);
}

.process-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--cream);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.process-step .step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-step .step-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* Approach Section */
.approach-section {
    padding: var(--space-5xl) 0;
    background-color: var(--cream);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.approach-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    color: var(--gold-dark);
}

.approach-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.approach-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.story-section {
    padding: var(--space-5xl) 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.story-content .section-text {
    margin-bottom: var(--space-lg);
}

.story-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.story-stat {
    background-color: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.ss-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold-dark);
}

.ss-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-sm);
    display: block;
}

.values-section {
    padding: var(--space-5xl) 0;
    background-color: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.value-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--gold-dark);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-section {
    padding: var(--space-5xl) 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.team-card {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 240px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-initials {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--gold);
}

.team-content {
    padding: var(--space-xl);
}

.team-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.team-role {
    font-size: 0.875rem;
    color: var(--gold-dark);
    font-weight: 500;
    display: block;
    margin-bottom: var(--space-md);
}

.team-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.team-social a:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.partners-section {
    padding: var(--space-5xl) 0;
    background-color: var(--cream);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.partner-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.partner-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.partner-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.partner-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* =============================================
   INSIGHTS PAGE STYLES
   ============================================= */

.featured-insight-section {
    padding: var(--space-4xl) 0;
    background-color: var(--surface-dark);
}

.featured-insight-card {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--surface-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-insight-image {
    height: 220px;
    /* Reduced from 280px for Cinematic 21:9 ratio */
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: var(--space-xl);
}

.featured-insight-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
}

.insight-badge-lg {
    position: relative;
    z-index: 1;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
}

.featured-insight-content {
    padding: var(--space-2xl);
}

.insight-meta {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: var(--space-md);
}

.featured-insight-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.featured-insight-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.featured-insight-meta {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.featured-insight-meta .meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.insights-filter-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-tab {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background-color: var(--cream);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--gold);
    color: var(--navy);
}

.insights-grid-section {
    padding: var(--space-4xl) 0;
    background-color: var(--surface-dark);
}

.insights-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.insight-card-full {
    background-color: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.insight-card-full:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.icf-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: var(--space-lg);
}

.icf-image.alt {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.icf-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    background-color: var(--white);
    color: var(--navy);
    border-radius: var(--radius-sm);
}

.icf-content {
    padding: var(--space-xl);
}

.icf-category {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: var(--space-sm);
}

.icf-date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: var(--space-md);
}

.icf-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.icf-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.load-more {
    text-align: center;
    margin-top: var(--space-3xl);
}

.newsletter-section {
    padding: var(--space-4xl) 0;
    background-color: var(--navy);
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.newsletter-text {
    color: var(--text-muted);
}

.newsletter-form-lg {
    display: flex;
    gap: var(--space-sm);
    flex-direction: column;
}

.newsletter-form-lg input {
    flex: 1;
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form-lg input::placeholder {
    color: var(--text-muted);
}

.newsletter-form-lg input:focus {
    outline: none;
    border-color: var(--gold);
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

.contact-form-wrapper {
    max-width: 600px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--duration-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.form-disclaimer {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.form-success {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-card);
    border-radius: 50%;
    margin: 0 auto var(--space-xl);
    color: var(--gold-dark);
}

.form-success h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.form-success p {
    color: var(--text-secondary);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-card {
    background-color: var(--surface-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-card);
    border-radius: var(--radius-md);
    color: var(--gold-dark);
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-content a {
    font-weight: 500;
    color: var(--text-primary);
}

.method-content a:hover {
    color: var(--gold-dark);
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.office h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.office address {
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-card.highlight h3 {
    color: var(--white);
}

.contact-info-card.highlight p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.contact-info-card.highlight .link-arrow {
    color: var(--gold);
}

.faq-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.faq-item {
    background-color: var(--surface-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE - INNER PAGES
   ============================================= */

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 5rem;
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }

    .detail-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }

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

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

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

    .featured-insight-card {
        grid-template-columns: 1fr 1.5fr;
    }

    .featured-insight-image {
        height: auto;
        min-height: 350px;
    }

    .insights-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-card {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form-lg {
        flex-direction: row;
    }

    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nav {
        display: block;
    }

    .header-cta {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

    .insights-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* =============================================
   TRANSACTION CARD (User Requested "Deep Gold" Style)
   ============================================= */

.transaction-card {
    background-color: var(--surface-card);
    /* Navy Card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.transaction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    /* Deep Gold Border on Hover */
}

/* Card Typography */
.deal-type {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    /* Light Gray */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.deal-year {
    font-size: 0.875rem;
    color: var(--primary);
    /* Deep Gold #B89A55 */
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.deal-industry {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    /* White Title */
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.deal-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    /* Light Gray */
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Stats Row */
.deal-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
}

.deal-amount {
    font-size: 1.5rem;
    color: var(--primary);
    /* Deep Gold #B89A55 */
    font-family: var(--font-display);
    display: block;
    margin-bottom: 0px;
    font-weight: 500;
}

.deal-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    /* Light Gray */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* =============================================
   GLOBAL TWEAKS
   ============================================= */
html {
    scroll-behavior: smooth;
    /* User Requested Smooth Scroll */
}

/* =============================================
   POPULATED CONTENT (Images)
   ============================================= */
.featured-insight-image {
    background-image: url('../images/luxury_meeting.png');
    background-size: cover;
    background-position: center;
}

.icf-image {
    background-image: url('../images/architecture_blue.png');
    background-size: cover;
    background-position: center;
}

.icf-image.alt {
    background-image: url('../images/luxury_meeting.png');
}