/* ===================================
   CSS VARIABLES & DESIGN SYSTEM
   =================================== */

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;

    --color-yellow: #facc15;
    --color-yellow-light: #fde047;
    --color-yellow-dark: #eab308;
    --color-yellow-glow: rgba(250, 204, 21, 0.5);

    /* Typography */
    --font-sans: 'Poppins',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    --font-serif: 'Playfair Display',
        Georgia,
        serif;

    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 3.75rem;
    /* 60px */
    --font-size-7xl: 4.5rem;
    /* 72px */
    --font-size-8xl: 6rem;
    /* 96px */
    --font-size-9xl: 8rem;
    /* 128px */

    /* Spacing */
    --spacing-1: 0.25rem;
    /* 4px */
    --spacing-2: 0.5rem;
    /* 8px */
    --spacing-3: 0.75rem;
    /* 12px */
    --spacing-4: 1rem;
    /* 16px */
    --spacing-5: 1.25rem;
    /* 20px */
    --spacing-6: 1.5rem;
    /* 24px */
    --spacing-8: 2rem;
    /* 32px */
    --spacing-10: 2.5rem;
    /* 40px */
    --spacing-12: 3rem;
    /* 48px */
    --spacing-16: 4rem;
    /* 64px */
    --spacing-20: 5rem;
    /* 80px */
    --spacing-24: 6rem;
    /* 96px */
    --spacing-32: 8rem;
    /* 128px */

    /* Layout */
    --container-width: 1280px;
    --container-wide-width: 1440px;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index */
    --z-loader: 9999;
    --z-nav: 1000;
    --z-glow: 10;
}

/* ===================================
   CUSTOM SCROLLBAR
   Minimal floating scrollbar design
   =================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c9a962 0%, #a08339 50%, #c9a962 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4b76a 0%, #b8993f 50%, #d4b76a 100%);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Remove scrollbar buttons/arrows */
::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c9a962 transparent;
}

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

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

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}



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

.tech-marquee {
    width: 100%;
    padding: 2.5rem 0;
    background: transparent;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.tech-track span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    font-weight: 500;
    padding-right: 3rem;
    letter-spacing: 0.05em;
    display: inline-block;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */

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

h1 {
    font-size: var(--font-size-6xl);
}

h2 {
    font-size: var(--font-size-5xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

p {
    margin-bottom: var(--spacing-4);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

a:hover {
    opacity: 0.8;
}

em.serif-italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
}

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



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

.container-wide {
    max-width: var(--container-wide-width);
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

section {
    padding: var(--spacing-24) 0;
}

.center {
    text-align: center;
}

/* ===================================
   GLOW BORDER EFFECT
   =================================== */


/* ===================================
   LOADER
   =================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

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

.loader-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

/* Circular Loader */
.circular-loader {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo-center {
    width: 40px;
    height: auto;
    position: absolute;
    z-index: 10;
    /* Optional: subtle pulse */
    animation: simplePulse 2s ease-in-out infinite;
}

.loader-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--color-white);
    /* Elegant white ring */
    border-right-color: rgba(255, 255, 255, 0.1);
    /* Fade tail */
    animation: ring-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    position: absolute;
}

/* Loader percentage styles moved to loader.css */


@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes simplePulse {

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

    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}



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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-32) 0;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-1 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgb(0, 153, 255) 0%, rgba(0, 153, 255, 0) 70%);
}

.hero-glow-2 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgb(244, 191, 79) 0%, rgba(244, 191, 79, 0) 70%);
}

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

.hero-tag {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: -0.05em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3rem, 9vw, 92px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 60px;
    letter-spacing: -0.06em;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 24px;
    color: #c2c2c2;
    margin-top: 100px;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.hero-aurora {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-content: center;
    background-color: #000000;
    /* Removed dynamic green color */
    --hero-color: #000000;
    background-image: none;
    overflow: hidden;
    padding: 6rem 1rem;
    color: #e5e7eb;
}

.hero-aurora::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    /* Adjust height for smoothness */
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 5;
    pointer-events: none;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    /* Slight transparency to blend with background if needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}



.hero-aurora-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-block;
    background-color: rgba(75, 85, 99, 0.5);
    /* gray-600/50 */
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    backdrop-filter: blur(4px);
}

