/* =========================================
   VARIABLES & TOKENS
   Theme: Dark, Premium, Cinematic
========================================= */
:root {
    /* Colors - 3 Tier Premium Dark Depth */
    --bg-primary: #0a0a0c;     /* Base: Deep rich dark, not pure black */
    --bg-secondary: #121418;   /* Elevated: Dark charcoal tone */
    --bg-tertiary: #1a1e24;    /* Feature/Cards: Raised tone */
    
    /* Colors - Premium Light Depth */
    --bg-light-primary: #f6f7fa; /* Base: Soft warm light gray */
    --bg-light-secondary: #ffffff; /* Elevated: White for cards */
    
    --text-primary: #ffffff;
    --text-secondary: #a8a8b0; /* Softened off-white/gray */
    --text-muted: #666666;
    
    --text-dark-primary: #121418;
    --text-dark-secondary: #5a5c65;

    --accent: #2C5EB4; /* Grounded, premium corporate blue */
    --accent-hover: #1E4485; 
    --accent-light: rgba(44, 94, 180, 0.15);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-sm { font-size: 0.875rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: var(--bg-primary); 
    color: var(--text-primary);
}

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

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

.light-section {
    background-color: var(--bg-light-primary);
    color: var(--text-dark-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.white-section {
    background-color: #ffffff;
    color: var(--text-dark-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gray-section {
    background-color: #f4f4f5; /* Soft gray neutral */
    color: var(--text-dark-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.light-section .text-secondary, .white-section .text-secondary, .gray-section .text-secondary {
    color: var(--text-dark-secondary);
}

.light-section .text-accent, .white-section .text-accent, .gray-section .text-accent {
    color: var(--accent); /* Unify with primary accent */
}

.light-section .subtitle-badge, .white-section .subtitle-badge, .gray-section .subtitle-badge {
    background-color: var(--accent-light);
    color: var(--accent);
}

#reel.dark-section {
    background-color: var(--bg-primary); /* Base black fallback */
    position: relative;
    overflow: hidden;
}

#reel.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=2600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%); /* Full grayscale, no blur */
    pointer-events: none;
    z-index: 0;
}

#reel.dark-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65); /* 65% Semi-transparent black overlay for text readability */
    pointer-events: none;
    z-index: 1; /* Sits above the image to soften it */
}

#reel .container {
    position: relative;
    z-index: 2; /* Sits above both background layers */
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(44, 94, 180, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 94, 180, 0.6);
}

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

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

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* =========================================
   NAVIGATION
========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-normal);
}

#navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #ffffff;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a:not(.btn) {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-links a:not(.btn):hover {
    color: #fff;
}

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

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

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 990;
}

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

.mobile-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.mobile-link:last-child {
    border-bottom: none;
    margin-top: 1rem;
    text-align: center;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 65vh; /* Reduced from 75vh to organically pull the centered content slightly higher on the screen */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0; /* Tightened from 2rem top padding to eliminate any excess upper spacing */
    overflow: visible; /* Allows the scaled image to extend safely */
    width: 100%;
    
    /* Clean single background layer attached directly to the section container */
    background-image: url('assets/images/hero-bg-blue.png');
    background-size: 100% 100%; /* Scales bounds-to-bounds without cropping */
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 3rem;
    flex-grow: 1;
}

.hero-text-col {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.hero-person-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
    transform-origin: bottom center;
}

@media (min-width: 768px) {
    .hero {
        padding: 0; /* Removed entirely to strictly eliminate excess top spacing and pull content higher */
    }
    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); /* Hard lock column widths so text is strictly unpushed */
        gap: 3rem; 
        align-items: stretch; /* Both logical columns span 100% of height! */
    }
    .hero-text-col {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        align-self: center; /* Locks the text mid-screen to distribute height organically */
        margin-top: 1.5rem; /* Reduced drastically from 10rem to recenter the block */
    }
    .hero-image-col {
        grid-column: 1;
        grid-row: 1;
        height: 100%;
        justify-content: flex-end; /* Locks image placement towards the gap */
        align-items: flex-end;
    }
    .hero-person-image {
        max-width: none;
        width: 105%; /* Tablet target: reduced ~20% from 130% */
        transform: none; /* Remove transform scaling to resize element natively */
    }
}

