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

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   Visibility Control Classes (Prevents Flash of Content)
   ========================================================================== */
.visibility-controlled {
    display: none !important;
}

.visibility-loaded {
    display: block !important;
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   Premium Element Reveal Animations (Jony Ive Style)
   ========================================================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

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

/* Staggering utility classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: rgba(255, 255, 255, 0.92);
    /* Retina text color */
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: white;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    /* Jony Ive: Softened contrast for reading comfort */
}

html {
    scroll-behavior: smooth;
    font-size: 95%;
    /* Jony Ive: Compact laptop fit */
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(100, 181, 246, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(0.98);
    /* Tactile click effect */
}

.back-to-top-btn:hover {
    background: #0077ED;
}

/* ==========================================================================
   Skeleton Loader Styles
   ========================================================================== */
.skeleton-loader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.skeleton-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    padding: 1.5rem;
}

.skeleton-card .skeleton-image {
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.skeleton-card .skeleton-line {
    height: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
}

.skeleton-card .skeleton-line:last-child {
    margin-bottom: 0;
}

.skeleton {
    opacity: 0.7;
    animation: skeleton-shimmer 1.5s linear infinite forwards;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 400% 400%;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.skeleton-testimonial {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.skeleton-testimonial .skeleton-image-circle {
    width: 400px;
    height: 400px;
    border-radius: 24px;
}

/* ==========================================================================
   Navigation & Header - Floating Style
   ========================================================================== */
.navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar.floating {
    margin: 1.5rem;
    width: calc(100% - 3rem);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.8rem 2rem;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 0.8rem 5%;
    margin: 0;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Removed hover glow effect */

.nav-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links>li,
.nav-item {
    position: relative;
    list-style: none;
}

.nav-links a,
.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: block;
    border-radius: 100px;
}

.nav-links a:hover,
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.nav-links a::after,
.nav-link::after {
    display: none;
}

/* Removed hover underline transform */

.nav-links a.active,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.submenu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    min-width: 240px;
    padding: 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    list-style: none;
    transform-origin: top center;
}

.nav-links>li:hover .submenu,
.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.submenu li {
    list-style: none;
    margin-bottom: 2px;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 12px;
    opacity: 1 !important;
    font-size: 0.95rem;
    font-weight: 500;
}

.submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(4px);
}

.submenu a::after {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: scale(0.92);
}

.btn-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
    color: white;
    border: 1px solid rgba(0, 113, 227, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 113, 227, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 113, 227, 0.5);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 5rem 2rem 2rem;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-menu-item>a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 0;
    display: block;
    opacity: 0.9;
}

