/*
Theme Name: Hybrid Capital
Theme URI: http://localhost:8080
Author: Your Name
Description: Modern WordPress theme for Hybrid Capital inspired by Palantir and Webflow
Version: 1.0
Text Domain: hybrid-capital
*/

:root {
    /* Light theme as default - Hybrid Capital Brand Colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f8f8;
    --color-bg-tertiary: #f0f0f0;
    --color-bg-card: #ffffff;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #5a5a5a;
    --color-text-tertiary: #8a8a8a;
    --color-text-muted: #8a8a8a;

    /* Hybrid Capital Brand Colors */
    --color-orange: #0066ff;
    --color-orange-hover: #0052cc;
    --color-orange-light: rgba(0, 102, 255, 0.1);
    --color-accent-blue: #0066ff;
    --color-accent-blue-hover: #0052cc;
    --color-accent-blue-light: rgba(0, 102, 255, 0.1);

    /* Primary accent is blue */
    --color-accent: #0066ff;
    --color-accent-hover: #0052cc;
    --color-accent-light: rgba(0, 102, 255, 0.1);

    /* Secondary accent is blue */
    --color-accent-secondary: #0066ff;
    --color-accent-secondary-hover: #0052cc;
    --color-accent-secondary-light: rgba(0, 102, 255, 0.1);

    --color-success: #00cc88;
    --color-warning: #ffaa00;

    /* Gradients with brand colors */
    --gradient-accent: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --gradient-purple: linear-gradient(135deg, #6941C6 0%, #5835A8 100%);
    --gradient-mixed: linear-gradient(135deg, #0066ff 0%, #6941C6 100%);
    --gradient-hero: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 102, 255, 0.05) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, rgba(105, 65, 198, 0.03) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, rgba(0, 102, 255, 0.02) 0px, transparent 50%);

    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-hover: rgba(0, 102, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1440px;
}

[data-theme="dark"] {
    --color-bg-primary: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-tertiary: #141414;
    --color-bg-card: #0f0f0f;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-tertiary: #707070;
    --color-text-muted: #707070;

    /* Hybrid Capital Brand Colors in Dark Mode */
    --color-orange: #0066ff;
    --color-orange-hover: #0052cc;
    --color-orange-light: rgba(0, 102, 255, 0.15);
    --color-purple: #7B5ACC;
    --color-purple-hover: #8E6FD8;
    --color-purple-light: rgba(105, 65, 198, 0.15);

    /* Primary accent is blue in dark mode too */
    --color-accent: #0066ff;
    --color-accent-hover: #0052cc;
    --color-accent-light: rgba(0, 102, 255, 0.15);

    /* Secondary accent is purple */
    --color-accent-secondary: #7B5ACC;
    --color-accent-secondary-hover: #8E6FD8;
    --color-accent-secondary-light: rgba(105, 65, 198, 0.15);

    --color-success: #00cc88;
    --color-warning: #ffaa00;
    --border-color: rgba(255, 255, 255, 0.06);
    --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    --gradient-card: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 102, 255, 0.08) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, rgba(0, 102, 255, 0.05) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, rgba(0, 102, 255, 0.03) 0px, transparent 50%);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 20px;
    }
}

/* Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.95);
}

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

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.site-logo:hover {
    opacity: 0.8;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.main-navigation a:hover {
    color: var(--color-text-primary);
}

/* Dropdown Menu Styles */
.main-navigation .has-dropdown {
    position: relative;
}

.main-navigation .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    list-style: none;
    margin-top: 0.5rem;
}

.main-navigation .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .dropdown-menu li {
    display: block;
}

.main-navigation .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.main-navigation .dropdown-menu a:hover {
    background: var(--color-bg-secondary);
    color: var(--color-accent-blue);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-primary);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.9;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    font-weight: 300;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-text-primary);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-dark {
    background: var(--color-bg-primary);
}

.section-darker {
    background: var(--color-bg-secondary);
}

.section-gradient {
    background: var(--gradient-card);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.1);
}

.card:hover::before {
    opacity: 1;
}

/* Service Carousel Cards */
.service-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-carousel::-webkit-scrollbar {
    display: none;
}

