/* Font Face Declarations */
@font-face {
    font-family: "Averta";
    src: url("../averta/Averta-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Averta";
    src: url("../averta/Averta-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Averta";
    src: url("../averta/Averta-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Averta";
    src: url("../averta/Averta-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-red: #D92323;
    --primary-red-hover: #b51b1b;
    --text-dark: #1A1A1A;
    --text-body: #555555;
    --text-light: #888888;
    --bg-light: #F9FAFB;
    --white: #ffffff;
    --border-color: #E5E7EB;
    
    --font-heading: 'Averta', 'Inter', sans-serif;
    --font-body: 'Averta', 'Inter', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.3s ease;

    --ink: #101010;
    --muted: #5b5860;
    --accent: #e00914;
    --accent-dark: #a7000c;
    --accent-soft: #ffe7e0;
    --teal: #1b8c7a;
    --gold: #f2b14b;
    --paper: #fffaf2;
    --panel: #ffffff;
    --shadow: 0 24px 60px -40px rgba(16, 16, 16, 0.6);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    background: #000;
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.page-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: visible;
    position: relative;
}

/* ===== FLOATING O LETTERS BACKGROUND ===== */
.floating-o-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-o {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #D92323;
    opacity: 1;
    user-select: none;
    animation: floatMove 20s infinite ease-in-out;
}

/* Different sizes for variety */
.floating-o.size-small {
    font-size: clamp(50px, 5vw, 70px);
    opacity: 1;
}

.floating-o.size-medium {
    font-size: clamp(80px, 8vw, 110px);
    opacity: 1;
}

.floating-o.size-large {
    font-size: clamp(120px, 12vw, 160px);
    opacity: 1;
}

.floating-o.size-xlarge {
    font-size: clamp(180px, 16vw, 220px);
    opacity: 1;
}

/* Floating animation */
@keyframes floatMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-3deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(7deg);
    }
}

/* Different animation speeds */
.floating-o:nth-child(1) { animation-duration: 25s; animation-delay: 0s; }
.floating-o:nth-child(2) { animation-duration: 30s; animation-delay: 2s; }
.floating-o:nth-child(3) { animation-duration: 22s; animation-delay: 4s; }
.floating-o:nth-child(4) { animation-duration: 28s; animation-delay: 1s; }
.floating-o:nth-child(5) { animation-duration: 35s; animation-delay: 3s; }
.floating-o:nth-child(6) { animation-duration: 26s; animation-delay: 5s; }
.floating-o:nth-child(7) { animation-duration: 32s; animation-delay: 2.5s; }
.floating-o:nth-child(8) { animation-duration: 24s; animation-delay: 4.5s; }
.floating-o:nth-child(9) { animation-duration: 29s; animation-delay: 1.5s; }
.floating-o:nth-child(10) { animation-duration: 27s; animation-delay: 3.5s; }

/* Enhanced sections to work with background */
.section {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2; 
    margin-bottom: 1rem; 
}

h2 { 
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin-bottom: 1.5rem; 
}

h3 { 
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
}

h4 { 
    font-size: 1.25rem; 
    margin-bottom: 0.5rem; 
}

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

ul { 
    list-style: none; 
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 35, 35, 0.3);
}

.btn-dark {
    background: #cd1717;
    color: #fff;
    padding: 14px 28px;
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

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

.logo-container {
    text-align: left;
}

.logo {
    display: block;
    font-size: 2rem;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.tagline {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.nav-list a:hover {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
    padding: 0;
    border-radius: 0 0 40px 40px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
    border-radius: 0 0 40px 40px;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 90px 6vw;
    position: relative;
    z-index: 10;
}

.section-head {
    max-width: 620px;
    margin-bottom: 40px;
}

.section-head.center-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    line-height: 1.7;
}

/* Cards */
.card {
    position: relative;
    background: var(--panel);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(16, 16, 16, 0.06);
    box-shadow:
        0 10px 30px rgba(224, 9, 20, 0.10),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 60px rgba(224, 9, 20, 0.18),
        0 8px 18px rgba(0, 0, 0, 0.06);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin: 16px 0 10px;
}

/* Icon Styles */
.icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    background: var(--accent-soft);
    color: var(--accent);
    letter-spacing: 1px;
}

/* Grids */
.feature-grid,
.process-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Split Layout */
.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Pills */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill-row span,
.pill-item {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(224, 9, 20, 0.08);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.pill-item:hover {
    background: rgba(224, 9, 20, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 9, 20, 0.15);
}

/* List Card */
.list-card {
    background: var(--panel);
    border-radius: 24px;
    padding: 10px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 16, 16, 0.05);
    position: relative;
    overflow: hidden;
}

.list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 9, 20, 0.05), transparent);
    transition: left 0.6s ease;
}

.list-card:hover::before {
    left: 100%;
}

.list-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.08);
    position: relative;
    transition: all 0.4s ease;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    padding-left: 10px;
    background: rgba(224, 9, 20, 0.02);
    border-radius: 12px;
}