@media (min-width: 992px) {
    .hero-person-image {
        width: 115%; /* Desktop target: reduced ~20% from 140% */
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF; /* Forced white */
    margin-bottom: 0.75rem; /* Tigthend from 1.5rem */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem; /* Tightened from 2rem */
    color: #FFFFFF; /* Forced white */
    letter-spacing: -2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 992px) and (max-height: 850px) {
    .hero-title {
        font-size: clamp(2rem, 4vw + 0.5rem, 3.8rem); /* Gracefully scale down headline only on squatted laptop views */
        margin-bottom: 0.75rem; /* Additional tightening to ensure buttons clear the fold */
    }
}

/* Ensure black text reads crisply */
.hero-title .text-black {
    color: #0B0B0B !important;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95); /* High contrast nearly solid white */
    line-height: 1.6;
    margin-bottom: 2rem; /* Tightened from 3rem */
    max-width: 95%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem; /* ~20px horizontal space between them */
}

/* White Custom Buttons Layout for Hero */
.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem; /* Exact locked padding horizontally, vertical controlled by align-items */
    height: 56px; /* Exactly matched heights */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1; /* Match line-height exactly */
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-sizing: border-box; /* Ensures border is calculated correctly */
    white-space: nowrap; /* Keep content on one line */
}

.btn-hero-primary {
    background-color: #FFFFFF;
    color: #0B0B0B;
    border: 2px solid #FFFFFF; /* Gives exact same footprint as secondary */
}

.btn-hero-primary:hover {
    background-color: #E6E6E6;
    color: #0B0B0B;
    border-color: #E6E6E6;
}

.btn-hero-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-hero-secondary i {
    display: flex; /* Ensures layout context is bound to flex behavior */
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem; /* ~8px spacing between icon and text */
    font-size: 1.125rem;
    line-height: 1; /* Match button line height */
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* =========================================
   VIDEO CONTAINERS
========================================= */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   STATS BANNER & TICKER
========================================= */
.stats-banner {
    background-color: var(--bg-primary); /* Base dark clean divider */
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}

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

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.7;
    color: var(--text-secondary);
}

/* =========================================
   CREDIBILITY SECTION
========================================= */
.credibility-section {
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding: var(--spacing-sm) 0 4rem; /* Tighter padding, close to hero */
    background-color: #ffffff; /* Clean white */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.credibility-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark-secondary);
    margin-bottom: 2rem; /* Tightened from 3.5rem */
}

.credibility-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 4rem; /* 2.5rem vertical avoids excessive height */
    max-width: 1200px; /* Matched to site container width */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 992px) {
    .credibility-grid {
        gap: 3.5rem 6.5rem; /* Expanded gaps to naturally fill the wider container */
    }
}

.credibility-logo {
    height: auto; 
    max-height: 28px; /* Strict standardization */
    width: auto;
    max-width: 130px; 
    object-fit: contain;
    filter: brightness(0) opacity(0.85); /* Black / dark gray uniform */
    transition: var(--transition-normal);
}

span.credibility-logo.text-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    filter: none; /* Text handles its own opacity via color */
    color: rgba(0, 0, 0, 0.85);
    line-height: 1;
}

span.credibility-logo.text-logo:hover {
    color: rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

.credibility-logo:hover {
    filter: brightness(0) opacity(1);
    transform: translateY(-2px);
}

/* =========================================
   GENERIC SECTION STYLES
========================================= */

/* Soft Gradient Divider Utility */
.fade-divider-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    z-index: 10;
    pointer-events: none;
}

#keynote {
    background-color: #121212; /* True pure neutral dark charcoal */
}

/* Removed conflicting #about background styling to ensure only the single new background is used */

#testimonials.dark-section {
    /* Hard break against the light business impact section */
    background-color: var(--bg-primary);
    background-image: none;
}