.service-carousel-card {
    flex: 0 0 600px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.service-carousel-card:hover {
    transform: scale(1.02);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.service-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 3;
    color: white;
}

.service-card-logo {
    width: 120px;
    height: 40px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.service-card-logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.service-card-stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.service-card-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 250px;
    line-height: 1.4;
}

.service-card-testimonial {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.service-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-card-cta {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: black;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    z-index: 4;
}

.service-card-cta:hover {
    transform: scale(1.05);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: var(--color-accent-blue);
    transform: scale(1.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

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

.card-description {
    color: var(--color-text-secondary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-accent-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .service-carousel-card {
        flex: 0 0 90vw;
        height: 400px;
    }

    .service-card-content {
        padding: 2rem;
    }

    .service-card-number {
        font-size: 3rem;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-bg-tertiary);
    transition: var(--transition);
}

.team-member:hover .team-member-image {
    transform: scale(1.05);
}

.team-member-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--color-text-muted);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gradient-subtle);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-bg-tertiary);
    border-radius: 8px;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Footer */
/* Footer Minimal */
.footer-minimal {
    background: #ffffff;
    padding: 5rem 0 3rem;
    border-top: 1px solid #e5e5e5;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.footer-email {
    font-size: 0.9375rem;
    color: #0066ff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.7;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1.25rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    font-size: 0.9375rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #000000;
}

.footer-disclaimer {
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #999999;
    margin-bottom: 1rem;
}

.footer-disclaimer strong {
    color: #666666;
}

.footer-disclaimer a {
    color: #999999;
    text-decoration: underline;
}

.footer-disclaimer a:hover {
    color: #666666;
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-copyright p {
    font-size: 0.8125rem;
    color: #999999;
    text-align: center;
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-minimal {
        padding: 4rem 0 2rem;
    }

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

    .footer-brand {
        grid-column: 1;
    }
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--color-bg-primary);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 3rem 0;
    }
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Partner Logo Carousel */
.partner-section {
    padding: 4rem 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
}

.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.partner-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: -0.02em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover span {
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Double the logos for seamless loop */
.logo-carousel-track > * {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo {
        padding: 0 2rem;
    }

    .logo-carousel-track {
        animation-duration: 20s;
    }
}

/* Modern Services Section */
.services-modern {
    display: grid;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-modern-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.service-modern-card:hover {
    padding-left: 2rem;
    background: var(--color-bg-secondary);
}

.service-number {
    position: absolute;
    left: 0;
    top: 4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-modern-card:hover .service-number {
    opacity: 1;
    transform: translateX(0);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
}

.service-modern-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    transition: color 0.3s ease;
}

.service-modern-card:hover .service-modern-title {
    color: var(--color-accent);
}

.service-modern-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    max-width: 500px;
    margin: 0;
}

.service-arrow {
    font-size: 2rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.service-modern-card:hover .service-arrow {
    transform: translateX(10px);
    opacity: 1;
    color: var(--color-accent);
}

.service-hover-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.service-modern-card:hover .service-hover-content {
    opacity: 1;
    transform: translateY(-50%) translateX(-20px);
}

.service-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 400px;
}

.service-detail-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-tertiary);
    border-radius: 100px;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-modern-desc {
        max-width: 100%;
    }

    .service-arrow {
        display: none;
    }

    .service-hover-content {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-modern-card {
        padding: 3rem 0;
    }

    .service-modern-card:hover {
        padding-left: 1rem;
    }

    .service-modern-title {
        font-size: 1.5rem;
    }

    .service-modern-desc {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* ========================================
   MODERN ANIMATIONS & EFFECTS
   Inspired by Ramp, Webflow, Palantir
   ======================================== */

/* Enhanced Color Variables for More Life */
:root {
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --gradient-secondary: linear-gradient(135deg, #00cc88 0%, #00aa77 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-glow: linear-gradient(135deg, #0066ff 0%, #0052cc 50%, #0066ff 100%);
    --color-glow: rgba(0, 102, 255, 0.3);
    --animation-duration: 0.8s;
    --animation-timing: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Typography Animations */
.animate-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg);
    transform-style: preserve-3d;
    animation: textReveal var(--animation-duration) var(--animation-timing) forwards;
}

.animate-text .text-line:nth-child(1) .word:nth-child(1) { animation-delay: 0.1s; }
.animate-text .text-line:nth-child(1) .word:nth-child(2) { animation-delay: 0.2s; }
.animate-text .text-line:nth-child(2) .word:nth-child(1) { animation-delay: 0.3s; }
.animate-text .text-line:nth-child(2) .word:nth-child(2) { animation-delay: 0.4s; }

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
        filter: blur(10px);
    }
    50% {
        transform: translateY(10px) rotateX(-45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.animate-text-fade {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.animate-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Gradient Background */
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Enhanced Buttons with Micro-interactions */
.btn-glow {
    position: relative;
    background: var(--gradient-glow);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* Glassmorphism Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15),
                0 0 0 1px rgba(0, 102, 255, 0.1);
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Particle Effects */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.hero-particles::before {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 50%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Section Transitions */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Loading Skeleton Animation */
.skeleton-loader {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hover Link Effects */
a:not(.btn) {
    position: relative;
    transition: color 0.3s ease;
}

a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: width 0.3s ease;
}

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

/* Performance Optimizations */
.will-animate {
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modern Service Cards Enhancement */
.service-carousel-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-carousel-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15),
                0 0 0 1px rgba(0, 102, 255, 0.2);
}

/* Number Counter Animation */
.stat-number {
    position: relative;
}

.stat-number::after {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   NEW SECTIONS STYLES
   Ramp, Webflow, Palantir Inspired
   ======================================== */

/* Metrics Section */
.metrics-section {
    padding: 5.5rem 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.metrics-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.metric-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    opacity: 0.3;
}

.metric-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.metric-card:hover .metric-number {
    color: var(--color-accent);
    transform: scale(1.05);
}

.metric-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    height: 5rem;
}

.metric-prefix {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-right: 0;
    opacity: 0.8;
}

.metric-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: inline-block;
    min-width: auto;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-suffix {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-left: 0;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-description {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Capital Solutions Section */
.capital-solutions-section {
    padding: 5.5rem 0;
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle-modern {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.capital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.capital-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.capital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capital-card:hover::before {
    opacity: 1;
}

.capital-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

.capital-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: saturate(1.5) brightness(1.2);
}

.capital-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.capital-range {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.capital-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.capital-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.check-icon {
    color: var(--color-accent);
    font-weight: bold;
}

.capital-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.capital-cta:hover {
    gap: 1rem;
    color: var(--color-accent-blue-hover);
}

/* Founders Section */
.founders-section {
    padding: 5.5rem 0;
    background: var(--color-bg-primary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.founder-card {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.founder-image {
    flex-shrink: 0;
}

.founder-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-quote {
    font-style: italic;
    color: var(--color-text-primary);
    padding: 1.5rem;
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.founder-stats {
    display: flex;
    gap: 3rem;
}

.founder-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Why Section */
.why-section {
    padding: 5.5rem 0;
    background: var(--color-bg-secondary);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
}

.why-feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-feature-content p {
    color: var(--color-text-secondary);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Partners Section Modern */
.partners-section-modern {
    padding: 6rem 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--border-color);
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.partner-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.partner-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 7rem 0;
    background: #000000;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Contact Section Modern */
.contact-section-modern {
    padding: 5.5rem 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-item a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1.125rem;
}

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

/* Modern Form Styles */
.contact-form-modern {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.form-group-modern {
    position: relative;
}

.form-group-modern.full-width {
    margin-bottom: 2rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modern label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern input:not(:placeholder-shown),
.form-group-modern textarea:not(:placeholder-shown) {
    border-bottom-color: var(--color-accent);
}

.form-group-modern input:focus + label,
.form-group-modern textarea:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: var(--color-accent);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.success-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    border-radius: 12px;
    color: #48bb78;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-stats {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ========================================
   TESTIMONIALS SECTION - CAROUSEL
   ======================================== */

.testimonials-section {
    padding: 6rem 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.testimonials-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-slide:hover {
    transform: translateY(-5px) scale(1.02);
    background: #0f0f0f;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2),
                0 0 0 1px rgba(0, 102, 255, 0.3);
    border-color: rgba(0, 102, 255, 0.4);
}

.testimonial-slide .company-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    display: block;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-style: italic;
    position: relative;
    text-align: left;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Carousel Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.testimonial-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.testimonial-nav span {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    line-height: 1;
}

.testimonial-nav-prev {
    left: 1rem;
}

.testimonial-nav-next {
    right: 1rem;
}

/* Value Proposition Cards */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-prop-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-prop-card:hover::before {
    opacity: 1;
}

.value-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-prop-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

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

/* Responsive for testimonials carousel */
@media (max-width: 1400px) {
    .testimonial-slide {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonials-carousel-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonial-slide {
        flex: 0 0 calc(90% - 1rem);
        min-width: 260px;
    }

    .testimonials-carousel-wrapper {
        padding: 0;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav-prev {
        left: 0.5rem;
    }

    .testimonial-nav-next {
        right: 0.5rem;
    }
}



/* Metrics Bar Section */
.metrics-bar-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.metrics-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-item {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Platform Overview Section */
.platform-section {
    padding: 6rem 0;
    background: #000;
}

.platform-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.platform-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #999;
    font-weight: 300;
    line-height: 1.4;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.platform-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.platform-card p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.platform-features {
    list-style: none;
    padding: 0;
}

.platform-features li {
    color: #ccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.platform-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* Process Timeline Section */
.process-section {
    padding: 6rem 0;
    background: #fff;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.process-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    font-weight: 300;
    line-height: 1.4;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    top: 30px;
    width: calc(25% - 60px);
    height: 2px;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.3) 100%);
}

.timeline-item:nth-child(1) + .timeline-connector {
    left: calc(12.5% + 30px);
}

.timeline-item:nth-child(3) + .timeline-connector {
    left: calc(37.5% + 30px);
}

.timeline-item:nth-child(5) + .timeline-connector {
    left: calc(62.5% + 30px);
}

.timeline-content h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Success Stories Section */
.success-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
}

.success-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-section .section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.success-section .section-subtitle {
    font-size: 1.25rem;
    color: #999;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.success-type {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-metric {
    margin-bottom: 2rem;
}

.success-metric .metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.success-metric .metric-type {
    font-size: 1rem;
    color: #999;
}

.success-details {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.detail-label {
    color: #666;
    font-size: 0.9rem;
}

.detail-value {
    color: #ccc;
    font-weight: 500;
}

/* Why Hybrid Capital Section (formerly Technology Difference) */
.tech-difference-section {
    padding: 6rem 0;
    background: #000;
}

.tech-difference-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-difference-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.tech-difference-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #999;
    font-weight: 300;
    line-height: 1.4;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.tech-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-wrapper {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.tech-icon {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.tech-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.tech-card p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .metrics-bar {
        flex-direction: column;
        gap: 2rem;
    }

    .metric-item:not(:last-child)::after {
        display: none;
    }

    .platform-grid,
    .success-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }
}
/* Cache bust: 1758741437 */

/* ========================================
   MODERN HERO SECTION - Ramp/Palantir Inspired
   ======================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 5.5rem 0 3rem;
}

/* Animated Grid Background */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    overflow: hidden;
}

.grid-container {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 102, 255, 0.1) 100px, rgba(0, 102, 255, 0.1) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 102, 255, 0.1) 100px, rgba(0, 102, 255, 0.1) 101px);
    animation: gridPulse 20s ease-in-out infinite;
    transform-origin: center;
}

@keyframes gridPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.5;
    }
}

.grid-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 20, 60, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Hero Content */
.hero-modern-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Eyebrow Text with Pulse Dot */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #0066ff;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0066ff;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Modern Hero Title */
.hero-modern-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.03em;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0066ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Hero Subtitle */
.hero-modern-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* Modern CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
}

.btn-modern-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Floating Cards */
.hero-float-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.float-card {
    position: absolute;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.float-1 {
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    bottom: 25%;
    left: 8%;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.float-icon {
    font-size: 2rem;
}

.float-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.float-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .float-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-modern-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

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


/* Float Icon SVG Styling */
.float-icon {
    width: 32px;
    height: 32px;
    color: #0066ff;
}


/* ========================================
   MINIMAL HERO SECTION - martinwolf.com inspired
   ======================================== */

.hero-minimal {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

[data-theme="dark"] .hero-minimal {
    background: #000000;
}

/* Subtle Background Pattern */
.hero-minimal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Content Container */
.hero-minimal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Eyebrow Text */
.hero-eyebrow-minimal {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Main Title */
.hero-minimal-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

[data-theme="dark"] .hero-minimal-title {
    color: #ffffff;
}

/* Subtitle */
.hero-minimal-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #666666;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

[data-theme="dark"] .hero-minimal-subtitle {
    color: #a0a0a0;
}

/* CTA Buttons */
.hero-minimal-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-minimal-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #0066ff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-minimal-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.btn-minimal-primary svg {
    transition: transform 0.3s ease;
}

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

.btn-minimal-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .btn-minimal-secondary {
    color: #ffffff;
    border-color: #333333;
}

.btn-minimal-secondary:hover {
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
}

/* Stats Strip */
.hero-stats-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.stat-minimal {
    text-align: center;
}

.stat-minimal-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .stat-minimal-value {
    color: #ffffff;
}

.stat-minimal-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

[data-theme="dark"] .stat-minimal-label {
    color: #a0a0a0;
}

.stat-minimal-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

[data-theme="dark"] .stat-minimal-divider {
    background: #333333;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-minimal {
        padding: 5.5rem 0 3rem;
        min-height: auto;
    }

    .hero-minimal-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-minimal-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-minimal-primary,
    .btn-minimal-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-minimal {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-minimal-divider {
        width: 60px;
        height: 1px;
    }
}


/* ========================================
   HERO BACKGROUND IMAGE STYLING
   ======================================== */

/* Update hero-minimal-bg for image support */
.hero-minimal .hero-minimal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: none;
    background-size: auto;
}

/* Background Image Layer */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

[data-theme="dark"] .hero-bg-image {
    opacity: 0.08;
}

/* Overlay for better text readability */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 100%
    );
}

[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Gradient fade at bottom */
.hero-bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

[data-theme="dark"] .hero-bg-gradient {
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* Add subtle blue tint overlay */
.hero-minimal-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.03), transparent 70%);
    pointer-events: none;
}


/* Fix background visibility */
.hero-minimal {
    background: transparent !important;
}

.hero-bg-image {
    opacity: 0.25 !important;
    filter: grayscale(20%);
}

[data-theme="dark"] .hero-bg-image {
    opacity: 0.12 !important;
}

.hero-bg-overlay {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.90) 0%,
        rgba(248, 248, 248, 0.85) 100%
    ) !important;
}

[data-theme="dark"] .hero-bg-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.90) 0%,
        rgba(10, 10, 10, 0.85) 100%
    ) !important;
}


/* ========================================
   HERO CARD STYLE - Matching Service Cards
   ======================================== */

.hero-card-style {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Background Image */
.hero-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Dark Gradient Overlay */
.hero-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

/* Content */
.hero-card-content {
    max-width: 900px;
    padding: 4rem 2rem;
    color: white;
}

/* Small label at top */
.hero-card-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Large title */
.hero-card-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Description */
.hero-card-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* Stats Grid */
.hero-card-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Label - positioned on the top border line */
.hero-stats-label {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 102, 255, 0.88) 50%, rgba(26, 26, 26, 0.95) 100%);
    padding: 0.4rem 1rem;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-weight: 400;
}

/* CTA Button */
.hero-card-cta {
    margin-top: 2rem;
}

.hero-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-card-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-card-style {
        min-height: auto;
        padding: 6rem 0;
    }

    .hero-card-content {
        padding: 2rem 1rem;
    }

    .hero-card-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-card-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }
}


/* Update Hero Card Style with Blue Gradient */
.hero-card-style {
    background: #0a1929 !important;
}

.hero-card-bg img {
    opacity: 0.3 !important;
}

/* Blue Gradient Overlay to match brand */
.hero-card-gradient {
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.85) 0%, 
        rgba(0, 82, 204, 0.75) 50%,
        rgba(0, 40, 120, 0.85) 100%) !important;
}

/* Adjust text for blue background */
.hero-card-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-card-description {
    color: rgba(255, 255, 255, 0.95) !important;
}


/* Match M&A Card gradient exactly - dark, not blue */
.hero-card-gradient {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%) !important;
}

.hero-card-style {
    background: #1a1a1a !important;
}

.hero-card-bg img {
    opacity: 0.6 !important;
}


/* ========================================
   MODERN NAVBAR - Premium Aesthetic
   ======================================== */

.site-header-modern {
    position: fixed;
    top: 20px; /* Add space from top so navbar isn't cut off */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .site-header-modern {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrolled state - more opaque */
.site-header-modern.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .site-header-modern.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-modern-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

/* Logo */
.site-logo-modern {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.site-logo-modern:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation */
.nav-modern-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

[data-theme="dark"] .nav-link {
    color: #e0e0e0;
}

.nav-link:hover {
    color: #0066ff;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.has-dropdown-modern:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu - Modern */
.dropdown-modern {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .dropdown-modern {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.has-dropdown-modern:hover .dropdown-modern {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-modern li {
    margin: 0;
}

.dropdown-modern a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

[data-theme="dark"] .dropdown-modern a {
    color: #e0e0e0;
}

.dropdown-modern a:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: #0066ff;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background: #0052cc;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Theme Toggle - Modern */
.theme-toggle-modern {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

[data-theme="dark"] .theme-toggle-modern {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-toggle-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-icon-svg {
    color: #333;
}

[data-theme="dark"] .theme-icon-svg {
    color: #e0e0e0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle-modern {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle-modern span {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .mobile-menu-toggle-modern span {
    background: #e0e0e0;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle-modern.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle-modern.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-modern.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-modern {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        z-index: 999;
    }

    [data-theme="dark"] .nav-modern {
        background: rgba(26, 26, 26, 0.98);
    }

    .nav-modern.active {
        display: block;
    }

    .nav-modern-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 1.5rem;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    [data-theme="dark"] .nav-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
    }

    /* Disable hover-based dropdown on mobile - click only */
    .has-dropdown-modern .dropdown-modern,
    .has-dropdown-modern:hover .dropdown-modern {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-top: 0 !important;
        transition: all 0.3s ease;
        border: none !important;
    }

    /* Only show dropdown when explicitly clicked (dropdown-open class added by JS) */
    .has-dropdown-modern.dropdown-open .dropdown-modern {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px !important;
        padding: 0.5rem 0 0 1rem !important;
    }

    .has-dropdown-modern .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .has-dropdown-modern.dropdown-open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-modern li {
        border-bottom: none;
    }

    .dropdown-modern a {
        padding: 0.75rem 0;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .nav-item-cta {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-cta-btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle-modern {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }
}

/* Small Mobile Devices (480px and under) */
@media (max-width: 480px) {
    .site-header-modern {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 0.5rem 0.75rem;
    }

    .logo-img {
        height: 32px;
    }

    .mobile-menu-toggle-modern {
        padding: 0.5rem;
    }

    .mobile-menu-toggle-modern span {
        width: 20px;
    }

    .nav-modern {
        top: 55px;
        padding: 1rem 0;
    }

    .nav-modern-list {
        padding: 0 1rem;
    }

    .nav-item a {
        padding: 0.75rem 0;
        font-size: 0.9375rem;
    }

    .nav-cta-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Add scroll class with JavaScript */
@media (min-width: 1025px) {
    .nav-modern-list {
        gap: 2rem;
    }
}


/* ========================================
   NAVBAR REFINEMENTS - Remove Blue Accent
   ======================================== */

/* Remove blue hover - keep it neutral */
.nav-link:hover {
    color: #000000 !important;
    opacity: 0.7;
}

[data-theme="dark"] .nav-link:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

/* Subtle dropdown hover */
.dropdown-modern a:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #000000 !important;
}

[data-theme="dark"] .dropdown-modern a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* Simpler CTA button - outline style */
.nav-cta-btn {
    background: transparent !important;
    color: #000000 !important;
    border: 1.5px solid #000000 !important;
}

[data-theme="dark"] .nav-cta-btn {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.nav-cta-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

[data-theme="dark"] .nav-cta-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Cleaner header background */
.site-header-modern {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="dark"] .site-header-modern {
    background: rgba(0, 0, 0, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}


/* ========================================
   FIX CONTENT OVERLAP WITH FIXED NAVBAR
   ======================================== */

main#main-content {
    padding-top: 80px;
}

/* Adjust hero to account for navbar */
.hero-card-style {
    margin-top: 0;
}


/* ========================================
   INTEGRATED NAVBAR/HERO - Edgewater Style
   ======================================== */

.hero-integrated {
    position: relative;
    min-height: 100vh;
    height: auto;
    background: #1a1a1a;
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
}

/* Ensure content fits properly on large screens */
@media (min-width: 1440px) {
    .hero-integrated {
        min-height: 100vh;
        height: auto;
    }
}

/* Ultra-wide screens (2560px and above) */
@media (min-width: 2560px) {
    .hero-integrated {
        min-height: auto;
        height: auto;
        padding-top: 2rem;
        padding-bottom: 6rem;
    }

    .hero-integrated-content {
        padding: 5rem 3rem 8rem;
        max-width: 1800px;
        margin: 0 auto;
    }

    .hero-card-title {
        font-size: 3.5rem;
    }

    .hero-card-description {
        font-size: 1.25rem;
        max-width: 1200px;
    }

    .hero-card-stats {
        gap: 4rem;
    }

    .hero-stat-number {
        font-size: 3rem;
    }
}

/* Remove top padding on homepage since navbar is integrated */
.home main#main-content {
    padding-top: 0 !important;
}

/* Add proper padding for other pages to account for fixed navbar */
.page:not(.home) main#main-content {
    padding-top: 0 !important; /* Reset main padding */
}

/* Adjust hero sections on non-homepage to account for fixed navbar */
.page:not(.home) .hero-premium-page,
.page:not(.home) .hero-services-premium,
.page:not(.home) .hero-ma-premium,
.page:not(.home) .hero-capital-premium,
.page:not(.home) .hero-team-premium,
.page:not(.home) .hero-transactions-premium,
.page:not(.home) .hero-insights-premium {
    padding-top: 10rem !important; /* Adjusted for navbar that's 20px from top */
}

/* For sections that are the first child and not hero sections */
.page:not(.home) section:first-child:not([class*="hero"]) {
    padding-top: 8rem !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .page:not(.home) .hero-premium-page,
    .page:not(.home) .hero-services-premium,
    .page:not(.home) .hero-ma-premium,
    .page:not(.home) .hero-capital-premium,
    .page:not(.home) .hero-team-premium,
    .page:not(.home) .hero-transactions-premium,
    .page:not(.home) .hero-insights-premium {
        padding-top: 8rem !important;
    }

    .page:not(.home) section:first-child:not([class*="hero"]) {
        padding-top: 7rem !important;
    }
}

/* Navbar Inside Hero */
.navbar-integrated {
    position: relative;
    z-index: 100;
    padding: 2rem 0;
}

.navbar-integrated-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-integrated img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-integrated-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-integrated-menu li {
    position: relative;
}

.nav-integrated-menu > li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem 1.25rem;
    display: block;
}

.nav-integrated-menu > li > a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Dropdown in Integrated Nav */
.dropdown-integrated {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem;
    list-style: none;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.has-dropdown-integrated:hover .dropdown-integrated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-integrated li {
    margin: 0;
}

.dropdown-integrated a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-integrated a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Contact Button in Nav */
.nav-contact-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1.25rem 2.5rem !important;
    background: white !important;
    color: #000 !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.nav-contact-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

/* Hero Content Positioning */
.hero-integrated-content {
    padding: 4rem 2rem 6rem;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hide separate header on homepage */
.home .site-header-modern {
    display: none;
}

/* Show header on other pages */
.site-header-modern {
    display: block;
}

/* Integrated menu inside header (non-homepage) - Desktop styles */
.site-header-modern .nav-integrated-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header-modern .nav-integrated-menu > li > a {
    color: #333;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.site-header-modern .nav-integrated-menu > li > a:hover {
    color: #0066ff;
}

.site-header-modern .nav-contact-integrated {
    background: #0066ff !important;
    color: white !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
}

.site-header-modern .nav-contact-integrated:hover {
    background: #0052cc !important;
}

/* Header dropdown for non-homepage */
.site-header-modern .has-dropdown-integrated {
    position: relative;
}

.site-header-modern .dropdown-integrated {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header-modern .has-dropdown-integrated:hover .dropdown-integrated {
    opacity: 1;
    visibility: visible;
}

.site-header-modern .dropdown-integrated a {
    display: block;
    padding: 0.625rem 1rem;
    color: #333;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.site-header-modern .dropdown-integrated a:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

/* Header hamburger menu - dark color for light background */
.site-header-modern .mobile-menu-toggle-integrated span {
    background: #333;
}

/* Mobile styles for header's integrated menu */
@media (max-width: 1024px) {
    .site-header-modern .nav-integrated-menu {
        display: none !important;
    }

    .site-header-modern .nav-integrated-menu.active {
        display: flex !important;
        position: fixed !important;
        top: -10px !important;
        left: -10px !important;
        right: -10px !important;
        bottom: -10px !important;
        width: calc(100vw + 20px) !important;
        height: calc(100vh + 20px) !important;
        height: calc(100dvh + 20px) !important;
        background: #1a1a1a !important;
        z-index: 999999 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 3rem !important;
        padding-top: calc(3rem + 10px) !important;
        padding-left: calc(10% + 10px) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-radius: 0 !important;
        transform: none !important;
        overflow-y: auto !important;
    }

    .site-header-modern .nav-integrated-menu > li {
        width: 100%;
        max-width: 400px;
        opacity: 1;
        transform: none;
    }

    .site-header-modern .nav-integrated-menu > li > a {
        padding: 1rem 0;
        width: 100%;
        display: block;
        font-size: 1.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header-modern .nav-integrated-menu > li > a:hover {
        color: rgba(255, 255, 255, 1);
    }

    /* Contact Us button - left aligned with other nav items */
    .site-header-modern .nav-integrated-menu > li:last-child {
        text-align: left !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .site-header-modern .nav-contact-integrated {
        background: rgba(255, 255, 255, 0.08) !important;
        color: white !important;
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        text-align: left !important;
        margin-top: 1.5rem;
        display: inline-block !important;
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        width: auto !important;
    }

    .site-header-modern .has-dropdown-integrated {
        width: 100%;
    }

    .site-header-modern .has-dropdown-integrated > a {
        padding: 1rem 0 !important;
    }

    /* Mobile dropdown for header - collapsed by default */
    .site-header-modern .dropdown-integrated,
    .site-header-modern .has-dropdown-integrated:hover .dropdown-integrated {
        position: static;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none;
        box-shadow: none;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        transition: all 0.3s ease;
    }

    .site-header-modern .has-dropdown-integrated.dropdown-open .dropdown-integrated {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .site-header-modern .dropdown-integrated a {
        padding: 0.75rem 0 0.75rem 1.5rem !important;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.55) !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .site-header-modern .dropdown-integrated a:hover {
        color: rgba(255, 255, 255, 0.85) !important;
        background: transparent !important;
        padding-left: 2rem !important;
    }

    .site-header-modern .mobile-menu-toggle-integrated {
        display: flex;
    }
}

/* Mobile menu toggle for integrated navbar */
.mobile-menu-toggle-integrated {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle-integrated.active {
    z-index: 9999999 !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
}

.mobile-menu-toggle-integrated span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle-integrated.active span {
    background: white !important;
}

.mobile-menu-toggle-integrated.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle-integrated.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-integrated.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive - Minimalist Mobile Nav matching Hero Aesthetic */
@media (max-width: 1024px) {
    .navbar-integrated-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle-integrated {
        display: flex;
    }

    /* Full-screen overlay with hero-matching dark aesthetic */
    .nav-integrated-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(30px);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .nav-integrated-menu.active {
        display: flex;
        opacity: 1;
    }

    /* Clean, elegant menu items */
    .nav-integrated-menu > li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-integrated-menu.active > li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-integrated-menu.active > li:nth-child(1) { transition-delay: 0.05s; }
    .nav-integrated-menu.active > li:nth-child(2) { transition-delay: 0.1s; }
    .nav-integrated-menu.active > li:nth-child(3) { transition-delay: 0.15s; }
    .nav-integrated-menu.active > li:nth-child(4) { transition-delay: 0.2s; }
    .nav-integrated-menu.active > li:nth-child(5) { transition-delay: 0.25s; }
    .nav-integrated-menu.active > li:nth-child(6) { transition-delay: 0.3s; }

    /* Typography matching desktop hero nav */
    .nav-integrated-menu > li > a {
        padding: 1rem 1.5rem;
        width: 100%;
        display: block;
        font-size: 1.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: -0.01em;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-integrated-menu > li > a:hover {
        color: rgba(255, 255, 255, 1);
        padding-left: 2rem;
    }

    /* Ensure dropdown parent aligns with other menu items */
    .has-dropdown-integrated {
        width: 100%;
    }

    .has-dropdown-integrated > a {
        padding: 1rem 1.5rem !important;
    }

    /* Mobile dropdown - collapsed by default, click to expand */
    .has-dropdown-integrated .dropdown-integrated,
    .has-dropdown-integrated:hover .dropdown-integrated {
        position: static;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none;
        box-shadow: none;
        background: transparent !important;
        backdrop-filter: none;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0;
        border: none !important;
        transition: all 0.3s ease;
    }

    /* Show dropdown only when clicked (dropdown-open class added by JS) */
    .has-dropdown-integrated.dropdown-open .dropdown-integrated {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    .dropdown-integrated li {
        border-bottom: none;
        margin: 0;
    }

    .dropdown-integrated a {
        padding: 0.875rem 1.5rem 0.875rem 3rem !important;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.55) !important;
        transition: all 0.3s ease;
        display: block;
        border-bottom: none !important;
    }

    .dropdown-integrated a:hover {
        color: rgba(255, 255, 255, 0.85) !important;
        padding-left: 3.5rem !important;
    }

    /* Refined CTA button */
    .nav-contact-integrated {
        background: rgba(255, 255, 255, 0.08);
        padding: 1rem 2rem !important;
        border-radius: 8px;
        text-align: center;
        margin-top: 2rem;
        display: inline-block;
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-contact-integrated:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .nav-integrated-menu > li:last-child {
        border-bottom: none;
        padding-top: 1.5rem;
        display: flex;
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

    .logo-integrated img {
        height: 40px;
    }
}


/* ========================================
   MODERN PARTNER SECTION
   ======================================== */

.partners-modern {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

[data-theme="dark"] .partners-modern {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-modern-content {
    text-align: center;
}

.partners-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 3rem;
}

[data-theme="dark"] .partners-eyebrow {
    color: #999999;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    opacity: 0.6;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .partner-item {
    color: #cccccc;
    opacity: 0.5;
}

.partner-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

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

    .partner-item {
        font-size: 1.125rem;
    }
}


/* ========================================
   QUOTE SECTION
   ======================================== */

.quote-minimal {
    padding: 5.5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.quote-highlight {
    color: #0066ff;
    font-weight: 500;
}

.quote-attribution {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quote-minimal {
        padding: 5rem 0;
    }
}

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

.services-showcase {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

[data-theme="dark"] .services-showcase {
    background: #000000;
}

.services-showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-showcase-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .services-showcase-title {
    color: #ffffff;
}


/* Text accent color utility */
.text-accent {
    color: #0066ff;
    font-weight: 700;
}

/* Better alignment for services title */
.services-showcase-header {
    text-align: left !important;
    max-width: 800px;
}


/* ========================================
   PARTNER CAROUSEL - 4 at a time
   ======================================== */

/* Update partners section */
.partners-carousel-wrapper {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.partners-carousel-track {
    display: flex;
    gap: 4rem;
    animation: scrollPartners 20s linear infinite;
    width: max-content;
}

.partners-carousel-track .partner-item {
    flex: 0 0 180px;
    text-align: center;
}

/* Pause animation on hover */
.partners-carousel-wrapper:hover .partners-carousel-track {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 5 - 4rem * 5));
    }
}

/* Remove old grid styles */
.partners-grid {
    display: none;
}

/* Responsive - show 2 at a time on mobile */
@media (max-width: 768px) {
    .partners-carousel-track {
        gap: 3rem;
    }
    
    .partners-carousel-track .partner-item {
        flex: 0 0 150px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 5 - 3rem * 5));
        }
    }
}


/* ========================================
   IMMERSIVE HERO (M&A)
   ======================================== */

.hero-immersive-ma {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 5.5rem 0 3rem;
    overflow: hidden;
}

.hero-immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero-immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

.hero-immersive-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-bottom: 3.5rem;
}

.hero-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066ff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-immersive-title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 200;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 2.5rem;
}

.hero-immersive-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 700px;
}

.hero-immersive-metrics {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-inline {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.metric-inline-num {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.metric-inline-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   SERVICES INTRO
   ======================================== */

.services-intro-ma {
    padding: 5.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero-immersive-ma {
        min-height: auto;
        padding: 7rem 0 3.5rem;
    }

    .hero-immersive-content {
        margin-bottom: 3rem;
    }

    .hero-badge {
        margin-bottom: 2rem;
    }

    .hero-immersive-title {
        margin-bottom: 2rem;
    }

    .hero-immersive-metrics {
        flex-direction: column;
        gap: 2rem;
    }

    .services-intro-ma {
        padding: 5rem 0;
    }
}

/* ========================================
   PREMIUM HERO PAGE
   ======================================== */

.hero-premium-page {
    padding: 5.5rem 0 3.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.hero-premium-page::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-premium-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-premium-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0066ff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-premium-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-premium-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-premium-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.hero-premium-stat {
    display: flex;
    flex-direction: column;
}

.hero-premium-stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #0066ff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.hero-premium-stat-label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.4;
}

/* ========================================
   VALUE PROPOSITION SECTION
   ======================================== */

.value-prop-premium {
    padding: 5.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.value-prop-item {
    position: relative;
    padding-left: 2rem;
}

.value-prop-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #0066ff 0%, transparent 100%);
}

.value-prop-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.value-prop-text {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .hero-premium-page {
        padding: 5.5rem 0 3.5rem;
    }

    .hero-premium-label {
        margin-bottom: 1.5rem;
    }

    .hero-premium-title {
        margin-bottom: 1.5rem;
    }

    .hero-premium-description {
        margin-bottom: 3rem;
    }

    .hero-premium-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .value-prop-premium {
        padding: 5rem 0;
    }

    .value-prop-item {
        padding-left: 1.5rem;
    }

    .value-prop-item::before {
        height: 40px;
    }
}

/* ========================================
   PREMIUM CAPABILITIES SECTION
   ======================================== */

.capabilities-premium {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.capabilities-header {
    margin-bottom: 3.5rem;
}

.capabilities-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
}

.capability-card {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card-inner {
    padding: 3.5rem;
    position: relative;
}

.capability-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0066ff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.capability-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.capability-description {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.capability-features span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #000000;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.capability-card:hover .capability-features span {
    background: rgba(0, 102, 255, 0.08);
    color: #0066ff;
}

/* ========================================
   PREMIUM APPROACH SECTION
   ======================================== */

.approach-premium {
    padding: 7rem 0;
    background: #fafafa;
    position: relative;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 3.5rem;
}

.approach-grid {
    display: grid;
    gap: 0;
}

.approach-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.approach-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0066ff 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-step:hover {
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.02) 0%, transparent 100%);
    padding-left: 2rem;
}

.approach-step:hover::before {
    opacity: 1;
}

.approach-number {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.approach-step:hover .approach-number {
    color: #0066ff;
}

.approach-content {
    max-width: 700px;
}

.approach-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.approach-text {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
}

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

    .capability-card-inner {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .capabilities-premium,
    .approach-premium {
        padding: 6rem 0;
    }

    .capabilities-header,
    .approach-heading {
        margin-bottom: 3rem;
    }

    .capability-card-inner {
        padding: 2rem;
    }

    .capability-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .approach-step {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .approach-step:hover {
        padding-left: 1rem;
    }

    .approach-number {
        font-size: 0.875rem;
    }
}

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

.cta-premium {
    padding: 5.5rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-premium-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-premium-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-premium-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: #0066ff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.cta-premium-button:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

@media (max-width: 768px) {
    .cta-premium {
        padding: 5rem 0;
    }

    .cta-premium-heading {
        margin-bottom: 1rem;
    }

    .cta-premium-text {
        margin-bottom: 2rem;
    }

    .cta-premium-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
}

/* ========================================
   PAGE TEMPLATES - MINIMAL AESTHETIC
   ======================================== */

/* Page Hero */
.page-hero-minimal {
    padding: 7rem 0 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.page-hero-content {
    max-width: 800px;
}

.page-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666666;
}

/* Stats Section */
.stats-minimal {
    padding: 5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #0066ff;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.4;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.service-card-clean {
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.service-card-clean:hover {
    border-color: #0066ff;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #666666;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #0066ff;
}

/* Process Section */
.process-minimal {
    padding: 6rem 0;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: left;
}

.process-number {
    font-size: 3rem;
    font-weight: 300;
    color: #0066ff;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.process-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
}

/* CTA Section */
.cta-minimal {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

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

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0066ff;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #0066ff;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
}

/* Transaction List */
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transaction-card {
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.transaction-card:hover {
    border-color: #0066ff;
}

.transaction-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 1rem;
}

.transaction-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.transaction-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
}

/* Insights List */
.insights-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.insight-card:hover {
    border-color: #0066ff;
}

.insight-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0066ff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.insight-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-minimal {
        padding: 6rem 0 4rem;
    }

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

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   MODERN CONTACT SECTION
   ======================================== */

/* Contact Section */
.contact-section {
    padding: 6rem 0 5rem;
    background: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
}

.contact-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.contact-heading:hover {
    color: #0066ff;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0 3rem;
    }

    .contact-info {
        padding-top: 1.5rem;
    }
}

/* ========================================
   HOME PAGE - PREMIUM HERO
   ======================================== */

.hero-home-premium {
    padding: 5.5rem 0 3.5rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.hero-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-home-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-home-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero-home-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-home-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

.hero-home-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-home-stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-home-stat-label {
    font-size: 0.875rem;
    color: #999999;
    font-weight: 500;
}

.hero-home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-home-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-home-button:hover::before {
    opacity: 1;
}

.hero-home-button:hover {
    transform: translateX(8px);
}

.hero-home-button > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-home-premium {
        padding: 5.5rem 0 4rem;
    }

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

/* ========================================
   HOME PAGE - PARTNERS
   ======================================== */

.partners-home {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.partners-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-home-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 2rem;
}

.partners-home-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-home-item {
    font-size: 1.125rem;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .partners-home-list {
        gap: 2rem;
    }
}

/* ========================================
   PARTNERS PREMIUM SECTION
   ======================================== */

.partners-premium {
    padding: 6rem 0;
    background: #ffffff;
}

[data-theme="dark"] .partners-premium {
    background: #1a1a1a;
}

.partners-premium-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-premium-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 3rem;
}

.partners-premium-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-premium-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-premium-item img {
    width: 360px;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0%) opacity(1) !important;
    transition: all 0.3s ease;
}

[data-theme="dark"] .partner-premium-item img {
    filter: grayscale(100%) opacity(0.6) brightness(0) invert(1);
}

.partner-premium-item img:hover {
    filter: grayscale(0%) opacity(1);
}

[data-theme="dark"] .partner-premium-item img:hover {
    filter: grayscale(0%) opacity(1) brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .partners-premium-grid {
        gap: 2rem;
    }

    .partner-premium-item img {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .partners-premium-grid {
        gap: 1.5rem 2rem;
    }

    .partner-premium-item img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .partners-premium-grid {
        gap: 1.5rem;
    }

    .partner-premium-item img {
        width: 160px;
    }
}

/* ========================================
   FOUNDERS VISION SECTION
   ======================================== */

.founders-vision-section {
    padding: 5.5rem 0;
    background: var(--color-bg-primary);
}

.founders-vision-header {
    margin-bottom: 3rem;
    text-align: center;
}

.founders-vision-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.founders-quotes-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.founder-quote-item {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.founder-quote-item.active {
    display: flex;
    opacity: 1;
}

.founder-image-wrapper {
    flex-shrink: 0;
}

.founder-image-wrapper .founder-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--color-bg-secondary);
}

.founder-quote-content {
    flex: 1;
}

.founder-quote-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin: 0 0 1.25rem 0;
    font-style: italic;
    border: none;
    padding: 0;
}

.founder-quote-attribution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.founder-quote-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.founder-quote-separator {
    color: var(--color-text-tertiary);
}

.founder-quote-role {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-accent-blue);
}

.founders-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.founders-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.founders-indicators .indicator:hover {
    background: var(--color-accent-blue);
    opacity: 0.7;
}

.founders-indicators .indicator.active {
    background: var(--color-accent-blue);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .founders-vision-section {
        padding: 4rem 0;
    }

    .founder-quote-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .founder-image-wrapper .founder-image {
        width: 150px;
        height: 150px;
    }

    .founder-quote-text {
        font-size: 1.05rem;
    }

    .founder-quote-attribution {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .founder-image-wrapper .founder-image {
        width: 120px;
        height: 120px;
    }

    .founder-quote-text {
        font-size: 1rem;
    }
}

/* ========================================
   HOME PAGE - SERVICES
   ======================================== */

.services-home-premium {
    padding: 7rem 0;
    background: #ffffff;
}

.services-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-home-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 10px;
}

.services-home-content {
    flex: 1;
}

.services-home-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.services-miami-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.services-home-title {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.services-home-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-home-item {
    display: block;
    text-decoration: none;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-home-item:first-child {
    padding-top: 3rem;
}

.service-home-item:last-child {
    border-bottom: none;
}

.service-home-item:hover {
    padding-left: 1rem;
}

.service-home-item-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-home-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066ff;
    letter-spacing: 0.05em;
}

.service-home-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.service-home-item:hover .service-home-name {
    color: #0066ff;
}

.service-home-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    max-width: 90%;
}

@media (max-width: 1024px) {
    .services-home-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-miami-img {
        min-height: 400px;
    }

    .services-home-title {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .services-miami-img {
        min-height: 300px;
    }
}

.services-home-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-home-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
}

.services-home-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
}

.service-home-card {
    background: #ffffff;
    padding: 4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-home-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-home-card:hover::before {
    opacity: 1;
}

.service-home-card:hover {
    background: #fafafa;
    padding-left: 4.5rem;
}

.service-home-number {
    font-size: 3rem;
    font-weight: 200;
    color: #e5e5e5;
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-home-card:hover .service-home-number {
    color: #0066ff;
}

.service-home-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-home-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-home-card:hover .service-home-title {
    color: #0066ff;
}

.service-home-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
    max-width: 600px;
}

.service-home-arrow {
    color: #cccccc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

.service-home-card:hover .service-home-arrow {
    color: #0066ff;
    transform: translateX(8px);
}

@media (max-width: 968px) {
    .services-home-premium {
        padding: 6rem 0;
    }

    .service-home-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .service-home-card:hover {
        padding-left: 2.5rem;
    }

    .service-home-arrow {
        display: none;
    }
}

/* ========================================
   HOME PAGE - STATS
   ======================================== */

.stats-home-premium {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.stats-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-home-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    border-left: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.stat-home-item:hover {
    border-left-color: #0066ff;
}

.stat-home-value {
    font-size: 3rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-home-label {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.4;
}

@media (max-width: 968px) {
    .stats-home-premium {
        padding: 6rem 0;
    }

    .stats-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-home-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOME PAGE - QUOTE
   ======================================== */

.quote-home-premium {
    padding: 7rem 0;
    background: #ffffff;
}

.quote-home-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.quote-home-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #000000;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.quote-home-attribution {
    font-size: 1rem;
    color: #999999;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quote-home-premium {
        padding: 6rem 0;
    }
}

/* ========================================
   HOME PAGE - CONTACT
   ======================================== */

.contact-home-premium {
    padding: 7rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.contact-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.contact-home-content {
    flex: 1;
}

.contact-home-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-home-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
}

.contact-home-action {
    flex-shrink: 0;
}

.contact-home-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-home-email::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-home-email:hover::before {
    opacity: 1;
}

.contact-home-email:hover {
    transform: translateX(8px);
}

.contact-home-email > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .contact-home-premium {
        padding: 6rem 0;
    }

    .contact-home-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .contact-home-email {
        padding: 1rem 2rem;
    }
}

/* ========================================
   SERVICES PAGE - PREMIUM HERO
   ======================================== */

.hero-services-premium {
    padding: 7rem 0 4rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.hero-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-services-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.hero-services-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-services-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-services-premium {
        padding: 6rem 0 4rem;
    }
}

/* ========================================
   SERVICES PAGE - GRID
   ======================================== */

.services-grid-premium {
    padding: 5.5rem 0;
    background: #ffffff;
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
}

.service-grid-card {
    background: #ffffff;
    padding: 4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-grid-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-grid-card:hover::before {
    opacity: 1;
}

.service-grid-card:hover {
    background: #fafafa;
    padding-left: 4.5rem;
}

.service-grid-header {
    display: flex;
    align-items: flex-start;
}

.service-grid-number {
    font-size: 3rem;
    font-weight: 200;
    color: #e5e5e5;
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-grid-card:hover .service-grid-number {
    color: #0066ff;
}


.service-grid-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-grid-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-grid-card:hover .service-grid-title {
    color: #0066ff;
}

.service-grid-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
    max-width: 600px;
}

.service-grid-meta {
    display: flex;
    gap: 2rem;
    padding-top: 0.5rem;
}

.service-grid-stat {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    letter-spacing: 0.05em;
}

.service-grid-arrow {
    color: #cccccc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

.service-grid-card:hover .service-grid-arrow {
    color: #0066ff;
    transform: translateX(8px);
}

@media (max-width: 968px) {
    .services-grid-premium {
        padding: 6rem 0;
    }

    .service-grid-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .service-grid-card:hover {
        padding-left: 2.5rem;
    }

    .service-grid-arrow {
        display: none;
    }
}

/* ========================================
   SERVICES PAGE - DIFFERENTIATORS
   ======================================== */

.differentiators-premium {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.differentiators-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.differentiators-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.differentiators-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.differentiator-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.differentiator-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.01em;
}

.differentiator-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 968px) {
    .differentiators-premium {
        padding: 6rem 0;
    }

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

    .differentiator-card {
        padding: 2rem;
    }
}

/* ========================================
   SERVICES PAGE - CTA
   ======================================== */

.cta-minimal-services {
    padding: 5.5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.cta-minimal-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-minimal-services-content {
    flex: 1;
}

.cta-minimal-services-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-minimal-services-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
}

.cta-minimal-services-action {
    flex-shrink: 0;
}

.cta-minimal-services-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-minimal-services-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-minimal-services-button:hover::before {
    opacity: 1;
}

.cta-minimal-services-button:hover {
    transform: translateX(8px);
}

.cta-minimal-services-button:hover .cta-minimal-services-arrow {
    transform: translateX(4px);
}

.cta-minimal-services-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-minimal-services-button > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .cta-minimal-services {
        padding: 6rem 0;
    }

    .cta-minimal-services-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .cta-minimal-services-button {
        padding: 1rem 2rem;
    }
}

/* ========================================
   M&A PAGE - PREMIUM SPLIT HERO
   ======================================== */

.hero-ma-premium {
    padding: 10rem 0 8rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-ma-premium::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-ma-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-ma-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-ma-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0066ff;
}

.hero-ma-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0;
}

.hero-ma-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #666666;
    max-width: 540px;
}

.hero-ma-metrics-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.hero-ma-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-ma-metric-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-ma-metric-label {
    font-size: 0.875rem;
    color: #999999;
    font-weight: 500;
}

.hero-ma-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-ma-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ma-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
}

.hero-ma-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.hero-ma-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.hero-ma-card-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
}

.hero-ma-card-status {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 200, 100, 0.1);
    color: #00c864;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.hero-ma-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-ma-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.01em;
}

.hero-ma-card-detail {
    font-size: 0.9375rem;
    color: #666666;
}

.hero-ma-card-value {
    font-size: 3rem;
    font-weight: 300;
    color: #0066ff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 0.5rem;
}

.hero-ma-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.hero-ma-card-stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.hero-ma-card-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999999;
}

.hero-ma-card-stat-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
}

@media (max-width: 1024px) {
    .hero-ma-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-ma-visual {
        order: -1;
    }

    .hero-ma-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-ma-premium {
        padding: 6rem 0 4rem;
    }

    .hero-ma-metrics-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-ma-card {
        padding: 2rem;
    }

    .hero-ma-card-value {
        font-size: 2.5rem;
    }

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

/* ========================================
   M&A PAGE - EXPERTISE BREAKDOWN
   ======================================== */

.expertise-breakdown-ma {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
}

.expertise-breakdown-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.expertise-breakdown-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.expertise-breakdown-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expertise-breakdown-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid #e5e5e5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.expertise-breakdown-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.expertise-breakdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0066ff 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-breakdown-item:hover::before {
    opacity: 1;
}

.expertise-breakdown-item:hover {
    padding-left: 2rem;
}

.expertise-breakdown-number {
    font-size: 5rem;
    font-weight: 200;
    color: #e5e5e5;
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-breakdown-item:hover .expertise-breakdown-number {
    color: #0066ff;
}

.expertise-breakdown-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-breakdown-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.expertise-breakdown-item:hover .expertise-breakdown-heading {
    color: #0066ff;
}

.expertise-breakdown-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
}

.expertise-breakdown-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-breakdown-tags li {
    padding: 0.5rem 1.25rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-breakdown-tags li:hover {
    background: #0066ff;
    border-color: #0066ff;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .expertise-breakdown-ma {
        padding: 6rem 0;
    }

    .expertise-breakdown-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .expertise-breakdown-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .expertise-breakdown-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-breakdown-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   M&A PAGE - WHY CHOOSE
   ======================================== */

.why-choose-ma {
    padding: 5.5rem 0;
    background: #ffffff;
}

.why-choose-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.why-choose-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-choose-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666666;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.why-choose-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.why-choose-card-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066ff;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.why-choose-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.why-choose-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-ma {
        padding: 5rem 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-card {
        padding: 2rem;
    }
}

/* ========================================
   M&A PAGE - PROCESS TIMELINE
   ======================================== */

.process-timeline-ma {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.process-timeline-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.process-timeline-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.process-timeline-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline-flow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-timeline-flow::before {
    content: "";
    position: absolute;
    left: calc(2rem + 40px);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e5e5e5 0%, #0066ff 50%, #e5e5e5 100%);
}

.process-timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline-item:hover {
    transform: translateX(1rem);
}

.process-timeline-marker {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 400;
    color: #999999;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline-item:hover .process-timeline-marker {
    background: #0066ff;
    border-color: #0066ff;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    transform: scale(1.1);
}

.process-timeline-body {
    padding-top: 0.5rem;
}

.process-timeline-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.process-timeline-item:hover .process-timeline-heading {
    color: #0066ff;
}

.process-timeline-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 768px) {
    .process-timeline-ma {
        padding: 6rem 0;
    }

    .process-timeline-flow::before {
        left: calc(2rem + 30px);
    }

    .process-timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .process-timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .process-timeline-flow::before {
        left: calc(1.5rem + 25px);
    }

    .process-timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }

    .process-timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ========================================
   M&A PAGE - MINIMAL CTA
   ======================================== */

.cta-minimal-ma {
    padding: 7rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.cta-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-minimal-content {
    flex: 1;
}

.cta-minimal-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-minimal-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
}

.cta-minimal-action {
    flex-shrink: 0;
}

.cta-minimal-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-minimal-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0066ff 0%, #00a3ff 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-minimal-button:hover::before {
    opacity: 1;
}

.cta-minimal-button:hover {
    transform: translateX(8px);
}

.cta-minimal-button:hover .cta-minimal-arrow {
    transform: translateX(4px);
}

.cta-minimal-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-minimal-button > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .cta-minimal-ma {
        padding: 6rem 0;
    }

    .cta-minimal-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .cta-minimal-button {
        padding: 1rem 2rem;
    }
}



/* ========================================
   INSIGHTS PAGE - Premium Aesthetic
   ======================================== */

.insights-premium-section {
    padding: 5rem 0;
    background: #ffffff;
}

.insights-premium-list {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Insight Card */
.insight-premium-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.insight-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.insight-premium-card:hover::before {
    opacity: 1;
}

/* Insight Meta Information */
.insight-premium-meta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Insight Title */
.insight-premium-title {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Insight Excerpt */
.insight-premium-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 2rem;
}

/* Read More Link */
.insight-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.insight-premium-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-blue);
    transition: width 0.3s ease;
}

.insight-premium-link:hover {
    color: var(--color-accent-blue);
    gap: 0.75rem;
}

.insight-premium-link:hover::after {
    width: 100%;
}

.insight-premium-link svg {
    transition: transform 0.3s ease;
}

.insight-premium-link:hover svg {
    transform: translateX(4px);
}

/* Featured/First Insight - Larger */
.insight-premium-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.insight-premium-card:first-child .insight-premium-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-premium-card:first-child .insight-premium-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.insight-premium-card:first-child .insight-premium-excerpt {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* Author and Date Display */
.insight-author-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    color: #999999;
}

.insight-author {
    font-weight: 600;
    color: #666666;
}

/* Category Badge */
.insight-category-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-orange);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Insights Hero Section */
.hero-insights-premium {
    padding: 5.5rem 0 3rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-insights-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -25%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

/* No Insights Message */
.no-insights-message {
    text-align: center;
    padding: 5rem 2rem;
    color: #999999;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insight-premium-card:first-child {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .insights-premium-list {
        gap: 1.5rem;
    }

    .insight-premium-card {
        padding: 2rem;
    }

    .insight-premium-title {
        font-size: 1.5rem;
    }

    .insight-premium-card:first-child .insight-premium-title {
        font-size: 2rem;
    }

    .hero-insights-premium {
        padding: 7rem 0 3rem;
    }
}

/* CTA Section for Insights */
.cta-minimal-insights {
    padding: 5rem 0;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-minimal-insights .cta-minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-minimal-insights .cta-minimal-content {
    flex: 1;
}

.cta-minimal-insights .cta-minimal-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.75rem;
}

.cta-minimal-insights .cta-minimal-text {
    font-size: 1.125rem;
    color: #666666;
}

@media (max-width: 768px) {
    .cta-minimal-insights .cta-minimal-container {
        flex-direction: column;
        text-align: center;
    }
}


/* ========================================
   SINGLE INSIGHT ARTICLE - Premium Aesthetic
   ======================================== */

/* Article Hero Section */
.insight-article-hero {
    padding: 5.5rem 0 2rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.insight-article-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.insight-breadcrumb {
    margin-bottom: 2rem;
}

.insight-breadcrumb a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Article Meta Information */
.insight-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insight-article-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-orange);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.insight-article-read-time {
    font-size: 0.875rem;
    color: #999999;
}

/* Article Title */
.insight-article-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Article Info */
.insight-article-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #666666;
}

.insight-article-author {
    font-weight: 600;
}

.insight-article-separator {
    color: #cccccc;
}

/* Article Content */
.insight-article-content {
    padding: 4rem 0;
    background: #ffffff;
}

.insight-article-body {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
}

/* Article Typography */
.insight-article-body p {
    margin-bottom: 1.75rem;
}

.insight-article-body h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.insight-article-body h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.insight-article-body ul,
.insight-article-body ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.insight-article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.insight-article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--color-accent-blue);
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.25rem;
    color: #555555;
}

.insight-article-body strong {
    font-weight: 600;
    color: #000000;
}

.insight-article-body a {
    color: var(--color-accent-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.insight-article-body a:hover {
    border-bottom-color: var(--color-accent-blue);
}

/* Article Footer */
.insight-article-footer {
    max-width: 750px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.insight-article-share h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.25rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-linkedin:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

.share-twitter:hover {
    background: #1da1f2;
    color: #ffffff;
    border-color: #1da1f2;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Related Insights Section */
.related-insights {
    padding: 5rem 0;
    background: #fafafa;
}

.related-insights-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.related-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-insight-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.related-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
}

.related-insight-meta {
    font-size: 0.8125rem;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.related-insight-title {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.related-insight-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-insight-title a:hover {
    color: var(--color-accent-blue);
}

.related-insight-link {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.related-insight-link:hover {
    gap: 0.5rem;
}

/* CTA for Article Page */
.cta-minimal-article {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-minimal-article .cta-minimal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Container for article pages */
.insight-article-hero .container,
.insight-article-content .container,
.related-insights .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insight-article-hero {
        padding: 7rem 0 2rem;
    }

    .insight-article-title {
        font-size: 2rem;
    }

    .insight-article-body {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .insight-article-body h2 {
        font-size: 1.5rem;
    }

    .insight-article-body h3 {
        font-size: 1.25rem;
    }

    .share-buttons {
        flex-direction: column;
    }

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

    .cta-minimal-article .cta-minimal-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Dark mode support */
[data-theme="dark"] .insight-article-hero {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

[data-theme="dark"] .insight-article-title,
[data-theme="dark"] .insight-article-body h2,
[data-theme="dark"] .insight-article-body h3 {
    color: #ffffff;
}

[data-theme="dark"] .insight-article-body {
    color: #cccccc;
}

[data-theme="dark"] .insight-article-body strong {
    color: #ffffff;
}

[data-theme="dark"] .related-insight-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .related-insight-title a {
    color: #ffffff;
}


/* ========================================
   TRANSACTIONS PAGE - Premium Aesthetic
   ======================================== */

/* Hero Adjustments for Transactions */
.hero-transactions-premium {
    background: linear-gradient(135deg, #fafafa 0%, rgba(0, 102, 255, 0.03) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-transactions-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

/* Filter Section */
.transactions-filter-section {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.transactions-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.transaction-filter {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.transaction-filter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-accent-blue) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.transaction-filter:hover {
    border-color: var(--color-orange);
    color: #000000;
    transform: translateY(-2px);
}

.transaction-filter.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.transaction-filter.active:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

/* Transactions Section */
.transactions-premium-section {
    padding: 5rem 0;
    background: #fafafa;
    min-height: 600px;
}

.transactions-premium-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Transaction Card */
.transaction-premium-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.transaction-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-accent-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.transaction-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

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

/* Transaction Card Header */
.transaction-card-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-card-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-orange);
    letter-spacing: 0.1em;
}

.transaction-card-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-accent-blue);
    border-radius: 20px;
}

/* Transaction Card Body */
.transaction-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transaction-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* Transaction Details Grid */
.transaction-card-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.transaction-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.detail-label {
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.75rem;
}

.detail-value {
    color: #000000;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.detail-value[data-value*="$"] {
    color: var(--color-orange);
    font-size: 1.125rem;
}

/* Transaction Description */
.transaction-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Transaction Outcome */
.transaction-card-outcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 200, 100, 0.05) 0%, rgba(0, 200, 100, 0.1) 100%);
    border: 1px solid rgba(0, 200, 100, 0.2);
    border-radius: 8px;
    color: #00a550;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: auto;
}

.transaction-card-outcome svg {
    flex-shrink: 0;
}

/* Special styling for M&A transactions */
.transaction-premium-card[data-category*="M&A"] .transaction-card-type {
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-orange);
}

/* Special styling for Capital Raise transactions */
.transaction-premium-card[data-category*="Capital-Raise"] .transaction-card-type {
    background: rgba(0, 200, 100, 0.1);
    color: #00a550;
}

/* Special styling for Recapitalization transactions */
.transaction-premium-card[data-category*="Recapitalization"] .transaction-card-type {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

/* No transactions message */
.no-transactions {
    text-align: center;
    padding: 5rem 2rem;
    color: #999999;
    font-size: 1.125rem;
    grid-column: 1 / -1;
}

/* CTA Section for Transactions */
.cta-minimal-transactions {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-minimal-transactions .cta-minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Container styles */
.transactions-filter-section .container,
.transactions-premium-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animation for filtering */
.transaction-premium-card {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transactions-premium-list {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .transactions-filter-section {
        position: static;
        padding: 2rem 0;
    }

    .transactions-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .transaction-filter {
        width: 100%;
        text-align: center;
    }

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

    .transaction-card-title {
        font-size: 1.25rem;
    }

    .transaction-card-header {
        padding: 1.25rem 1.5rem;
    }

    .transaction-card-body {
        padding: 1.5rem;
    }

    .cta-minimal-transactions .cta-minimal-container {
        flex-direction: column;
        text-align: center;
    }

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

/* Dark mode support */
[data-theme="dark"] .transaction-premium-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .transaction-card-header {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .transaction-card-title {
    color: #ffffff;
}

[data-theme="dark"] .transaction-card-description {
    color: #cccccc;
}

[data-theme="dark"] .detail-value {
    color: #ffffff;
}

[data-theme="dark"] .transactions-filter-section {
    background: #0a0a0a;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .transaction-filter {
    border-color: rgba(255, 255, 255, 0.2);
    color: #cccccc;
}

[data-theme="dark"] .transaction-filter.active {
    background: #ffffff;
    color: #000000;
}


/* ========================================
   TRANSACTIONS PAGE - Clean Aesthetic Update
   ======================================== */

/* Remove old filter section styling */
.transactions-filter-section {
    display: none !important;
}

/* Transactions Grid - Matching Services Style */
.transactions-grid-premium {
    padding: 5rem 0;
    background: #ffffff;
}

.transactions-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.transactions-grid-list {
    display: grid;
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

/* Transaction Grid Card - Clean minimal style */
.transaction-grid-card {
    background: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transaction-grid-card:hover {
    background: #fafafa;
    z-index: 10;
    transform: scale(1.01);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Transaction Header */
.transaction-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.transaction-grid-year {
    font-size: 2.5rem;
    font-weight: 200;
    color: rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.transaction-grid-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-orange);
}

/* Transaction Content */
.transaction-grid-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transaction-grid-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.transaction-grid-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Transaction Meta */
.transaction-grid-meta {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.transaction-grid-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-orange);
}

.transaction-grid-industry {
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Responsive Grid Layout */
@media (max-width: 1024px) {
    .transactions-grid-list {
        gap: 1px;
    }

    .transaction-grid-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .transactions-grid-premium {
        padding: 3rem 0;
    }

    .transaction-grid-year {
        font-size: 2rem;
    }

    .transaction-grid-title {
        font-size: 1.375rem;
    }

    .transaction-grid-card {
        padding: 1.75rem 1.5rem;
    }

    .transaction-grid-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Dark mode support */
[data-theme="dark"] .transactions-grid-list {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .transaction-grid-card {
    background: #000000;
}

[data-theme="dark"] .transaction-grid-card:hover {
    background: #1a1a1a;
}

[data-theme="dark"] .transaction-grid-title {
    color: #ffffff;
}

[data-theme="dark"] .transaction-grid-year {
    color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .transaction-grid-description {
    color: #cccccc;
}

[data-theme="dark"] .transaction-grid-meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SINGLE TEAM MEMBER PAGE
   ======================================== */

/* Team Single Hero */
.team-single-hero {
    padding: 5.5rem 0 4rem;
    background: #ffffff;
}

.team-single-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-single-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.team-single-back:hover {
    color: #0066ff;
}

.team-single-back svg {
    width: 20px;
    height: 20px;
}

.team-single-hero-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

.team-single-hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
}

.team-single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-single-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.team-single-role {
    font-size: 1.25rem;
    color: #0066ff;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Inline Bio (directly under role) */
.team-single-bio-inline {
    margin-bottom: 2rem;
}

.team-single-bio-inline .team-single-bio-short {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.team-single-bio-inline .team-single-bio-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444444;
}

.team-single-bio-inline .team-single-bio-text p {
    margin-bottom: 1rem;
}

.team-single-bio-inline .team-single-bio-text p:last-child {
    margin-bottom: 0;
}

.team-single-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.team-single-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #666666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-single-contact-item:hover {
    color: #0066ff;
}

.team-single-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Biography Section */
.team-single-bio {
    padding: 6rem 0;
    background: #fafafa;
}

.team-single-bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-single-bio-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 2rem;
}

.team-single-bio-short {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #222222;
    font-weight: 500;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.team-single-bio-short p {
    margin-bottom: 0;
}

.team-single-bio-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444444;
}

.team-single-bio-text p {
    margin-bottom: 1.5rem;
}

.team-single-bio-text p:last-child {
    margin-bottom: 0;
}

/* Related Team Members */
.team-single-related {
    padding: 6rem 0;
    background: #ffffff;
}

.team-single-related-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.team-single-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-single-related-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-single-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #0066ff;
}

.team-single-related-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.team-single-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-single-related-card:hover .team-single-related-image img {
    transform: scale(1.05);
}

.team-single-related-content {
    padding: 2rem;
}

.team-single-related-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-single-related-card:hover .team-single-related-name {
    color: #0066ff;
}

.team-single-related-role {
    font-size: 0.9375rem;
    color: #666666;
    margin: 0;
}

.team-single-related-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
}

.team-single-related-card:hover .team-single-related-arrow {
    color: #0066ff;
    transform: translateX(4px);
}

/* Team Premium Section */
.team-premium-section {
    padding: 5rem 0;
    background: #ffffff;
}

.team-premium-header {
    margin-bottom: 3rem;
    text-align: center;
}

.team-premium-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.02em;
}

.team-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Premium Card Arrow (for hover on team page) */
.team-premium-card {
    position: relative;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    max-width: 380px;
    width: 100%;
}

.team-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.team-premium-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.team-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-premium-content {
    padding: 1.5rem;
}

.team-premium-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.team-premium-role {
    font-size: 0.875rem;
    color: #0066ff;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-premium-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
}

.team-premium-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 24px;
    height: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
}

.team-premium-card:hover .team-premium-arrow {
    opacity: 1;
    color: #0066ff;
    transform: translateX(4px);
}

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

    .team-premium-card {
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-single-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-single-hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .team-single-hero {
        padding: 5rem 0 4rem;
    }

    .team-single-bio {
        padding: 4rem 0;
    }

    .team-single-related {
        padding: 4rem 0;
    }

    .team-single-related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-single-contact {
        margin-top: 2rem;
    }
}

/* Team Single Expandable Sections */
.team-single-sections {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.team-single-sections-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-single-section-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.team-single-section-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.team-single-section-toggle:hover {
    opacity: 0.7;
}

.team-single-section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.02em;
    margin: 0;
    transition: color 0.3s ease;
}

.team-single-section-toggle:hover .team-single-section-title {
    color: #0066ff;
}

.team-single-section-icon {
    width: 24px;
    height: 24px;
    color: #666666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.team-single-section-toggle[aria-expanded="true"] .team-single-section-icon {
    transform: rotate(180deg);
    color: #0066ff;
}

.team-single-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.team-single-section-item.active .team-single-section-content {
    max-height: 2000px;
}

.team-single-section-text {
    padding-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444444;
}

.team-single-section-text p {
    margin-bottom: 1rem;
}

.team-single-section-text p:last-child {
    margin-bottom: 0;
}

.team-single-section-text ul,
.team-single-section-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.team-single-section-text li {
    margin-bottom: 0.5rem;
    color: #444444;
}

/* Responsive */
@media (max-width: 768px) {
    .team-single-sections {
        padding: 4rem 0;
    }

    .team-single-section-toggle {
        padding: 1.5rem 0;
    }

    .team-single-section-title {
        font-size: 1.25rem;
    }

    .team-single-section-text {
        font-size: 1rem;
        padding-bottom: 1.5rem;
    }
}

/* ========================================
   Transaction Single Page Styles
   ======================================== */

/* Transaction Hero */
.transaction-single-hero {
    padding: 5.5rem 0 3rem;
    background: #ffffff;
}

.transaction-single-header {
    max-width: 900px;
}

.transaction-single-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f7ff;
    color: #0066ff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transaction-single-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.transaction-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.transaction-single-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #666666;
}

.transaction-single-meta-item svg {
    color: #0066ff;
}

/* Transaction Content */
.transaction-single-content {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.transaction-single-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.transaction-single-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444444;
}

.transaction-single-body p {
    margin-bottom: 1.5rem;
}

.transaction-single-body p:last-child {
    margin-bottom: 0;
}

/* Transaction Sidebar */
.transaction-single-sidebar {
    position: sticky;
    top: 2rem;
}

.transaction-single-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e5e5;
}

.transaction-single-info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.transaction-single-info-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.transaction-single-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transaction-single-info-item:first-child {
    padding-top: 0;
}

.transaction-single-info-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

.transaction-single-info-value {
    font-size: 0.9375rem;
    color: #000000;
    font-weight: 600;
    text-align: right;
}

/* Related Transactions */
.transaction-single-related {
    padding: 6rem 0;
    background: #f8f9fa;
}

.transaction-single-related-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.transaction-single-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.transaction-single-related-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    display: block;
}

.transaction-single-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #0066ff;
}

.transaction-single-related-label {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f0f7ff;
    color: #0066ff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transaction-single-related-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.transaction-single-related-date {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

.transaction-single-related-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
}

.transaction-single-related-card:hover .transaction-single-related-arrow {
    opacity: 1;
    color: #0066ff;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transaction-single-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .transaction-single-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .transaction-single-hero {
        padding: 6rem 0 3rem;
    }

    .transaction-single-meta {
        gap: 1rem;
    }

    .transaction-single-meta-item {
        font-size: 0.875rem;
    }

    .transaction-single-content {
        padding: 3rem 0 4rem;
    }

    .transaction-single-related {
        padding: 4rem 0;
    }

    .transaction-single-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Transaction Archive Page Styles
   ======================================== */

/* Transactions Archive Section */
.transactions-archive-section {
    padding: 6rem 0;
    background: #ffffff;
}

.transactions-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.transaction-archive-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.transaction-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #0066ff;
}

.transaction-archive-card-content {
    position: relative;
    z-index: 1;
}

.transaction-archive-label {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f0f7ff;
    color: #0066ff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transaction-archive-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.transaction-archive-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.transaction-archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: auto;
}

.transaction-archive-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666666;
}

.transaction-archive-meta-item svg {
    color: #0066ff;
}

.transaction-archive-arrow {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24px;
    height: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
}

.transaction-archive-card:hover .transaction-archive-arrow {
    opacity: 1;
    color: #0066ff;
    transform: translateX(4px);
}

/* Pagination */
.transactions-archive-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.transactions-archive-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.transactions-archive-pagination .page-numbers li {
    display: inline-block;
}

.transactions-archive-pagination .page-numbers a,
.transactions-archive-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.transactions-archive-pagination .page-numbers a:hover {
    border-color: #0066ff;
    color: #0066ff;
    background: #f0f7ff;
}

.transactions-archive-pagination .page-numbers .current {
    border-color: #0066ff;
    background: #0066ff;
    color: #ffffff;
}

/* Empty State */
.transactions-archive-empty {
    text-align: center;
    padding: 6rem 2rem;
}

.transactions-archive-empty h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.transactions-archive-empty p {
    font-size: 1.0625rem;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transactions-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .transactions-archive-section {
        padding: 4rem 0;
    }

    .transactions-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transaction-archive-card {
        padding: 2rem;
    }

    .transaction-archive-arrow {
        bottom: 2rem;
        right: 2rem;
    }

    .transactions-archive-pagination {
        margin-top: 3rem;
    }
}

/* Transaction Grid Card Arrow & Hover */
.transaction-grid-card {
    position: relative;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.transaction-grid-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    color: #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
}

.transaction-grid-card:hover .transaction-grid-arrow {
    opacity: 1;
    color: #0066ff;
    transform: translateX(4px);
}

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

/* Contact Hero */
.contact-hero {
    padding: 5.5rem 0 3rem;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-submit:disabled {
    background: var(--color-text-tertiary);
    cursor: not-allowed;
    transform: none;
}

.contact-submit svg {
    width: 20px;
    height: 20px;
}

/* Form Messages */
.form-messages {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.form-messages.success {
    background: rgba(0, 204, 136, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(0, 204, 136, 0.3);
}

.form-messages.error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: 12px;
    color: var(--color-accent);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-content a {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--color-accent);
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-accent);
    color: #ffffff;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.contact-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 1.0625rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGE BANNER IMAGES
   ======================================== */

.page-banner {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 0;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
}

/* Thin banner variant */
.page-banner-thin {
    height: 200px;
}

/* Full width banner variant */
.page-banner-full {
    height: 350px;
}

@media (max-width: 1024px) {
    .page-banner {
        height: 220px;
    }
    
    .page-banner-thin {
        height: 160px;
    }
    
    .page-banner-full {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 180px;
    }
    
    .page-banner-thin {
        height: 140px;
    }
    
    .page-banner-full {
        height: 220px;
    }
}

/* Dark mode support */
[data-theme="dark"] .page-banner-overlay {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(26, 26, 26, 0.3) 100%);
}