.hero-title-aurora {
    max-width: 100%;
    font-size: clamp(2.5rem, 8.5vw, 8.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.hero-title-aurora .hero-line {
    display: block !important;
    white-space: nowrap !important;
    width: max-content !important;
    max-width: 95vw !important;
}

.hero-title-aurora .serif-italic {
    font-family: var(--font-serif) !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

.hero-subtitle-aurora {
    max-width: 36rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.625;
    color: #e5e7eb;
}


.hero-aurora-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.btn-aurora {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.6rem 1.5rem;
    background-color: rgba(3, 7, 18, 0.1);
    /* gray-950/10 */
    color: #f9fafb;
    /* gray-50 */
    border-radius: 9999px;
    border: 1px solid var(--hero-color);
    box-shadow: 0 4px 24px var(--hero-color);
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.btn-aurora:hover {
    background-color: rgba(3, 7, 18, 0.5);
    /* gray-950/50 */
    transform: scale(1.015);
    opacity: 1;
}

.btn-aurora:active {
    transform: scale(0.985);
}

.btn-aurora svg {
    transition: transform 0.3s;
}

.btn-aurora:hover svg {
    transform: rotate(-45deg);
}

.btn-aurora:active svg {
    transform: rotate(-12deg);
}

@media (max-width: 640px) {
    .btn-aurora {
        padding: 0.5rem 1.25rem;
        font-size: 0.9375rem;
        /* 15px */
    }
}

.btn-aurora-secondary {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background-color: transparent;
    color: #e5e7eb;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.btn-aurora-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.015);
    opacity: 1;
}

/* Logo Carousel */
.logo-carousel {
    width: 100%;
    margin-top: 6rem;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.logo-track {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.logo-track img {
    height: 30vh;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

@keyframes scroll-left {
    to {
        transform: translateX(-50%);
    }
}

/* ===================================
   TECH STACK
   =================================== */

.tech-stack {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.tech-stack-grid .item img {
    height: 30px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.tech-stack-grid .item:hover img {
    opacity: 1;
}

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

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

    .tech-stack {
        padding: 60px 0;
    }
}

/* ===================================
   INTRODUCTION (SPLIT LAYOUT)
   =================================== */

/* ===================================
   INTRODUCTION (CENTERED HOOK)
   =================================== */

.introduction {
    padding: 6rem 0 6rem 0;
    background: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phil-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
}

.phil-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #000 0%,
            rgba(0, 0, 0, 0.8) 15%,
            transparent 40%,
            transparent 60%,
            #000 100%);
    z-index: 2;
}

/* Soft blur transition zone - TOP */
.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    z-index: 4;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

/* Soft blur transition zone - BOTTOM */
.introduction::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    z-index: 4;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.introduction .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.introduction .section-title em {
    font-size: 1.15em;
    display: inline-block;
}

.introduction .section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.6rem;
    border: 1.5px solid #fff;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    z-index: 15;
}

.intro-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

.intro-btn:hover svg {
    transform: translateX(5px);
}

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

.mockup-1 {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
}

.mockup-2 {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    margin-top: 100px;
}

.mockup-3 {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
}

.mockup-4 {
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    margin-top: 100px;
}

@media (max-width: 1024px) {
    .introduction {
        padding: 100px 0;
    }

    .intro-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-sticky {
        position: relative;
        top: 0;
    }

    .intro-sticky .section-subtitle {
        max-width: 100%;
    }

    .showcase-grid {
        gap: 20px;
    }

    .mockup-2,
    .mockup-4 {
        margin-top: 40px;
    }
}

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

    .mockup-2,
    .mockup-4 {
        margin-top: 0;
    }
}

/* Featured works replaced by Introduction Showcase Grid styles above */
/* ===================================
   FEATURED WORKS
   =================================== */

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

.work-card {
    background-color: var(--color-gray-900);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.work-card:hover {
    transform: translateY(-8px);
}

.work-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--color-gray-800), var(--color-gray-900));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.work-mockup {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-gray-600);
}

.work-card h3 {
    padding: var(--spacing-6) var(--spacing-6) var(--spacing-2);
    font-size: var(--font-size-2xl);
    margin-bottom: 0;
}

.work-description {
    padding: 0 var(--spacing-6);
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-4);
}

.work-link {
    display: block;
    padding: 0 var(--spacing-6) var(--spacing-6);
    color: var(--color-blue);
    font-weight: 600;
}

.works-cta {
    text-align: center;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-16);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-12);
}