.list-item .number-badge {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 9, 20, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.list-item:hover .number-badge {
    background: var(--accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.list-item-content {
    flex: 1;
}

.list-item-content h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.list-item:hover .list-item-content h3 {
    color: var(--accent);
}

.list-item-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.list-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 9, 20, 0.08);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px) scale(0.8);
    transition: all 0.4s ease;
}

.list-item:hover .list-item-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Capabilities Section Specific */
.capabilities-section {
    position: relative;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224, 9, 20, 0.05), transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

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

/* Step Cards */
.step {
    border-left: 4px solid rgba(224, 9, 20, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.step-number {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Team Cards */
.team-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.team-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* New Team Section Design */
.team-section {
    background: linear-gradient(135deg, rgba(224, 9, 20, 0.02), rgba(255, 255, 255, 0.5));
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card-new {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(224, 9, 20, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.team-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.team-card-new:hover::before {
    transform: scaleX(1);
}

.team-card-new:hover {
    border-color: var(--accent);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(224, 9, 20, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, rgba(224, 9, 20, 0.05), rgba(255, 255, 255, 0.3));
    position: relative;
}

.team-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 9, 20, 0.2), transparent);
}

.team-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 20px rgba(224, 9, 20, 0.3);
    transition: all 0.4s ease;
}

.team-card-new:hover .team-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(224, 9, 20, 0.4);
}

.team-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(224, 9, 20, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.team-card-new:hover .team-number {
    color: rgba(224, 9, 20, 0.3);
    transform: scale(1.15);
}

.team-card-new h3 {
    padding: 20px 30px 10px;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.team-card-new:hover h3 {
    color: var(--accent);
}

.team-list {
    list-style: none;
    padding: 0 30px 20px;
    margin: 0;
}

.team-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--muted);
    transition: all 0.3s ease;
}

.team-list li i {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.team-card-new:hover .team-list li {
    color: var(--text-dark);
}

.team-card-new:hover .team-list li i {
    transform: scale(1.2);
}

.team-card-footer {
    padding: 15px 30px 25px;
    display: flex;
    justify-content: flex-end;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(224, 9, 20, 0.1), rgba(224, 9, 20, 0.05));
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid rgba(224, 9, 20, 0.2);
    transition: all 0.3s ease;
}

.team-card-new:hover .team-badge {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(224, 9, 20, 0.3);
}

/* Stagger animation for team cards */
.team-card-new:nth-child(1) { animation-delay: 0.1s; }
.team-card-new:nth-child(2) { animation-delay: 0.2s; }
.team-card-new:nth-child(3) { animation-delay: 0.3s; }
.team-card-new:nth-child(4) { animation-delay: 0.4s; }

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.project-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(16, 16, 16, 0.15);
}

.project-media {
    height: 180px;
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(135deg, #111111, #2f2f2f);
    color: #fff;
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-media.alt {
    background: linear-gradient(135deg, #0f1f2d, #1b8c7a);
}

.project-info h3 {
    margin: 8px 0;
    font-size: 1.3rem;
}

.project-info p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Approach Section */
.approach {
    background: linear-gradient(120deg, rgba(224, 9, 20, 0.06), rgba(27, 140, 122, 0.08));
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.approach-card {
    background: var(--panel);
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(16, 16, 16, 0.06);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
}

.approach-card span {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
}

.approach-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.approach-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Learning Section */
.learning {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.learning-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.learning-text p {
    font-size: 1rem;
    color: var(--muted);
}

.learning-list {
    display: grid;
    gap: 16px;
}

.learning-list article {
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(16, 16, 16, 0.04);
    transition: background 0.3s ease;
}

.learning-list article:hover {
    background: rgba(224, 9, 20, 0.05);
}

.learning-list h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.learning-list p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* CTA Section */
.cta {
    margin: 60px 6vw 100px;
    padding: 60px 10vw;
    border-radius: 36px;
    background: linear-gradient(140deg, #111111, #3c3c3c);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    color: #fff;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
.site-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 6vw 60px;
    background: #111111;
    color: #fff;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: grid;
    gap: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--primary-red);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.footer-links h4 {
    margin: 0 0 10px;
    color: #fff;
}

.footer-links a {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Adjust floating O sizes for tablets */
    .floating-o.size-xlarge {
        font-size: clamp(300px, 20vw, 400px);
    }
}

@media (max-width: 768px) {
    .header-container .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .header-container .nav-list.active {
        display: flex;
    }
    
    .logo-container {
        position: static;
        transform: none;
        text-align: left;
    }

    .header-container .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }
    
    .header-container {
        justify-content: space-between;
        width: 100%;
        display: flex;
    }

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

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

    .cta {
        margin: 40px 4vw 80px;
        padding: 50px 8vw;
    }
    
    /* Reduce number of O's on mobile */
    .floating-o:nth-child(n+11) {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 4vw;
    }

    .feature-grid,
    .process-grid,
    .team-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

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

    .hero,
    .hero-bg-video,
    .hero-overlay {
        border-radius: 0 0 24px 24px;
    }
    
    /* Further reduce O's on small mobile */
    .floating-o:nth-child(n+8) {
        display: none;
    }
}