.mobile-submenu-toggle {
    position: absolute;
    right: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-submenu.active {
    padding: 0.5rem 0 1rem 1rem;
}

.mobile-submenu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mobile-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn {
    display: block;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-btn.btn-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-btn.btn-primary {
    background: #0071e3;
    /* Apple Blue */
    color: white;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    pointer-events: none;
}

/* ==========================================================================
   Hero Section - "Inspire Greatness" Layered Design
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%) scale(1.3);
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
    backdrop-filter: blur(2px);
}

/* Content Container */
.hero-content-centered {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    /* Full width for massive text */
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    /* Clip anything spilling out */
}

/* Internal Layout - Layered Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
}

/* Flex Item: Text Side (Background Layer) */
.hero-text-side {
    grid-area: 1 / 1;
    z-index: auto;
    /* Allow children to manage their own stacking */
    /* Behind image */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    /* Let clicks pass through to image or be non-interactive in BG */
}

.hero-headline {
    position: relative;
    z-index: 1;
    /* Keep behind image */
    font-weight: 900;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.15);
    /* Subtle background text look */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media screen and (min-width: 993px) {
    .headline-line {
        transform: translateX(-3.5vw);
    }

    .hero-subhead {
        margin-left: 35vw;
        /* Push even further right (approx 5 letters more) */
        text-align: left;
    }
}

.hero-subhead {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* Jony Ive: Wide tracking */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.5;
    /* Jony Ive: Texture, not just text */
    margin-top: 1vh;
    text-align: center;
    width: 100%;
    z-index: 2;
    /* Ensure visible */
}

.hero-headline.split-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5vw;
    /* Frame the edge */
    box-sizing: border-box;
}

.headline-part {
    display: block;
    text-transform: uppercase;
    font-size: 10vw;
    letter-spacing: -0.05em;
    word-spacing: 0.8em;
    white-space: nowrap;
    background: linear-gradient(135deg, #e0e0e0 0%, #8e8e93 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    flex: 1;
}

.headline-part.left-part {
    text-align: left;
}

.headline-part.right-part {
    text-align: right;
}

/* Redundant override from old code - removing to clear conflict */
/* .headline-line { ... } */

@media screen and (max-width: 900px) {
    .hero-headline.split-layout {
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 0;
    }

    .headline-part {
        text-align: center !important;
        font-size: 14vw;
        /* significantly larger for mobile readability */
    }

    .hero-subhead {
        font-size: 4vw;
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: block;
    }
}



#rotating-text {
    display: inline-block;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);

    /* Re-apply Gradient to Child Span */
    background: linear-gradient(135deg, #e0e0e0 0%, #8e8e93 100%);
    /* Jony Ive: Titanium */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Jony Ive breath effect animations */
.word-anim {
    display: inline-block;
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter, opacity;
    
    /* Apply Gradient directly to the inner span */
    background: linear-gradient(135deg, #e0e0e0 0%, #8e8e93 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.blur-in {
    filter: blur(0px);
    opacity: 1;
}

.blur-out {
    filter: blur(12px);
    opacity: 0;
}

.prepare {
    filter: blur(12px);
    opacity: 0;
    transition: none; /* Snap to this state */
}

.headline-line.highlight {
    /* Override for highlight if needed, or keep same silver style */
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0;
}

.hero-description {
    display: block;
    margin-top: 0;
    font-weight: 300;
    /* Jony Ive: Lighter weight */
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    /* Jony Ive: Softer white */
    letter-spacing: 0.5px;
    /* Jony Ive: Breathable spacing */
    max-width: 500px;
    line-height: 1.6;
    position: absolute;
    bottom: 40px;
    /* Swapped: Below credentials */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    /* Bring in front of image */
    pointer-events: auto;
    /* Make selectable */
}

.hero-cta-buttons {
    display: none;
    /* Hide buttons initially to match the "Inspire Greatness" pure visual, or move them */
}

/* Flex Item: Image Side (Foreground Layer) */
.hero-image-side {
    grid-area: 1 / 1;
    z-index: 2;
    /* In front of text */
    width: auto;
    max-width: 50vh;
    /* Controlled by viewport height to stay frame-contained */
    height: auto;
    display: flex;
    align-items: flex-end;
    /* Align bottom if needed */
    margin-top: -20vh;
    /* Slight offset */
}

.hero-portrait {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 100px rgba(0, 0, 0, 0.9));
    /* Deep shadow to separate from text */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    /* Jony Ive: Ethereal fade */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-credentials {
    position: absolute;
    bottom: 200px;
    /* Swapped: Moved above description */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 12;
    width: auto;
    border-top: none;
    padding-top: 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 992px) {
    .headline-line {
        font-size: 21vw;
        /* Larger relatively on mobile */
        white-space: normal;
        /* Allow wrap if really needed */
        line-height: 1.0;
        word-spacing: normal;
    }

    .hero-headline {
        transform: none;
        /* Reset individual transform */
        margin-top: -65vh;
        /* Move up little bit more as requested */
    }

    .hero-image-side {
        max-width: 80vw;
        margin-top: 5vh;
        /* Pushed down to create headroom for text */
    }

    .hero-credentials {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        justify-content: center;
        bottom: 20px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-subhead {
        position: absolute;
        bottom: 250px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        width: 100%;
        text-align: center;
        padding-left: 0;
        font-size: 4vw;
        letter-spacing: 0.2em;
        z-index: 20;
    }

    .mobile-block {
        display: block;
    }

    .hero-description {
        position: absolute;
        bottom: 185px;
        /* Moved higher to create more space above credentials */
        left: 50%;
        transform: translateX(-50%);
        width: 96%;
        /* Wider to fit text onto two lines */
        text-align: center;
        margin: 0;
        z-index: 20;
        font-size: 0.75rem;
        /* Made smaller per request */
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.4;
    }

    .credential-badge {
        /* background: rgba(0, 0, 0, 0.5); Removed to use glassmorphism base */
        /* Better readability on mobile */
        padding: 8px 16px;
        border-radius: 50px;
    }
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    /* Jony Ive: Glassmorphism */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 25px;
    /* Added padding for the pill shape */
}

.credential-badge .badge-icon {
    font-size: 1.5rem;
}

.credential-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.credential-badge .badge-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.credential-badge .badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credential-badge .badge-text strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.credential-badge .badge-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.credential-badge.verified {
    background: rgba(0, 119, 237, 0.2);
    border: 1px solid rgba(0, 119, 237, 0.4);
    padding: 10px 20px;
    border-radius: 100px;
}

.credential-badge.verified .badge-icon {
    color: #3b9eff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content-centered {
        padding-top: 140px;
    }

    .hero-headline {
        font-size: 4rem;
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-image-side {
        order: 2;
        max-width: 450px;
        margin: 0 auto;
        /* Ensure image doesn't stretch weirdly */
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-text-side {
        order: 1;
        align-items: center;
        max-width: 100%;
        /* Allow full width text on mobile */
    }

    .hero-headline {
        font-size: 3.5rem;
        align-items: center;
        /* Center the flex column headline items */
    }

    .hero-description {
        text-align: center;
        margin: 0 auto;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .hero-credentials {
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-content-centered {
        padding: 100px 20px 60px;
        gap: 40px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.75rem;
        bottom: 175px !important;
    }

    .hero-subhead {
        bottom: 225px !important;
    }

    .hero-credentials {
        flex-direction: column;
        gap: 12px !important;
        align-items: center;
        width: 100%;
        border-top: none;
        bottom: 15px !important;
        /* Remove border on mobile to save space */
    }

    .credential-badge {
        width: 100%;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 12px !important;
        border-radius: 10px;
        gap: 4px !important;
    }

    .credential-badge .badge-number {
        font-size: 1.5rem !important;
        text-align: center;
        display: block;
        width: 100%;
    }

    .credential-badge .badge-label {
        font-size: 0.8rem !important;
        line-height: 1.3;
        text-align: center;
        display: block;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2997ff;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    left: 25%;
    animation-delay: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ==========================================================================
   Client Logos Section
   ========================================================================== */
:root {
    --logo-width: 200px;
    --logo-height: 100px;
    --logo-gap: 4rem;
    --logo-count: 16;
}

.client-logos {
    background: #000;
    padding: 4rem 5% 6rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
}



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

.logos-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.6;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    /* Jony Ive: Whisper, not a shout */
}

.logos-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.logos-slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin: 0 auto;
    /* Jony Ive: Ethereal Masking */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    /* Hardware acceleration */
}

.logos-slide {
    display: flex;
    gap: var(--logo-gap);
    padding: 0 calc(var(--logo-gap) / 2);
    flex-shrink: 0;
}

.logo-item {
    flex: 0 0 var(--logo-width);
    width: var(--logo-width);
    height: var(--logo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    /* Jony Ive: Standardized Module Radius */
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Jony Ive: Fluid Snap */
}

.logo-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.85;
    /* Brighter default */
    filter: none;
    /* Full color */
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    /* Full brightness on hover */
    transform: scale(1.05);
}

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

    100% {
        transform: translateX(calc(-1 * (var(--logo-width) + var(--logo-gap)) * var(--logo-count)));
    }
}

.logos-slider-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 119, 237, 0.1), transparent 70%);
    pointer-events: none;
}

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

/* ==========================================================================
   Experience Section (Glassmorphism layout)
   ========================================================================== */
.experience-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    background: #000 url('../images/businessbg.webp') center/cover no-repeat;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 1;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.experience-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.experience-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5rem;
    max-width: 800px;
    margin-inline: auto;
    font-weight: 400;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.exp-tension {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.exp-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.experience-closing {
    margin: 5rem 0 3rem;
}

.closing-statement {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.experience-cta {
    display: flex;
    justify-content: center;
}

.cta-button-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: -0.01em;
}

.cta-button-minimal:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 600px) {
    .experience-section {
        padding: 5rem 5%;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-subheadline {
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   Program Cards (Homepage)
   ========================================================================== */
.program-card-home {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.program-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card-home:hover::before {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.8) 100%);
}

.program-card-home:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.program-card-home .service-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.program-card-home .service-number {
    display: none;
}

.program-card-home .service-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.05;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.program-card-home .service-cost {
    display: none;
}

.program-card-home .service-description {
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 90%;
}

.program-card-home .service-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    margin-top: 1.5rem;
    opacity: 0.9;
}

.program-card-home:hover .service-button {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Pop-up Styles
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.popup-content {
    background: #1e1e2f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.popup-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.popup-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2997ff;
}

.popup-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-buttons .btn {
    display: block;
    width: 100%;
    padding: 1rem;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    background: #111;
    padding: 6rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #2997ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #2997ff;
}

.newsletter-button {
    width: 100%;
    padding: 1rem;
    background: #0071e3;
    /* Apple Blue */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #0077ED;
    /* Apple Blue Hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
}

.input--hidden {
    position: absolute;
    left: -5000px;
    top: -5000px;
}

/* ==========================================================================
   Courses Section (renamed from Events)
   ========================================================================== */
.events-section.courses-section {
    background: #000;
    padding: 4rem 5%;
    color: white;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.events-title {
    font-size: 2rem;
    font-weight: bold;
}

.discover-link {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.discover-link:hover {
    color: white;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.slider {
    display: flex;
    gap: 2rem;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.slider-card {
    flex: 0 0 300px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slider-card:hover {
    transform: translateY(-10px);
}

.slider-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.slider-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: white;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background: #000;
    padding: 6rem 5% 4rem 5%;
    /* Optimized vertical rhythm */
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 85%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    /* More whitespace gap */
    align-items: center;
}

.about-text {
    position: relative;
    z-index: 2;
    max-width: 540px;
    /* Restrain width for readability */
}

.about-title {
    font-size: 3rem;
    font-weight: 500;
    /* "Quiet Confidence" */
    margin-bottom: 1.5rem;
    color: white;
    /* Pure white, no gradient */
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: none;
    -webkit-text-fill-color: initial;
}

.about-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #86868b;
    /* Apple Silver */
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
    /* Spacing handled inline */
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Stats grid removed in HTML, removing redundant CSS if any remains later */

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    /* Ghost Pill */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.about-cta:hover svg {
    transform: translateX(5px);
}

.about-cta svg {
    transition: transform 0.3s;
}

.about-image {
    position: relative;
    border-radius: 32px;
    /* Hardware-like curve */
    overflow: hidden;
    aspect-ratio: 4/5;
    aspect-ratio: 4/5;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    /* Deep, soft depth */
    transform: translateZ(0);
    /* Force GPU */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

/* Floating elements removed for visual silence */

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background: #000;
    padding: 4rem 5% 6rem 5%;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.service-card {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.25;
    transform: scale(1.05);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Jony Ive: Deep Ambient Depth */
}

.service-card:hover::after {
    opacity: 1;
}

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

.service-number {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.service-card:hover .service-number {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.service-card:nth-child(1)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-card:nth-child(2)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-card:nth-child(3)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-card:nth-child(4)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-card:nth-child(5)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-card:nth-child(6)::before {
    background-image: url('../images/servicesbox1.webp');
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    background: linear-gradient(to right, #fff, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-cost {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-button:hover {
    background: #0071e3;
    /* Apple Blue */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
    border-color: transparent;
}


/* ==========================================================================
   Growth Stats Section
   ========================================================================== */
.growth-section {
    background: linear-gradient(to bottom, #000, #111);
    padding: 8rem 5%;
    color: white;
}

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

.growth-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/growth-bg.jpg.avif');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.growth-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.1), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.growth-header:hover::before {
    opacity: 1;
}

.header-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.header-description {
    position: relative;
    max-width: 500px;
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-percentage {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff 30%, #2997ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.stat-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Rotating Testimonials */
.rotate-testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rotate-testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rotate-testimonial-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.rotate-testimonial-slide.active {
    opacity: 1;
}

.rotate-testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rotate-testimonial-text {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.rotate-testimonial-text::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-size: 4rem;
    color: rgba(100, 181, 246, 0.4);
}

.rotate-testimonial-text em {
    font-weight: 700;
    color: #2997ff;
    font-style: normal;
}

.rotate-author-info {
    border-left: 3px solid rgba(100, 181, 246, 0.4);
    padding-left: 1.5rem;
}

.rotate-author-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rotate-author-title {
    opacity: 0.7;
    font-size: 1.1rem;
}

.rotate-testimonial-image-wrap {
    width: 400px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.rotate-testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rotate-testimonial-slide:hover .rotate-testimonial-image {
    transform: scale(1.05);
}

.rotate-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.rotate-nav-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.rotate-nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.rotate-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.rotate-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rotate-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.rotate-dot.active {
    background: white;
    transform: scale(1.2);
}


/* ==========================================================================
   Success Stories Section
   ========================================================================== */
.success-stories {
    background: #000;
    padding: 8rem 5%;
    color: white;
    position: relative;
}

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

.stories-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stories-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.stories-slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.stories-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.story-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-image {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
}

.story-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.client-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    height: 40px;
    width: auto;
    z-index: 2;
}

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

.story-title {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s;
}

.view-more-link:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.view-more-link:hover svg {
    transform: translateX(5px);
}

.view-more-link svg {
    transition: transform 0.3s;
}


/* ==========================================================================
   Process Steps Section
   ========================================================================== */
.process-section {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 8rem 0;
}

.process-cta {
    text-align: center;
    margin: 3rem auto 0;
}

.process-cta .cta-button {
    display: inline-block;
    margin: 0 auto;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    opacity: 0.4;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 8rem 5%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.step-icon::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #0071e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    opacity: 0.9;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}


/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    background: #000;
    padding: 8rem 5%;
    color: white;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.cta-container:hover {
    transform: translateY(-5px);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    background: #0071e3;
    /* Apple Blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 1.6rem;
}

.cta-button:hover {
    background: #0071e3;
    /* Apple Blue */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
    border-color: transparent;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.cta-hint {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.cta-wrapper:hover .cta-hint {
    color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   Video Showcase Section
   ========================================================================== */
.video-showcase {
    background: #000;
    padding: 8rem 5%;
    color: white;
    position: relative;
}

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

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-slider-container {
    position: relative;
    overflow: hidden;
}

.video-slider {
    display: flex;
    gap: 2rem;
    width: 100%;
    transition: transform 0.3s ease;
    padding: 1rem 0;
}

.video-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: #111;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-preview.active {
    opacity: 1;
    pointer-events: auto;
}

.video-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    background: #0071e3;
    transform: scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-description {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}


/* ==========================================================================
   Assessment Section
   ========================================================================== */
.assessment-section {
    background: linear-gradient(to bottom, #000, #111);
    padding: 8rem 5%;
    color: white;
    position: relative;
    overflow: hidden;
}

.assessment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.assessment-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.assessment-card {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 90%;
    transition: all 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.assessment-card.right-aligned {
    margin-left: auto;
    grid-template-columns: 400px 1fr;
}

.assessment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0071e3;
    /* Apple Blue */
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.assessment-badge.orange {
    background: linear-gradient(45deg, #FF9800, #F44336);
}

.badge-icon {
    font-size: 1.2rem;
}

.assessment-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.right-aligned .assessment-title {
    background: linear-gradient(45deg, #fff, #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    color: #2997ff;
    font-size: 1.2rem;
}

.right-aligned .feature-icon {
    color: #FF9800;
}

.assessment-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.action-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.assessment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #0071e3;
    /* Apple Blue */
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.assessment-button.orange {
    background: linear-gradient(45deg, #FF9800, #F44336);
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.assessment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.2);
}

.assessment-button.orange:hover {
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
}

.assessment-button:hover .button-arrow {
    transform: translateX(5px);
}

.time-estimate {
    font-size: 0.9rem;
    opacity: 0.7;
}

.assessment-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.assessment-card.right-aligned .assessment-image img {
    /* Reset specific positioning for right-aligned since we use flexbox now */
    right: auto;
    left: auto;
    transform: none;
}


/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background: #1c1c1e;
    /* Apple Footer Dark */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 5% 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(50px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 2fr 1.25fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.footer-identity {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-identity .name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-identity .value-prop {
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-identity .role-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-identity .role-line {
    display: block;
    margin-bottom: 0.2rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.nav-group h4 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Footer CTA Block */
.footer-cta {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-cta .cta-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-cta .cta-link:hover {
    color: #0077ED;
    transform: translateX(5px);
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    /* Softer link color */
    text-decoration: none;
    transition: color 0.3s, transform 0.3s, background-color 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding: 0.25rem 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.footer-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0077ED;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-nav .nav-link:hover {
    color: white !important;
    background: transparent !important;
    transform: translateX(5px) !important;
    box-shadow: none !important;
}

.footer-nav .nav-link:hover::after {
    transform: scaleX(1);
}

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

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem;
}

.legal-link:hover {
    color: white;
}

.divider {
    margin: 0 0.5rem;
    opacity: 0.4;
}


/* ==========================================================================
   Connect Page Styles
   ========================================================================== */
.connect-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 5% 8rem;
}

.connect-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connect-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.connect-options {
    background: #000;
    padding: 6rem 5%;
}

.options-container {
    max-width: 1200px;
    margin: 0 auto;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.connect-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.connect-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-card-icon svg {
    width: 30px;
    height: 30px;
    color: #2997ff;
}

.connect-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.connect-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.connect-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background: #0071e3;
    /* Apple Blue */
}

/* Contact Form Section */
.contact-form-section {
    background: #000;
    padding: 6rem 5%;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2997ff;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #0071e3;
    /* Apple Blue */
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: #000;
    padding: 8rem 5%;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-slider-container {
    position: relative;
    padding: 2rem 0;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2997ff;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes backgroundMove {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   Hero Section - Video Background
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

/* --- YouTube Background Video Container --- */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 */
    transform: translate(-50%, -50%) scale(1.3);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.hero-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.hero-title .text-gradient {
    background: linear-gradient(95deg, #ffffff, #f3f5f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-list li:hover {
    transform: translateX(10px);
    color: #2997ff;
}

.service-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.8;
}

.hero-cta {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0071e3;
    /* Apple Blue */
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-cta:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.3);
}

.hero-cta:hover::before {
    left: 0;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 500px;
    height: 600px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* --- Updated Stats Badges for Long Text --- */
.hero-stats {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    /* Wider container */
    justify-content: center;
    padding: 0 1rem;
}



/* Hero Bio Text */
.hero-bio {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 4;
    width: 120%;
    max-width: 700px;
    white-space: nowrap;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2997ff;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    left: 25%;
    animation-delay: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* --- Hero Text Animation --- */
/* --- Epic Hero Text Animation --- */
.hero-animate-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: scale(0.98);
        /* Tactile click effect */
    }
}

@keyframes scaleInFade {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

@keyframes staggerReveal {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-title {
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    visibility: visible;
}

.animate-service-item {
    animation: staggerReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    visibility: visible;
}

.animate-cta {
    animation: scaleInFade 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    visibility: visible;
}

/* ==========================================================================
   (FINAL) Mobile Hero Section Layout 
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        width: 400px;
        height: 500px;
    }

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

@media (max-width: 767px) {
    body {
        padding-top: 0 !important;
    }

    .hero-section {
        margin-top: 0 !important;
        padding-top: 100px !important;
        min-height: 100vh;
        height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding-top: 120px;
        /* Add padding here instead for content spacing */
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 6rem;
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding-top: 3rem;
    }

    .service-list {
        justify-content: center;
    }

    .hero-image-wrapper {
        position: relative;
        width: 280px;
        margin: 0 auto;
    }

    .hero-main-image {
        position: static;
        transform: none;
    }

    /* Fix for mobile header gap: Align video to top instead of center */
    .hero-video-background iframe {
        top: 0;
        transform: translateX(-50%) scale(1.3);
        height: 100vh;
        /* Ensure it covers viewport height at minimum */
    }

    /* Updated Mobile Stats - Hide if too crowded, or style simplified */
    .hero-stats {
        display: none;
    }

    .hero-bio {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        margin-bottom: 20rem !important;
        width: auto;
        white-space: normal;
        line-height: 1.5;
    }

    /* Fix About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .about-description {
        text-align: left;
    }

    .about-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .newsletter-container {
        padding: 2rem;
    }

    /* Reduce gap between About and Services sections */
    .about-section {
        padding: 4rem 5% 2rem 5% !important;
    }

    .services-section {
        padding: 2rem 5% 4rem 5% !important;
    }
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
@media (max-width: 768px) {

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .navbar.floating {
        width: 100%;
        margin: 0;
        padding: 0.8rem 1.5rem;
        border-radius: 0;
        top: 0;
        left: 0;
    }
}

/* ==========================================================================
   Community Popup Styles
   ========================================================================== */
.community-popup .popup-content {
    max-width: 800px;
    width: 90%;
    background: #1a1a1a;
    /* Ensure background is solid */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.community-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.community-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.community-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.community-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-style: italic;
}

.community-option p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.community-option .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 768px) {
    .community-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .community-popup .popup-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Program Card Mobile Styles */
    .program-card-home {
        min-height: 350px;
    }

    .program-card-home .service-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .program-card-home .service-description {
        font-size: 0.95rem;
        max-width: 95%;
    }

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

    /* Client Logos Section - Mobile Spacing */
    .client-logos {
        padding-top: 6rem !important;
        margin-top: 0 !important;
    }
}

/* ==========================================================================
   Mobile Optimizations (Post-Programs Sections)
   ========================================================================== */
@media (max-width: 768px) {

    /* General Section Padding Reduction */
    .events-section,
    .growth-section,
    .success-stories,
    .process-section {
        padding: 4rem 0 !important;
    }

    /* Courses Section */
    .events-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem !important;
    }
    
    .cta-text {
        text-align: left;
    }

    /* Growth Section */
    .growth-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .header-title {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .header-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .stats-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem !important;
    }

    .stat-percentage {
        font-size: 2.5rem !important;
    }

    /* Success Stories */
    .stories-title {
        font-size: 2rem !important;
    }

    .stories-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .stories-slider-container {
        padding: 0 1rem;
    }

    /* Process Section - Comprehensive Mobile Redesign */
    .process-section {
        padding: 3rem 0 !important;
    }

    .process-container {
        padding: 0 1.5rem !important;
    }

    .process-title {
        font-size: 1.3rem !important;
        line-height: 1.35 !important;
        margin-bottom: 2rem !important;
        text-align: center;
    }

    .process-steps {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .step-item {
        width: 90% !important;
        max-width: 380px !important;
        padding: 1.25rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .step-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
        flex-shrink: 0 !important;
    }

    .step-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 600 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }

    .step-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        opacity: 0.85 !important;
        text-align: center !important;
    }

    .process-cta {
        margin-top: 2rem !important;
        text-align: center;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 3rem clamp(1rem, 4vw, 1.5rem) 2rem !important;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 2.2rem !important;
        margin-bottom: 2rem !important;
    }

    .footer-identity {
        text-align: center;
        align-items: center;
        margin-bottom: 0.5rem;
        gap: 0.5rem !important;
    }

    .footer-identity .name {
        font-size: 1.3rem !important;
    }

    .footer-identity .value-prop {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .footer-identity .role-desc {
        display: none !important;
    }

    .footer-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1.25fr !important;
        gap: 1.5rem clamp(0.5rem, 2vw, 1rem) !important;
        text-align: left;
        width: 100% !important;
        align-items: start !important;
    }

    .nav-group {
        gap: 0.65rem !important;
    }

    .nav-group h4 {
        font-size: clamp(0.85rem, 3vw, 0.92rem) !important;
        margin-bottom: 0.6rem !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        color: #fff !important;
    }

    .footer-nav .nav-link {
        font-size: clamp(0.78rem, 2.7vw, 0.85rem) !important;
        line-height: 1.45 !important;
        margin-bottom: 0 !important;
        display: block;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .footer-cta {
        padding: 1.5rem !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem !important;
    }
    
    .footer-cta h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    
    .footer-cta p {
        font-size: 0.88rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.4 !important;
    }

    .footer-cta .cta-link {
        font-size: 0.92rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center;
        padding-top: 1.5rem !important;
        font-size: 0.8rem !important;
    }

    .social-links {
        justify-content: center !important;
    }

    /* Assessment Section */
    .assessment-section {
        padding: 4rem 1.5rem !important;
    }

    .assessment-card {
        grid-template-columns: 1fr !important;
        padding: 2rem !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .assessment-card.right-aligned {
        grid-template-columns: 1fr !important;
        margin-left: 0 !important;
    }

    .assessment-title {
        font-size: 1.5rem !important;
    }

    .assessment-image {
        order: -1;
        height: auto !important;
    }

    .assessment-image img {
        position: static !important;
        transform: none !important;
        margin: 0 auto;
        display: block;
        max-width: 80% !important;
    }

    /* Testimonials */
    .rotate-testimonials-wrapper {
        padding: 2rem 1.5rem !important;
    }

    .rotate-testimonial-slide {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .rotate-testimonial-text {
        font-size: 1.2rem !important;
        padding-left: 1rem !important;
    }

    .rotate-testimonial-text::before {
        font-size: 2.5rem !important;
        left: -0.5rem !important;
        top: -0.5rem !important;
    }

    .rotate-testimonial-image-wrap {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto;
    }

    .rotate-author-name {
        font-size: 1rem !important;
    }

    .rotate-author-title {
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   Hero CTA Group & Secondary Button
   ========================================================================== */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta.btn-secondary::before {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Bento Grid About Section (New 2026 Layout)
   ========================================================================== */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.bento-item {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bento-item:hover {
    transform: translateY(-4px) scale(1.01);
    background: rgba(40, 40, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Grid Placement */

/* Bio Card: Top Left, Spans 2 cols, 2 rows (on desktop) */
.bio-card {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image Card: Right, Spans 2 cols, 2 rows (on desktop) */
.image-card {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    /* Reset padding for full image */
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

/* Stat Cards: Row 3 */
.stat-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #2997ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.bento-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* CTA Card: Row 3, Last Col */
.cta-card {
    grid-column: span 1;
    background: #0077ED;
    /* Distinctive primary color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.cta-card:hover {
    background: #0062c4;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Typography Overrides */
.bio-card .about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bio-card .about-subtitle {
    font-size: 1rem;
    color: #2997ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bio-card .about-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns tablet */
    }

    .bio-card {
        grid-column: span 2;
    }

    .image-card {
        grid-column: span 2;
        height: 300px;
    }

    .stat-card,
    .cta-card {
        grid-column: span 1;
        /* 2 stats per row */
    }
}

@media (max-width: 600px) {
    .bento-container {
        grid-template-columns: 1fr;
        /* 1 column mobile */
        gap: 1rem;
    }

    .bio-card,
    .image-card,
    .stat-card,
    .cta-card {
        grid-column: span 1;
        grid-row: auto;
        /* Reset row spans */
    }

    .image-card {
        height: 250px;
    }

    .bio-card .about-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   About Section - Sticky Scroll
   ========================================================================== */
.about-section-sticky {
    padding: 100px 5%;
    background: #050505;
    position: relative;
}

.sticky-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* --- Left Side (Sticky) --- */
.sticky-content {
    position: sticky;
    top: 120px;
    /* Adjust based on navbar height */
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-subtitle {
    font-size: 1.1rem;
    color: #0077ED;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.sticky-image-container {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sticky-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sticky-image-container:hover img {
    transform: scale(1.05);
}

/* --- Right Side (Scrollable) --- */
.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.scroll-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.scroll-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.block-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.block-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --- Stats Grid in Scroll Block --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0077ED;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .sticky-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-content {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
    }

    .sticky-title {
        font-size: 2.2rem;
    }

    .sticky-image-container {
        margin: 0 auto;
    }

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

/* ==========================================================================
   Mobile Typography Overrides
   ========================================================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2.25rem;
    }

    .hero-headline {
        /* Usually handled by specific hero queries, but good as fallback */
        font-size: 3rem;
    }
}

/* ==========================================================================
   Experience Section - 3 Paired Tensions Grid
   ========================================================================== */
.experience-section {
    padding: 8rem 5%;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: 5rem;
}

.experience-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.experience-title .highlight-text {
    color: rgba(255, 255, 255, 0.5);
}

.experience-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tension-statement {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.tension-top {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.tension-bottom {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.tension-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: auto;
}

.experience-footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-conclusion {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-title {
        font-size: 2.25rem;
    }
    
    .experience-section {
        padding: 5rem 5%;
    }
    .experience-card {
        padding: 2rem;
    }
    .tension-top, .tension-bottom {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Business Section (Clarity)
   ========================================================================== */
.business-section {
    padding: 6rem 5%;
    position: relative;
    background: #000;
}

.business-container {
    max-width: 1200px;
    margin: 0 auto;
}

.business-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.business-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.mobile-swipe-hint {
    display: none;
}

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

@keyframes item-swipe-nudge {
    0% { transform: translateX(0); }
    15% { transform: translateX(-40px); }
    30% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.reason-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.reason-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.reason-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

.business-card .cta-text {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.business-card .cta-text strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    display: block;
    margin-top: 1rem;
    background: linear-gradient(135deg, #0071e3 0%, #4facfe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.business-card .cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.business-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .business-section { padding: 4rem 5%; }
    .business-card { padding: 2rem; }
    .business-title { font-size: 2.5rem; }
    .business-card .cta-text { font-size: 1.25rem; }
    .business-card .cta-text strong { font-size: 1.5rem; }
}

/* ==========================================================================
   Intervention Pathways (Services Grid)
   ========================================================================== */
.services-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem !important;
}

.intervention-card {
    flex: 0 1 calc(33.333% - 1.66rem);
    min-width: 320px;
    max-width: 380px;
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #0d1117; /* brand tint dark fallback */
}

.intervention-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.intervention-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) blur(2px);
    transform: scale(1.05);
    transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.intervention-card:hover .intervention-bg {
    filter: grayscale(20%) blur(0px);
    transform: scale(1.08); /* slight zoom interaction effect */
}

.intervention-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle brand tint gradient overlay */
    background: linear-gradient(180deg, rgba(5, 15, 30, 0.6) 0%, rgba(5, 15, 30, 0.9) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.intervention-card:hover .intervention-overlay {
    /* Reveals image more */
    background: linear-gradient(180deg, rgba(5, 15, 30, 0.4) 0%, rgba(5, 15, 30, 0.75) 100%);
}

.intervention-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.intervention-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
}

.intervention-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.intervention-cta {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.intervention-card:hover .intervention-cta {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .intervention-card {
        aspect-ratio: 1 / 1;
    }
    
    .intervention-content {
        padding: 2rem 1.5rem;
    }
    
    .intervention-title {
        font-size: 1.6rem;
    }
    
    .intervention-desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   Highlight Glow Effect
   ========================================================================== */
.intervention-card.highlight-glow {
    border: 1px solid rgba(79, 172, 254, 0.5);
    z-index: 10;
    animation: pulse-glow 3s infinite alternate;
}

.intervention-card.highlight-glow:hover {
    border: 1px solid rgba(79, 172, 254, 0.8);
    transform: translateY(-8px);
}

.intervention-card.highlight-glow .intervention-title {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px 1px rgba(79, 172, 254, 0.3), 0 10px 30px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 0 30px 4px rgba(79, 172, 254, 0.6), 0 10px 30px rgba(0,0,0,0.4); }
    100% { box-shadow: 0 0 15px 1px rgba(79, 172, 254, 0.3), 0 10px 30px rgba(0,0,0,0.4); }
}

/* ==========================================================================
   Mobile Responsiveness Overrides (Added during Audit)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. Hero Section */
    .hero-headline {
        font-size: 14vw !important;
    }
    .hero-subhead {
        font-size: 4vw !important;
    }
    .hero-image-side img {
        max-width: 100%;
        object-position: center top;
        margin: 0 auto;
        display: block;
    }

    /* 2. Logos Section */
    .logos-slider-container {
        --logo-width: 120px !important;
        --logo-height: 60px !important;
        --logo-gap: 1.5rem !important;
    }
    .logo-item {
        padding: 0.5rem !important;
    }

    /* 3. Business Section */
    .business-section {
        padding: 4rem 1.5rem !important;
    }
    .business-card {
        padding: 2.5rem 1.5rem !important;
    }
    .mobile-swipe-hint {
        display: block !important;
        text-align: center;
        color: #2997ff;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        animation: hint-bounce 2s ease-in-out infinite;
    }
    .reasons-list {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        align-self: stretch !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem !important;
        gap: 1rem !important;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
    }
    .reasons-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    .reason-item {
        flex: 0 0 85% !important;
        padding: 1.5rem !important;
        scroll-snap-align: center;
        animation: item-swipe-nudge 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) 1s 2;
    }
    .back-to-top-btn {
        bottom: 20px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 9999 !important;
    }

    /* 4. Success Stories Slider */
    .success-stories .slider-nav {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .stories-slider .story-card {
        padding: 1.5rem !important;
    }

    /* 5. Popup Close Button */
    #promoPopupContainer .popup-close-btn {
        padding: 15px !important;
        top: 10px !important;
        right: 10px !important;
    }


}

/* ==========================================================================
   Ninja CTAs - Ghost CTA Box (Blog & Articles)
   ========================================================================== */
.ghost-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #0071e3;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ghost-cta-box:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(4px);
}

.ghost-cta-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    display: inline-block;
}

.ghost-cta-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.ghost-cta-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ghost-cta-link {
    display: inline-flex;
    align-items: center;
    color: #64B5F6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ghost-cta-link:hover {
    color: #90CAF9;
}

.ghost-cta-link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    list-style: none;
    position: relative;
    padding-right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
}

.faq-item[open] .faq-question {
    color: #fff;
}

.faq-item:hover .faq-question {
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-item:hover .faq-icon {
    color: #fff;
}

.faq-answer {
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item[open] .faq-answer {
    animation: fadeInFaq 0.3s ease forwards;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