.service-card {
    background-color: var(--color-gray-900);
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid transparent;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

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

.service-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
}

.service-card p {
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
}

/* ===================================
   APPROACH
   =================================== */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-16);
}

.approach-card {
    padding: var(--spacing-8);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.approach-number {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;
    margin-bottom: var(--spacing-4);
    font-family: var(--font-serif);
    line-height: 1;
}

.approach-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-3);
    color: var(--color-white);
}

.approach-card p {
    color: var(--color-gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===================================
   FAQ
   =================================== */

.faq-list {
    max-width: 900px;
    margin: var(--spacing-12) auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-900);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6) 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-blue);
}

.faq-number {
    color: var(--color-gray-600);
    font-weight: 700;
}

.faq-icon {
    margin-left: auto;
    font-size: var(--font-size-3xl);
    font-weight: 300;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 var(--spacing-6) calc(var(--spacing-4) * 2 + 1.5rem);
    color: var(--color-gray-500);
    line-height: 1.7;
}

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

.cta {
    text-align: center;
    padding: var(--spacing-32) 0;
    background: linear-gradient(180deg, transparent, var(--color-gray-900) 50%, transparent);
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-10);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    border-top: 1px solid var(--color-gray-900);
    padding: var(--spacing-20) 0 var(--spacing-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

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

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


.strategy-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.strategy-section .section-title {
    position: absolute !important;
    top: 4rem !important;
    left: 50% !important;
    transform: translateX(calc(-50% - 4px)) !important;
    width: auto !important;
    z-index: 200 !important;
    color: #fff !important;
    text-align: center !important;
    pointer-events: none !important;
    margin: 0 !important;
}

.strategy-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Orbital Timeline Styles */
.orbit-node {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    /* Montserrat */
    z-index: 100;
}

.node-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    color: #fff;
}

.orbit-node:hover .node-inner,
.orbit-node.active .node-inner {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.node-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-family: var(--font-sans);
}

.orbit-node:hover .node-label,
.orbit-node.active .node-label {
    opacity: 1;
    color: var(--color-white);
}

/* Central Info Display */
.active-node-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 450px;
    max-width: 85vw;
    background: #000000 !important;
    /* Force Solid Black */
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 500;
    /* Above all nodes (nodes are up to 200) */
    font-family: var(--font-sans) !important;
    /* Ensure Montserrat */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Ensure text is centered */
}

.active-node-info.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.active-node-title {
    font-family: var(--font-sans) !important;
    font-size: var(--font-size-3xl);
    font-weight: 400 !important;
    /* Regular Montserrat */
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: none;
    /* Keep natural case or as data */
    text-align: center !important;
}

.active-node-description {
    font-family: var(--font-sans) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-gray-400);
    font-weight: 400 !important;
    max-width: 90%;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.orbit-center {
    transition: opacity 0.5s ease;
}

/* Cleanup old node-card styles */
.node-card {
    display: none;
}




.footer-column h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-4);
    color: var(--color-white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-2);
}

.footer-column ul li a {
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
}

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

.footer-social {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-8);
    border-top: 1px solid var(--color-gray-900);
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    flex-wrap: wrap;
    gap: var(--spacing-4);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and below */
@media (max-width: 1024px) {}