.feature-section {
    background-color: var(--bg-tertiary);
    background-image: radial-gradient(circle at top left, rgba(62, 111, 216, 0.04) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.subtitle-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* =========================================
   TRANSITION STRIPS
========================================= */
.transition-strip {
    width: 100%;
    height: 320px; /* Increased height by another ~12% to reveal more audience */
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.5rem;
    overflow: hidden;
}

.signature-strip {
    background-image: url('assets/images/signature-keynote-bg.png');
    background-size: cover;
    background-position: center 35%; /* Shifted back down so the top isn't cropped */
    background-repeat: no-repeat;
}

/* =========================================
   CARDS & GRIDS
========================================= */
.formats-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .formats-grid, .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.format-card {
    background: #1a1a1a; /* True pure neutral elevated card against #121212 bg */
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03); /* Subtle contrast against secondary bg */
    transition: var(--transition-normal);
}

.format-card:hover {
    transform: translateY(-10px);
    border-color: rgba(44, 94, 180, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.format-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   IMPACT SECTION (REBUILD)
========================================= */
.impact-rebuild {
    background-color: #F3F4F6;
    background-image: url('assets/images/impact-bg-v2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    width: 100%;
    position: relative; /* For overlay positioning */
}

/* Subtle light overlay to ensure text readability without muddying the image */
.impact-rebuild::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Very sheer white gradient washing gently from the left to boost dark text readability */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.impact-container {
    position: relative;
    z-index: 2; /* Sits above the light overlay */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .impact-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Left Column (Text & Bullets) */
.impact-text-col {
    width: 100%;
}

@media (min-width: 992px) {
    .impact-text-col {
        width: 55%;
        padding-right: 2rem;
    }
}

.impact-headline {
    color: #0B0B0B;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.impact-subtext {
    color: #2A2A2A;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.impact-bullet-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem; /* Increased vertical spacing */
}

.impact-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.impact-bullet-list i {
    color: var(--accent-hover); /* Slightly darker/trustworthy blue */
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.impact-bullet-list span {
    color: #2A2A2A;
    font-size: 1.125rem;
    line-height: 1.5;
}

.impact-bullet-list strong {
    font-weight: 600;
    color: #0B0B0B;
}

/* Right Column (Card) */
.impact-card-col {
    width: 100%;
}

@media (min-width: 992px) {
    .impact-card-col {
        width: 45%;
    }
}

.impact-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); /* 60px blur, 12% opacity, very soft edges */
    overflow: hidden;
    margin: 0 auto;
    max-width: 500px;
}

@media (min-width: 992px) {
    .impact-card {
        margin: 0 0 0 auto;
    }
}

.card-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--accent-hover); /* Darker blue accent border */
}

.impact-card-headline {
    color: #0B0B0B;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.impact-card-body {
    color: #2A2A2A;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.impact-card-body:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.testimonial-card {
    background: var(--bg-secondary); /* Since these sit on a primary deep bg, use the secondary tone for 15% lift */
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.quote-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.15;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1875rem !important;
    font-style: italic;
    margin-bottom: 2rem;
    color: #F0F0F0 !important;
    line-height: 1.6;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    color: #D6D6D6 !important;
    font-size: 1.05rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--accent-hover) !important; /* Darker, trustworthy brand blue */
    display: block;
    margin-top: 0.125rem;
}

/* =========================================
   ABOUT WIDE SECTION
========================================= */
.about-wide-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 80vh; /* Medium-tall */
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: url('assets/images/about-bg-wide.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Gradient overlay Left to Right */
.about-wide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.95) 55%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.about-wide-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* Push text to right */
    width: 100%;
}

.about-content-col {
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-wide-section .about-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: none;
}

.about-wide-section .about-title {
    color: #0b0b0b;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.about-wide-section .about-text-content p {
    color: #2a2a2a;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-wide-section .about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.about-wide-section .book-keynote-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    font-family: var(--font-heading);
}

.about-wide-section .book-keynote-link:hover {
    color: var(--accent-hover);
}

.about-wide-section .about-footer-text {
    color: #666666;
    margin: 0;
}

