/* ============================================
   EXECTURE - Valuation & Investment Banking
   Institutional Design System
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Navy & Deep Blue */
    --navy: #1B2A4A;
    --navy-dark: #0f1a2e;
    --deep-blue: #2C5F8A;
    --accent-blue: #4A90D9;
    
    /* Neutrals */
    --charcoal: #333333;
    --slate: #64748b;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-blue) 0%, var(--accent-blue) 100%);
    --gradient-dark: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    --gradient-text: linear-gradient(135deg, var(--accent-blue) 0%, #60a5fa 50%, var(--deep-blue) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 42, 74, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links > a,
.nav-dropdown-trigger {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    display: flex;
    gap: 24px;
}

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

.dropdown-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate);
    margin-bottom: 8px;
}

.dropdown-section a {
    display: block;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.dropdown-section a:hover {
    color: var(--deep-blue);
}

.nav-cta {
    background: var(--white) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--gray-100) !important;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu {
    display: none;
    background: var(--navy);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    margin: 4px 0 4px 16px;
}

.mobile-submenu-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px 2px;
    margin: 0;
    font-weight: 600;
}

.mobile-submenu a {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.mobile-cta {
    background: var(--white) !important;
    color: var(--navy) !important;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(27, 42, 74, 0.85) 0%,
        rgba(27, 42, 74, 0.75) 50%,
        rgba(27, 42, 74, 0.9) 100%
    );
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(44, 95, 138, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   METRICS SECTION
   ============================================ */

.metrics {
    background: var(--navy);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-item {
    padding: 20px;
}

.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .metric-number {
        font-size: 2.25rem;
    }
}

/* ============================================
   PRACTICES SECTION (Two Columns)
   ============================================ */

.practices {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.practice-card {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.practice-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.practice-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.practice-card h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.practice-card > p {
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.7;
}

.practice-services {
    list-style: none;
    margin-bottom: 32px;
}

.practice-services li {
    padding: 8px 0;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}

.practice-services li::before {
    content: '→';
    color: var(--deep-blue);
    font-weight: 600;
}

.practice-services li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-card {
        padding: 32px;
    }
}

/* ============================================
   TRACK RECORD SECTION
   ============================================ */

.track-record {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.track-record-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.track-record-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-top: 4px solid var(--deep-blue);
}

.track-record-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.track-logo {
    margin-bottom: 20px;
}

.track-logo .company-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.track-logo .company-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--deep-blue);
    background: rgba(30, 64, 175, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.track-record-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

@media (max-width: 1024px) {
    .track-record-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-blue);
    background: rgba(44, 95, 138, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

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

/* ============================================
   WHY EXECTURE SECTION
   ============================================ */

.why-execture {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    padding: 32px;
    border-radius: 12px;
    background: var(--gray-100);
    transition: var(--transition-base);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.why-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

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

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

/* ============================================
   SERVICES SECTIONS
   ============================================ */

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

.valuation-section {
    background: var(--white);
}

.banking-section {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
}

.banking-section .service-card {
    background: var(--white);
}

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

.service-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--charcoal);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--deep-blue);
    border-radius: 50%;
}

.service-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-cta:hover {
    color: var(--navy);
}

.services-more {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.services-more p {
    color: var(--slate);
    font-size: 0.9rem;
}

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

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

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    padding: 32px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.industry-card:hover {
    border-color: var(--deep-blue);
    background: var(--gray-100);
}

.industry-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--deep-blue);
}

.industry-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
}

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

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

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.team-image {
    width: 100%;
    height: 450px;
    background: var(--gray-200);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--slate);
    background: var(--gray-200);
}

.team-info {
    padding: 32px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.team-highlights span {
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--gray-100);
    color: var(--charcoal);
    padding: 6px 12px;
    border-radius: 50px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--charcoal);
    transition: var(--transition-fast);
}

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

.team-social svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        max-height: 350px;
    }
}

/* Founder Profile - Portrait Left, Bio Right */
.founder-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.founder-profile .founder-bio {
    padding: 48px;
}

.founder-portrait {
    position: sticky;
    top: 120px;
    line-height: 0;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.founder-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.founder-portrait .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--slate);
    background: var(--gray-200);
    border-radius: 16px;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.founder-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: none;
    color: var(--slate);
    transition: var(--transition-fast);
}

.founder-social a:hover {
    background: var(--navy);
    color: var(--white);
}

.founder-social svg {
    width: 16px;
    height: 16px;
}

.founder-bio h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 32px;
}

.bio-section {
    margin-bottom: 32px;
}

.bio-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.bio-section p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bio-highlight-box {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
}

.bio-highlight {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.bio-highlight:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bio-highlight strong {
    color: var(--navy);
    font-weight: 700;
}

.bio-highlight em {
    color: var(--deep-blue);
    font-style: normal;
    font-weight: 600;
}

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

.bio-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

.bio-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--deep-blue);
    border-radius: 50%;
}

.bio-list li strong {
    color: var(--charcoal);
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--gray-200);
}

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

.founder-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.founder-stats .stat-label {
    font-size: 0.85rem;
    color: var(--slate);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .founder-profile {
        grid-template-columns: 280px 1fr;
        gap: 40px;
        padding: 32px;
    }
    
    .founder-bio h3 {
        font-size: 2rem;
    }
    
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .founder-profile {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
    
    .founder-portrait {
        position: static;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .founder-bio h3 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .founder-role {
        text-align: center;
    }
    
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .founder-stats .stat-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots button.active {
    background: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-text {
    color: var(--slate);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--deep-blue);
}

.contact-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.contact-links {
    display: flex;
    gap: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-100);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-link:hover {
    background: var(--navy);
    color: var(--white);
}

.contact-link svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(44, 95, 138, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

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

.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
}

.footer-disclaimers {
    margin-bottom: 24px;
}

.footer-disclaimers p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.independence-statement {
    color: rgba(255, 255, 255, 0.6) !important;
}

.bd-disclosure a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