@media (max-width: 768px) {
    :root {
        --spacing-24: 4rem;
        --spacing-32: 5rem;
    }

    .hero {
        min-height: 80vh;
        padding: var(--spacing-20) 0;
    }

    /* Scale down hero title for tablet */
    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .introduction-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100%;
    }

    .hero-cta .btn {
        width: auto !important;
        flex: 1;
        max-width: 160px;
    }

    .introduction-cta .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .works-grid,
    .services-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Section titles */
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .section-description {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {

    .container,
    .container-wide {
        padding: 0 var(--spacing-4);
    }

    /* Further scale down hero for phone */
    .hero-title {
        font-size: 44px !important;
        letter-spacing: -0.05em;
        margin-bottom: 30px !important;
    }

    .hero-subtitle {
        font-size: 18px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

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

    /* FAQ padding fix */
    .faq-answer p {
        padding-left: var(--spacing-4);
        padding-right: var(--spacing-4);
    }

    /* CTA title */
    .cta-title {
        font-size: clamp(1.75rem, 7vw, 3rem);
    }

    /* Ensure buttons are touch-friendly */
    .btn {
        padding: var(--spacing-4) var(--spacing-6);
        font-size: var(--font-size-base);
    }

    .btn-large {
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 500;
    }

    .hero-cta {
        gap: var(--spacing-2);
        flex-wrap: nowrap;
    }
}

/* Contact page specific responsive fixes */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SERVICES FEATURES (GRID REDESIGN)
   =================================== */

.services-features {
    padding: var(--spacing-20) 0;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 80rem;
    /* 7xl */
    margin: 0 auto;
}

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

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    /* py-10 */
    position: relative;
    border-color: #262626;
    /* neutral-800 */
    border-style: solid;
    border-width: 0;
    /* Default borders for responsive grid */
    border-bottom-width: 1px;
    border-right-width: 0;
}

/* Tablet Borders (2 cols) */
@media (min-width: 768px) {
    .service-card {
        border-right-width: 1px;
    }

    /* Remove right border for every 2nd item */
    .service-card:nth-child(2n) {
        border-right-width: 0;
    }

    /* Remove bottom border for last row (items 7-8) */
    .service-card:nth-last-child(-n+2) {
        border-bottom-width: 0;
    }
}

/* Desktop Borders (4 cols) */
@media (min-width: 1024px) {
    .service-card {
        border-right-width: 1px;
        border-bottom-width: 1px;
    }

    /* Specific overrides based on the React component logic */
    /* top row = index 0-3 (1-4) */
    /* bottom row = index 4-7 (5-8) */

    /* Last item in each row shouldn't have right border? 
       Actually React code says "lg:border-r" for all, but maybe grid handles outer edge differently.
       Let's stick to the visual: inner borders usually. */

    .service-card:nth-child(4n) {
        border-right-width: 0;
    }

    .service-card:nth-last-child(-n+4) {
        border-bottom-width: 0;
    }

    /* Left border logic from React code: (index === 0 || index === 4) && "lg:border-l" 
       This implies the container might not have outer borders, but first col does?
       Let's implement exactly as requested. */
    .service-card:nth-child(1),
    .service-card:nth-child(5) {
        border-left-width: 1px;
    }
}


/* Hover Gradient Overlay */
.card-gradient {
    opacity: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #262626, transparent);
    /* neutral-800 to transparent */
    pointer-events: none;
    transition-duration: 200ms;
}

/* Top row gradient direction (optional variance) */
.service-card:nth-child(-n+4) .card-gradient {
    background: linear-gradient(to top, #262626, transparent);
}

/* Bottom row gradient direction */
.service-card:nth-child(n+5) .card-gradient {
    background: linear-gradient(to bottom, #262626, transparent);
}

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

.card-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    padding: 0 2.5rem;
    /* px-10 */
    color: #a3a3a3;
    /* neutral-400 */
}

.card-content {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    padding: 0 2.5rem;
    /* px-10 */
}

.card-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    /* w-1 */
    height: 1.5rem;
    /* h-6 */
    background-color: #404040;
    /* neutral-700 */
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
    transition: all 0.2s;
    transform-origin: center;
}

.service-card:hover .card-accent-bar {
    height: 2rem;
    /* h-8 */
    background-color: #3b82f6;
    /* blue-500 */
}

.card-title {
    display: inline-block;
    color: #f5f5f5;
    /* neutral-100 */
    transition-duration: 200ms;
}

.service-card:hover .card-title {
    transform: translateX(0.5rem);
    /* translate-x-2 */
}

.card-description {
    font-size: 0.875rem;
    /* text-sm */
    color: #d4d4d4;
    /* neutral-300 */
    max-width: 20rem;
    /* max-w-xs */
    position: relative;
    z-index: 10;
    padding: 0 2.5rem;
    /* px-10 */
    line-height: 1.6;
}

/* ===================================
   FOOTPRINT SECTION (APPROACH REDESIGN)
   =================================== */

.footprint-section {
    padding: 1rem 0;
    /* Aggressively reduced from 1.5rem */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    position: relative;
    background-color: var(--color-black);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    /* Ensure it stays above pinned sections */
}

/* Light state when scrolled deep into section */
.footprint-section.is-light {
    background-color: #FFFFFF;
}

.footprint-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    /* Reduced from 2rem */
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}