@media (max-width: 991px) {
    .about-wide-section {
        background-position: top center;
        padding-top: 450px; /* Space for image on top */
        min-height: auto;
    }
    
    .about-wide-section::before {
        background: linear-gradient(to bottom, transparent 0%, transparent 350px, #ffffff 450px, #ffffff 100%);
    }
    
    .about-wide-container {
        justify-content: center;
    }
    
    .about-content-col {
        background-color: #ffffff;
        padding: 3rem 1.5rem;
        max-width: 100%;
    }
}

/* =========================================
   CONTACT SECTION
========================================= */
.bg-gradient {
    /* Super soft spotlight gradient ending in pure black to anchor the page */
    background: radial-gradient(circle at top right, rgba(62, 111, 216, 0.05) 0%, var(--bg-primary) 70%);
}

.contact-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .contact-card {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info {
    padding: 3rem;
    background-color: var(--bg-tertiary);
}

.contact-info h2 {
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.see-agency-box {
    background: rgba(62, 111, 216, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(62, 111, 216, 0.2);
}

.contact-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: var(--bg-secondary); /* elevated dark tone */
    border: 1px solid rgba(255, 255, 255, 0.08); /* slight border */
    color: var(--text-primary);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(62, 111, 216, 0.2);
}

textarea.form-control {
    resize: vertical;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

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

.footer-link:hover {
    text-decoration: underline;
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
========================================= */
.observer-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.observer-element.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.slide-in-left.visible {
    transform: translateX(0);
}

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

.slide-in-right.visible {
    transform: translateX(0);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* =========================================
   NEW ABOUT SECTION (Rebuilt)
======================================== */
.about-new-section {
    background-color: #ffffff;
    color: #0b0b0b;
    padding: var(--spacing-xl) 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.about-new-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-new-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-new-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Safe upper limit for mobile */
    border-radius: var(--radius-md);
    object-fit: contain;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Subtle shadow so image pops */
}

.about-new-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-new-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.about-new-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0b0b0b;
    letter-spacing: -1px;
}

.about-new-text-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.25rem;
}

.about-new-text-content p:last-child {
    margin-bottom: 0;
}

.about-new-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: transparent;
    color: #0b0b0b;
    border: 2px solid #0b0b0b;
    text-align: center;
}

.btn-outline-dark:hover {
    background-color: #0b0b0b;
    color: #ffffff;
}

.book-keynote-link-dark {
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: underline;
    font-size: 1rem;
    align-self: flex-start;
}

.book-keynote-link-dark:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

.about-new-footer-text {
    font-size: 0.875rem; /* Match existing text-sm */
    color: #666666;
    font-style: italic;
}

@media (min-width: 992px) {
    .about-new-container {
        flex-direction: row;
        align-items: center; /* Perfectly center everything vertically */
        gap: 5rem;
    }
    
    .about-new-image-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Ensure image centers within the column if text is taller */
    }

    .about-new-image {
        height: auto; /* Natural scale to preserve aspect ratio completely */
        max-height: none;
    }
    
    .about-new-text-col {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .about-new-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .book-keynote-link-dark {
        align-self: center;
    }
}

/* =========================================
   MOBILE & TABLET OPTIMIZATIONS (< 992px)
======================================== */
@media (max-width: 991px) {
    /* Navigation Adjustments */
    .nav-container {
        padding-left: 1.5rem !important; /* Ensure safe margin on left */
        padding-right: 1.5rem !important; /* Ensure safe margin on right */
        box-sizing: border-box; /* Prevent padding from blowing up width */
    }
    
    .logo {
        margin-right: auto; /* Pin left */
        display: flex;
        align-items: center;
    }
    
    .mobile-toggle {
        margin-left: auto; /* Pin right */
        padding-right: 0; 
        display: flex;
        align-items: center;
    }

    /* Container constraints */
    .container {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }

    /* Hero Adjustments */
    .hero {
        padding-top: 6.5rem; /* Clear fixed navbar */
        padding-bottom: 4rem; /* Space below buttons */
        min-height: auto;
        height: auto;
        background-size: cover !important;
        background-position: center bottom;
        box-sizing: border-box;
        overflow: hidden; /* Stop any horizontal background spillage */
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center wrapper entirely */
        width: 100%;
        margin: 0 auto;
    }

    .hero-grid {
        display: flex !important; /* Force override tablet grid logic */
        flex-direction: column;
        align-items: center; /* Center vertically stacked content */
        width: 100%;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .hero-image-col {
        width: 100%;
        display: flex;
        justify-content: center; /* Center image col */
    }
    
    .hero-person-image {
        width: 100% !important; /* Override 105% tablet scale causing overflow */
        max-width: 320px; /* Keep image manageable */
        margin: 0 auto; 
        display: block;
    }
    
    .hero-text-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center elements within column */
        text-align: center; /* Typography centering */
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px; /* Don't stretch buttons infinitely on wide tablets */
        gap: 1rem;
        align-items: stretch;
        margin: 0 auto; /* Center button block */
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        margin: 0;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    /* General Spacing Reductions */
    .section {
        padding: 3.5rem 0;
    }
    
    .mt-12 {
        margin-top: 2rem;
    }
    
    .gap-8, .gap-12 {
        gap: 2rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* About Section adjustments */
    .about-new-actions {
        width: 100%;
    }
    
    .btn-outline-dark, .btn-outline {
        width: 100%;
    }
    
    .book-keynote-link-dark, .book-keynote-link {
        align-self: center;
        margin-top: 0.5rem;
    }
}

/* =========================================
   MOBILE ONLY OPTIMIZATIONS (< 768px)
======================================== */
@media (max-width: 767px) {
    .hero {
        padding-top: 5rem !important; /* Pull image up significantly closer to the navbar */
        padding-bottom: 3rem;
    }
    
    .hero-grid {
        gap: 0.5rem !important; /* Drastically reduce gap vertically between image and "CALEB SPITLER" */
    }
    
    .hero-person-image {
        max-width: 220px !important; /* Scale down image gracefully without cropping so it doesn't dominate */
    }
    
    .hero-subtitle {
        margin-bottom: 0.25rem !important; /* Pull headline closer to CALEB SPITLER */
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Slightly tighter headline font footprint */
        margin-bottom: 0.75rem; 
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }

    /* Business Impact Mobile Fixes */
    .impact-rebuild {
        overflow-x: hidden;
    }
    
    .impact-container {
        padding: 0 1.5rem !important;
        box-sizing: border-box;
    }
    
    .impact-text-col, .impact-card-col {
        transform: none !important;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .impact-card {
        margin: 0 auto !important;
    }

    /* Signature Keynote Strip Mobile Fix */
    .signature-strip {
        display: none;
    }
}

/* Mobile Image Section (Above Connection First) */
.mobile-connection-image {
    display: none;
}

@media (max-width: 768px) {
    .mobile-connection-image {
        display: block;
        width: 100%;
        line-height: 0;
    }
    
    .mobile-connection-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* =========================================
   OPTIONS SECTION
========================================= */
.options-section {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.options-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.options-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 94, 180, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.options-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.options-subline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.options-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.options-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.options-bullets li i {
    margin-top: 0.25rem;
    margin-right: 1rem;
    font-size: 1.125rem;
    color: var(--accent);
}

.options-quote {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-secondary);
}

.options-quote i {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.options-quote p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.options-best-for {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.options-best-for strong {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8125rem;
    margin-right: 0.5rem;
}

/* Mobile Hero Adjustments (Added exactly for Caleb Spitler name to top without layout expansion) */
@media (max-width: 767px) {
    .mobile-hidden {
        display: none !important;
    }
    

    
    .hero-grid, .hero-text-col {
        display: contents; /* Unwraps grid and text column into the hero-container flex block */
    }
    
    .hero-subtitle {
        order: -2;
        position: relative;
        transform: translateY(3.5rem); /* Strictly shifts the visual text layer DOWN into the empty bounds above the image */
        margin-bottom: 0; 
        margin-top: 0;
        text-align: center;
        width: 100%;
        z-index: 10;
    }
    
    .hero-image-col {
        order: -1;
        margin-bottom: 1.25rem; /* Tight spacing between image and headline */
    }
    
    .hero-title {
        order: 1;
        line-height: 1.0; 
        margin-bottom: 1.5rem;
        font-size: clamp(1.4rem, 6vw, 1.8rem); /* Reduced further to guarantee a clean 2-line fit */
        letter-spacing: -0.5px; /* Slight tightening */
    }
    
    .hero-title span {
        white-space: normal !important; /* Allow natural clean wrapping without overflow */
    }
    
    .hero-description {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        order: 3;
    }
}