.footprint-header .section-title {
    text-align: center;
    margin-bottom: 0;
    max-width: 100%;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    /* Slightly smaller base on small height to save space */
    font-weight: 600;
    color: #fff;
    transition: color 0.6s ease;
    white-space: normal;
    /* Allow wrapping by default */
}

@media (min-width: 1024px) {
    .footprint-header .section-title {
        white-space: nowrap;
        /* Force one line only on desktop */
    }
}

.footprint-header .section-title em {
    font-size: 1.2em;
    font-weight: 300;
}

.footprint-section.is-light .footprint-header .section-title {
    color: #000000;
}

.footprint-section.is-light .btn-pill-outline {
    border-color: rgba(0, 0, 0, 0.3);
    color: #000;
}

.footprint-section.is-light .btn-pill-outline:hover {
    border-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
}

.footprint-actions {
    display: flex;
    gap: 1rem;
}

.footprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 cols */
    gap: 0.75rem;
    /* Tighter gap */
}

@media (min-width: 768px) {
    .footprint-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 cols for symmetry with 8 items */
    }
}

@media (min-width: 1024px) {
    .footprint-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 cols */
    }
}

.footprint-card {
    background-color: #000;
    /* Deep black */
    border: 1px solid #262626;
    /* neutral-800 */
    border-radius: 16px;
    /* Slightly rounder for bigger scale */
    padding: 2rem;
    /* Increased from 1.5rem for ultra-premium feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1/1;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 420px;
    /* Max size increased from 360px */
    height: clamp(280px, 38vh, 420px);
    /* Dynamic height to guarantee fit */
    width: 100%;
    margin: 0 auto;
    /* Center within column */
}

.footprint-card:hover {
    border-color: #525252;
    /* neutral-600 */
    transform: translateY(-4px);
    background-color: #0c0c0c;
}

/* Base state (Icon + Title) */
.card-base {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footprint-card:hover .card-base,
.footprint-card.is-active .card-base {
    opacity: 0;
    transform: translateY(-10px);
}

/* Hover state (Icon + Title + Description) */
.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 100%;
    padding: 0 1.5rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footprint-card:hover .card-overlay,
.footprint-card.is-active .card-overlay {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: all;
}

.footprint-card .learn-more {
    margin-top: 1rem;
    /* Reduced from 2rem */
    font-size: 0.75rem;
    /* Slightly smaller */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b8860b;
    /* Gold color */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footprint-card:hover .learn-more,
.footprint-card.is-active .learn-more {
    border-color: #b8860b;
    opacity: 1;
}

/* Description styling refinement */
.footprint-card .card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a3a3a3;
    margin-bottom: 0;
}

/* Light State Transition (end of section) */
.footprint-section.is-light .footprint-card {
    background-color: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.1);
}

.footprint-section.is-light .footprint-card:hover,
.footprint-section.is-light .footprint-card.is-active {
    background-color: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.2);
}

.footprint-section.is-light .card-base h3,
.footprint-section.is-light .card-overlay h3,
.footprint-section.is-light .card-description {
    color: #000000;
}

.footprint-section.is-light .learn-more {
    color: #b8860b;
    /* Force gold color in light state */
}

.footprint-section.is-light .card-icon {
    color: #000000;
}

.footprint-card .card-icon {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    transition: all 0.5s ease;
}

.footprint-card .card-icon svg {
    width: 56px;
    /* Scaled up from 48px base */
    height: 56px;
}

.footprint-card h3 {
    font-size: 1.25rem;
    /* Balanced size for better readability */
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    transition: all 0.5s ease;
}

@media (max-width: 640px) {
    .footprint-section {
        padding: 4rem 1rem;
        /* More natural padding for mobile */
        min-height: auto;
        /* Allow section to grow if needed on vertical mobile */
    }

    .footprint-header {
        flex-direction: column;
        align-items: center;
        /* Centered fit for mobile */
        margin-bottom: 2rem;
    }

    .footprint-actions {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .footprint-grid {
        grid-template-columns: 1fr;
        /* Stack cards vertically */
        gap: 1.5rem;
        /* Larger gap for vertical separation */
    }

    .footprint-card {
        padding: 2rem 1.5rem;
        /* More balanced padding for wider cards */
        height: auto;
        /* Let content dictate height */
        min-height: 220px;
        /* Base height */
        aspect-ratio: auto;
        /* Disable forced square on mobile */
        border-radius: 16px;
        /* Match larger roundness */
        max-width: 100%;
        /* Fill the container width */
    }

    .footprint-card .card-icon svg {
        width: 40px;
        /* Scaled down icons */
        height: 40px;
        margin-bottom: 1rem;
    }

    .footprint-card h3 {
        font-size: 1.1rem;
        /* Smaller titles */
    }

    .footprint-card .card-description {
        font-size: 0.85rem;
        /* Smaller descriptions */
        line-height: 1.4;
    }

    .footprint-card .learn-more {
        margin-top: 1rem;
    }
}

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

/* About Hero */
.about-hero {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

/* Subtle Spotlight Effect */
.about-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 30, 40, 0.4) 0%, #000 70%);
    z-index: 1;
}

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

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.85rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero .hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Mission Section */
.mission-section {
    padding: var(--spacing-24) 0;
    text-align: center;
    background-color: #000;
}

.mission-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-white);
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-12) 0;
    background-color: #050505;
    /* Slightly lighter than black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-blue);
    /* Or white */
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team Section */
.team-section {
    padding: var(--spacing-24) 0;
}

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

.team-card {
    background: transparent;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-image {
    width: 100%;
    aspect-ratio: 1/1.2;
    background-color: #111;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Placeholder for actual image */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #222);
}

.team-info h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.team-info p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

/* ===================================
   CTA HERO SECTION (FOOTER)
   =================================== */
.cta-hero {
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.cta-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 4rem;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
}

/* ===================================
   CENTERED FOOTER (New Design)
   =================================== */

.footer-centered {
    background-color: #000000;
    /* Black as requested */
    padding: 6rem 0 3rem 0;
    color: #ffffff;
    border-top: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Logo */
.footer-logo img {
    height: 60px;
    /* Adjust based on logo appearance */
    width: auto;
    filter: brightness(0) invert(1);
    /* Ensure white logo */
}

/* Navigation */
.footer-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Ensure 48px minimum tap target for mobile SEO */
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.5rem 0;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    /* Slightly rounded corners */
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    
    /* Bulletproof method inside flex-column */
    width: 200vw !important;
    max-width: 200vw !important;
    align-self: center;
    position: static;
    margin-left: 0;
}

/* Copyright */
.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo img {
        height: 50px;
    }
}

/* ===================================
   SCROLL DOWN INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    opacity: 0.8;
}