﻿/* =========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================= */
:root {

    /* Glassmorphism */
    --glass-bg: rgba(14, 20, 62, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow: 0 0 20px rgba(52, 192, 197, 0.15);

    --primary-cyan: #34C0C5;
    --primary-purple: #34C0C5;
    --bg-dark: #0a0e20;
    --bg-light: #ffffff;
    --bg-grey: #f4f6f9;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}



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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-cyan {
    color: var(--primary-cyan) !important;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.text-white {
    color: var(--text-light) !important;
}

.text-center {
    text-align: center;
}
.text-trust{
    color: black;
}
.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #000;
}

.btn-white-box {
    background-color: #fff;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-purple {
    background-color: var(--primary-purple);
    color: var(--text-light);
    border-radius: 4px;
    padding: 0.75rem 2rem;
}

.btn-cyan {
    background-color: var(--primary-cyan);
    color: var(--bg-dark);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: box-shadow 0.35s ease, padding 0.35s ease;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 2px 12px rgba(0,0,0,0.05);
    padding: 0;
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.367) !important;
    box-shadow: 0px 20px 10px rgb(0 0 0 / 16%);
    backdrop-filter: blur(12px);
}

/* Nav top info bar */
.nav-topbar {
    background: #0f172a;
    width: 100%;
    padding: 0.3rem 2.5rem;
}
.nav-topbar__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
    max-width: 100%;
}
.nav-topbar__item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.18s;
}
.nav-topbar__item i { font-size: 0.82rem; color: #34C0C5; }
.nav-topbar__item:hover { color: #5f8fff; }
.nav-topbar__divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
}

/* Full-width nav bar */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0rem 10rem 1rem;
    max-width: 100%;
    margin: 0;
    gap: 1rem;
    transition: padding 0.3s ease;
}

.glass-header.scrolled .header-container {
    /* padding: 0rem 10rem 0rem; */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.desktop-nav ul {
    display: flex;
    gap: 0.1rem;
    padding: 0;
    align-items: center;
}

.desktop-nav > ul > li > a {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.82rem;
    position: relative;
    padding: 0.45rem 0.8rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    gap: 0.28rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.desktop-nav > ul > li > a:hover {
    background: rgba(52,192,197,0.1);
    color: #0d9da3;
}

.desktop-nav a::after { display: none; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #374151;
    font-size: 1.4rem;
    cursor: pointer;
}

/* White Header — always solid */
/* .white-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.05) !important;
}
.white-header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.07) !important;
} */

.nav-logo {
    height: 76px;
    width: 100%;
    display: block;
}

.white-header .desktop-nav > ul > li > a {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.28rem;
}

.white-header .desktop-nav > ul > li > a i {
    font-size: 0.65rem;
    opacity: 0.55;
    transition: transform 0.2s, opacity 0.2s;
}

.white-header .desktop-nav > ul > li > a:hover {
    color: #0d9da3;
    background: rgba(52,192,197,0.1);
}

.white-header .desktop-nav a::after { display: none; }

.btn-dark-solid {
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-dark-solid:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Dropdown Menus � card style */
.desktop-nav .has-dropdown {
    position: relative;
}

.desktop-nav .has-dropdown > ul.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    max-width: 280px;
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.desktop-nav .has-dropdown:hover > ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
}

.desktop-nav .dropdown-menu a {
    color: #374151 !important;
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: normal;
    line-height: 1.4;
}

.desktop-nav .dropdown-menu a::after { display: none !important; }

.desktop-nav .dropdown-menu a:hover {
    background: rgba(52, 192, 197, 0.08) !important;
    color: var(--primary-cyan) !important;
}

.white-header .mobile-menu-btn {
    color: #374151 !important;
}

/* -- MEGA MENU -- */
.desktop-nav .has-dropdown { position: relative; }

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    z-index: 200;
    min-width: 588px;
}

.mega-menu--wide { min-width: 711px; }

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

.mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.mega-menu__grid--3 { grid-template-columns: 1fr 1fr 1fr; }

.mega-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.mega-item:hover { background: rgba(52,192,197,0.07); }

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(52,192,197,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.mega-item:hover .mega-icon { background: rgba(52,192,197,0.15); }

.mega-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px;
    line-height: 1.3;
}

.mega-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Keep old dropdown-menu working for sub-pages that still use it */
.desktop-nav .has-dropdown > ul.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    max-width: 280px;
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
}

.desktop-nav .has-dropdown:hover > ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown-menu li { width: 100%; }

.desktop-nav .dropdown-menu a {
    color: #374151 !important;
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: normal;
    line-height: 1.4;
}

.desktop-nav .dropdown-menu a::after { display: none !important; }

.desktop-nav .dropdown-menu a:hover {
    background: rgba(52,192,197,0.08) !important;
    color: var(--primary-cyan) !important;
}

/* =========================================================================
   HERO CAROUSEL � Reference slide style
   ========================================================================= */
.aero-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #060c1a;
}
.aero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
}
.aero-slide--active { opacity: 1; z-index: 2; }
.aero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 7s ease-in-out;
}
.aero-slide--active .aero-slide__bg { transform: scale(1); }
.aero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.aero-slide__content {
    position: relative;
    z-index: 3;
    padding: 0 0 0 9.5rem;
    padding-top: 80px;
    /* max-width: 680px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.aero-slide--active .aero-slide__content { opacity: 1; transform: translateX(0); }
.slide-tag {
    background: rgba(219,234,254,0.15);
    border: 1px solid rgba(52,192,197,0.5);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #34C0C5;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.slide-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1rem;
}
.slide-subtitle {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #34C0C5;
    margin: 0 0 1rem;
}
.slide-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin: 0 0 1.75rem;
    max-width: 520px;
}
.slide-features { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.slide-feat {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(52,192,197,0.3);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0a0e20;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.slide-cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #34C0C5 0%, #1a9fa4 60%, #0d7a7e 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(52,192,197,0.45), 0 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.25s ease;
}
/* shimmer sweep */
.slide-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}
.slide-cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(52,192,197,0.6), 0 2px 8px rgba(0,0,0,0.2);
    color: #fff;
}
.slide-cta-btn:hover::before {
    left: 130%;
}
.slide-cta-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 4px 14px rgba(52,192,197,0.4);
}
.slide-dot-nav {
    position: absolute;
    left: 3.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}
.slide-dot {
    width: 12px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(209,213,220,0.6);
    height: 12px;
    transition: height 0.3s ease, background 0.3s ease;
    padding: 0;
}
.slide-dot--active { height: 48px; background: #34C0C5; }
.slide-counter {
    position: absolute;
    bottom: 2rem;
    right: 3.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
}
@media (max-width: 768px) {
    .aero-slide__content { padding: 80px 1.5rem 0 1.5rem; max-width: 100%; }
    .slide-dot-nav { left: 1rem; }
    .slide-counter { right: 1rem; bottom: 1.5rem; }
    .slide-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .slide-feat { font-size: 0.72rem; padding: 0.4rem 0.75rem; }
}
.btn-primary {
    background-color: var(--primary-cyan);
    color: #0B1038;
    border: none;
}

.btn-primary:hover {
    background-color: #2A9A9E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 192, 197, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* What We Do */
.what-we-do {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.wwd-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wwd-grid {
    flex: 1;
    gap: 1.5rem;
}

.wwd-box {
    background: #0f172a;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wwd-text {
    flex: 1;
}

.wwd-headline {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #080f18;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-family: 'Sora', sans-serif;
}

.wwd-headline em {
    color: #00a693;
    font-style: normal;
}

.wwd-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00a693;
    margin: 0 10px;
    vertical-align: middle;
}

.wwd-para {
    font-size: .95rem;
    color: #2d4255;
    line-height: 1.88;
    border-left: 4px solid #00a693;
    padding-left: 1.25rem;
    margin-bottom: 1.75rem;
}

.wwd-para strong {
    color: #080f18;
    font-weight: 700;
}



/* Boost */
.boost-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.boost-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.boost-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.boost-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.metric-box {
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: left;
    transition: transform 0.3s;
}

.metric-box:hover {
    transform: translateY(-5px);
}

.metric-box.purple-bg {
    background: linear-gradient(135deg, #a855f7 0%, #8a2be2 100%);
    border: none;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Industries */
.industries-section {
    padding: 6rem 0;
    background: #d2d2d238;
    ;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--bg-dark);
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: var(--primary-cyan);
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.title-underline.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.industry-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: 0.3s;
}

.industry-item:hover .industry-overlay {
    background: rgba(10, 14, 32, 0.4);
}

.industry-overlay i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.industry-overlay span {
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
}

/* Trusted */
.trusted-section {
    padding: 5rem 0;
    background: #e1e1e1;
    text-align: center;
}

/* Logo Marquee */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #e1e1e1, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #e1e1e1, transparent);
}

.logo-marquee__track {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.logo-marquee__track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, .7);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: background .2s, box-shadow .2s;
}

.logo-marquee__item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.logo-marquee__item img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(.65);
    transition: filter .2s;
}

.logo-marquee__item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Client Logo Grid */
.client-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0eaef;
}

.client-logo-item img {
    height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    background: #151b36;
    border: 1px solid #1e293b;
    padding: 3rem;
    border-radius: 8px;
}

.testimonial-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-box p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-box .author {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonial Slider */
.testi-slider {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.testi-slide {
    flex: 0 0 100%;
    padding: 2.5rem 2rem;
    background: rgba(3, 3, 3, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-align: center;
}

.testi-quote {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.536);
    margin-bottom: 1.25rem;
    display: block;
}

.testi-text {
    color: rgb(3, 3, 3);
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0 0 1.75rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(52, 192, 197, 0.837);
    border: 1px solid rgb(52, 192, 197);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .95rem;
    color: rgb(0, 0, 0);
}

.testi-role {
    font-size: .8rem;
    color: rgb(0, 0, 0);
    margin-top: .15rem;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testi-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, background .2s;
}

.testi-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(52, 192, 197, .08);
}

.testi-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.46);
    transition: background .3s, width .3s;
    cursor: pointer;
}

.testi-dot.active {
    background: rgba(0, 154, 175, 0.46);
    width: 18px;
}

/* Service Platforms */
.service-platforms {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.service-split {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.service-info {
    flex: 1;
    border-left: 3px solid var(--primary-purple);
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-visual {
    flex: 2;
}

.cyan-box {
    width: 100%;
    height: 350px;
    border: 3px solid var(--primary-cyan);
    border-radius: 8px;
    background: transparent;
}

/* -- PLATFORM SECTION -- */
.plat-section {
    padding: 6rem 0;
    background: #f7f9fb;
}

.plat-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.plat-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #00a693;
    margin-bottom: .5rem;
}

.plat-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #080f18;
    line-height: 1.15;
    margin: 0 0 .75rem;
}

.plat-sub {
    font-size: .95rem;
    color: #5a7080;
    max-width: 500px;
    margin: 0 auto;
}

.plat-tabs {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.plat-tab {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid #dde8ee;
    background: #fff;
    color: #5a7080;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}

.plat-tab:hover {
    border-color: #00a693;
    color: #00a693;
}

.plat-tab--active {
    background: #00a693;
    border-color: #00a693;
    color: #fff;
}

.plat-slides {
    position: relative;
}

.plat-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #fff;
    border: 1px solid #e0eaef;
    border-radius: 20px;
    padding: 3rem;
}

.plat-slide--active {
    display: grid;
}

.plat-slide__eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #00a693;
    margin-bottom: .75rem;
    display: block;
}

.plat-slide__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #080f18;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.plat-slide__desc {
    font-size: .9rem;
    color: #5a7080;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.plat-slide__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.plat-slide__list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: #374151;
}

.plat-slide__list li i {
    color: #00a693;
    flex-shrink: 0;
}

.plat-slide__pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.plat-slide__pills span {
    font-size: .72rem;
    font-weight: 600;
    color: #00a693;
    background: rgba(0, 166, 147, .08);
    border: 1px solid rgba(0, 166, 147, .25);
    border-radius: 50px;
    padding: .25rem .75rem;
}

.plat-slide__cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 700;
    color: #00a693;
    text-decoration: none;
    transition: gap .2s;
}

.plat-slide__cta:hover {
    gap: .7rem;
}

.plat-slide__right {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.plat-slide__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plat-slide__right--dark {
    background: #060b14;
}

@media(max-width:900px) {
    .plat-slide {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .plat-slide__right {
        aspect-ratio: 16/9;
    }
}

/* -- PLATFORM SECTION -- */
.cb-section {
    background: #080f1a;
    padding: 64px 40px;
}

.cb-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cb-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #00a693;
    margin-bottom: 14px;
}

.cb-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.cb-heading span {
    color: #00c6b8;
}

.cb-sub {
    font-size: .875rem;
    color: #4a6a80;
    line-height: 1.75;
    margin-bottom: 28px;
}

.cb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00a693;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s;
}

.cb-cta-btn:hover {
    background: #008a7a;
    color: #fff;
}

.cb-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cb-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.cb-name {
    font-size: .75rem;
    font-weight: 600;
    color: #a0bac8;
}

.cb-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.cb-track {
    height: 6px;
    background: #0f2030;
    border-radius: 3px;
}

.cb-fill {
    height: 6px;
    border-radius: 3px;
    width: 0%;
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.cb-desc {
    font-size: .7rem;
    color: #3a5a70;
    margin-top: 5px;
}

@media(max-width:768px) {
    .cb-inner {
        grid-template-columns: 1fr;
    }
}

/* -- C2 SECTION: Industry Cards -- */
.c2-section {
    background: #f7f9fb;
    padding: 64px 36px 60px;
}

.c2-head {
    text-align: center;
    margin-bottom: 44px;
}

.c2-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #080f18;
}

.c2-head h2 em {
    color: #00a693;
    font-style: normal;
}

.c2-head p {
    font-size: .875rem;
    color: #5a7080;
    margin-top: 8px;
}

.c2-line {
    width: 48px;
    height: 3px;
    background: #00a693;
    border-radius: 2px;
    margin: 12px auto 0;
}

.c2-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.c2-card {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid #e0eaef;
    transition: border-color .2s, transform .2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.c2-card:hover {
    border-color: #00a693;
    transform: translateY(-4px);
}

.c2-top {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.c2-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.c2-top::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.35); */
}

.c2-top .c2-icon-big {
    position: relative;
    z-index: 1;
}

.c2-icon-big {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c2-body {
    padding: 14px 14px 16px;
    flex: 1;
}

.c2-title {
    font-size: .82rem;
    font-weight: 700;
    color: #080f18;
    margin-bottom: 5px;
}

.c2-desc {
    font-size: .72rem;
    color: #5a7080;
    line-height: 1.6;
}

.c2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
}

.c2-tag {
    font-size: .65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: #f0f4f7;
    color: #000000;
}

.c2-footer {
    border-top: 1px solid #f0f4f7;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c2-client {
    font-size: .65rem;
    color: #8aa8ba;
    font-weight: 600;
}

.c2-arr {
    color: #00a693;
    font-size: .9rem;
    font-weight: 700;
}

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

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

/* Why Choose Aerovania */
.why-choose {
    padding: 7rem 0;
    background: #06090f;
}

.why-choose__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.why-choose__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.why-choose__heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.why-choose__heading em {
    font-style: italic;
    color: var(--cyan);
    font-weight: 700;
}

.why-choose__sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 2.5rem;
}

.why-choose__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .7rem 1.4rem;
    border-radius: 6px;
    transition: border-color .25s, color .25s;
}

.why-choose__cta:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.why-choose__right {
    display: flex;
    flex-direction: column;
    padding-top: .5rem;
}

.why-item-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.why-item-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.why-item-num {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .1em;
    min-width: 24px;
    padding-top: .15rem;
    transition: color .3s;
}

.why-item-row:hover .why-item-num {
    color: var(--cyan);
}

.why-item-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: .4rem;
    transition: color .3s;
}

.why-item-row:hover .why-item-title {
    color: var(--cyan);
}

.why-item-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .why-choose__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* CTA */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(to right, #0a0e20, #1a2342);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-light);
    border-top: 1px solid #f1f5f9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    display: block;
}

.brand-col .tagline {
    color: var(--text-muted);
    margin: 0.5rem 0 1.5rem;
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary-cyan);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-col ul a {
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--primary-cyan);
}

.contact-col i {
    color: var(--primary-cyan);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive basics */
@media (max-width: 992px) {

    .wwd-inner,
    .service-split {
        flex-direction: column;
    }

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

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

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .metrics-row,
    .industries-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Aerovania Foundation Custom */
.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* =========================================================================
   INNER PAGE � ALTERNATING DARK / LIGHT SECTION SYSTEM
   ========================================================================= */

/* Page Hero (dark) */
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #0a0e20 0%, #0d1535 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(52, 192, 197, 0.1) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .tag {
    display: inline-block;
    background: rgba(52, 192, 197, 0.15);
    color: var(--primary-cyan);
    border: 1px solid rgba(52, 192, 197, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-hero p {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Section label + title reusable */
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title-lg {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title-lg.light {
    color: #ffffff;
}

/* -- LIGHT SECTION (white bg, dark cards) -- */
.section-light {
    padding: 6rem 0;
    background: #ffffff;
}

.section-light-grey {
    padding: 6rem 0;
    background: #f4f6f9;
}

/* Feature / Solution cards on light bg */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-cyan);
}

.card-light-accent {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-cyan);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card-light-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 192, 197, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.7rem;
    color: var(--primary-cyan);
}

.card-light h3,
.card-light-accent h3,
.card-light-accent h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.card-light p,
.card-light-accent p {
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* -- DARK SECTION (navy bg, glowing cards) -- */
.section-dark {
    padding: 6rem 0;
    background: #0a0e20;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(52, 192, 197, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.section-dark .section-label {
    color: var(--primary-cyan);
}

.section-dark .section-title-lg {
    color: #ffffff;
}

.section-dark .section-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
}

.card-dark {
    background: #0f1535;
    border: 1px solid rgba(52, 192, 197, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.card-dark:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 192, 197, 0.4);
    box-shadow: 0 0 30px rgba(52, 192, 197, 0.08);
}

.card-dark h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.6rem;
}

.card-dark p {
    color: #94a3b8;
    font-size: 0.93rem;
    line-height: 1.6;
}

.card-dark .card-icon {
    background: rgba(52, 192, 197, 0.12);
    border: 1px solid rgba(52, 192, 197, 0.2);
}

/* -- STATS DARK SECTION -- */
.section-stats {
    padding: 5rem 0;
    background: #0f142b;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-box .num {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    line-height: 1;
}

.stat-box .lbl {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -- CTA BAND (light with cyan) -- */
.section-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfd 0%, #e6fafa 100%);
    text-align: center;
    border-top: 1px solid rgba(52, 192, 197, 0.15);
}

.section-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-cta p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* -- SPLIT / TWO-COLUMN LAYOUT -- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.split-visual-dark {
    background: linear-gradient(135deg, #0a0e20, #1a2040);
    border-radius: 20px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 192, 197, 0.15);
}

.split-visual-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(52, 192, 197, 0.12) 0%, transparent 70%);
}

.split-visual-dark i {
    font-size: 7rem;
    color: rgba(52, 192, 197, 0.35);
    position: relative;
    z-index: 2;
}

/* Check list */
.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.check-list li i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--primary-cyan);
    color: #0a0e20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    font-family: var(--font-heading);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

/* Dark process steps */
.section-dark .process-step h4 {
    color: #f1f5f9;
}

.section-dark .process-step p {
    color: #94a3b8;
}

/* Use case inline items */
.use-case-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.use-case-item {
    background: #0f1535;
    border: 1px solid rgba(52, 192, 197, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: 0.3s;
}



.use-case-item:hover {
    border-color: rgba(52, 192, 197, 0.35);
}

.use-case-item i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.use-case-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.3rem;
}

.use-case-item p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* btn-outline-cyan */
.btn-outline-cyan {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-cyan:hover {
    background: var(--primary-cyan);
    color: #0a0e20;
}

/* Responsive inner pages */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .card-grid,
    .stats-grid,
    .process-steps,
    .use-case-list {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 8rem 0 4rem;
    }
}

/* =========================================================================
   MOBILE RESPONSIVE � COMPREHENSIVE
   ========================================================================= */

/* -- NAV / HEADER -- */
@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex !important; }
    .header-container { padding: 0.4rem 0.75rem; gap: 0.5rem; }
    .nav-logo { height: 52px; }
    .nav-topbar { display: none; }
}

/* Mobile slide-out menu */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
    padding: 1.25rem 1rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-nav-panel.open { right: 0; }

.mobile-nav-panel .mnp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-panel .mnp-close {
    background: none; border: none; font-size: 1.4rem;
    cursor: pointer; color: #374151; padding: 0.25rem;
}
.mobile-nav-panel ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav-panel > ul > li { border-bottom: 1px solid #f1f5f9; }
.mobile-nav-panel > ul > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 0.5rem;
    font-size: 0.9rem; font-weight: 600; color: #111827;
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em;
}
.mobile-nav-panel .mnp-sub {
    display: none;
    padding: 0 0 0.5rem 0.75rem;
    flex-direction: column; gap: 2px;
}
.mobile-nav-panel .mnp-sub.open { display: flex; }
.mobile-nav-panel .mnp-sub a {
    display: block; padding: 0.55rem 0.5rem;
    font-size: 0.85rem; color: #374151; text-decoration: none;
    border-radius: 6px; transition: background 0.15s;
}
.mobile-nav-panel .mnp-sub a:hover { background: rgba(52,192,197,0.08); color: #34C0C5; }
.mobile-nav-panel .mnp-cta {
    margin-top: 1.5rem;
    display: block; text-align: center;
    background: #111827; color: #fff;
    padding: 0.75rem; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
}

/* -- HERO -- */
@media (max-width: 768px) {
    .aero-hero { min-height: 100svh; }
    .aero-slide__content { padding: 0 1.25rem; }
    .aero-slide__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .aero-slide__sub { font-size: 0.9rem; max-width: 100%; }
    .aero-slide__cta { flex-direction: column; align-items: center; gap: 0.75rem; }
    .aero-progress { width: 85%; bottom: 20px; }
    .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
}

/* -- WHAT WE DO -- */
@media (max-width: 768px) {
    .what-we-do { padding: 3rem 0; }
    .wwd-inner { flex-direction: column; gap: 2rem; }
    .wwd-grid { display: none; }
    .wwd-headline { font-size: 1.3rem; }
    .wwd-pills { gap: 6px; }
    .wwd-pill { font-size: 0.68rem; }
}

/* -- CB SECTION (metrics) -- */
@media (max-width: 768px) {
    .cb-section { padding: 3rem 1.25rem; }
    .cb-inner { grid-template-columns: 1fr; gap: 2rem; }
    .cb-heading { font-size: 1.4rem; }
}

/* -- PLATFORM SECTION -- */
@media (max-width: 768px) {
    .plat-section { padding: 3rem 0; }
    .plat-heading { font-size: 1.5rem; }
    .plat-tabs { flex-direction: column; align-items: stretch; gap: 0.5rem; }
    .plat-tab { justify-content: center; }
    .plat-slide { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
    .plat-slide__right { aspect-ratio: 16/9; }
    .plat-slide__title { font-size: 1.2rem; }
}

/* -- INDUSTRIES (c2) -- */
@media (max-width: 640px) {
    .c2-section { padding: 3rem 1rem; }
    .c2-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .c2-top { height: 80px; }
    .c2-body { padding: 10px; }
    .c2-title { font-size: 0.75rem; }
    .c2-desc { display: none; }
}
@media (max-width: 380px) {
    .c2-grid { grid-template-columns: 1fr; }
}

/* -- TRUSTED / TESTIMONIALS -- */
@media (max-width: 768px) {
    .trusted-section { padding: 3rem 0; }
    .client-logo-grid { gap: 0.75rem; }
    .client-logo-item { height: 56px; padding: 0.5rem 1rem; }
    .client-logo-item img { height: 30px; }
    .testi-slide { padding: 1.5rem 1rem; }
    .testi-text { font-size: 0.9rem; }
}

/* -- WHY CHOOSE -- */
@media (max-width: 768px) {
    .why-choose { padding: 3rem 0; }
    .why-choose__heading { font-size: 1.8rem; }
    .why-item-title { font-size: 0.9rem; }
    .why-item-desc { font-size: 0.8rem; }
}

/* -- CTA -- */
@media (max-width: 768px) {
    .cta-section { padding: 3rem 0; }
    .cta-title { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* -- FOOTER -- */
@media (max-width: 768px) {
    .footer { padding: 3rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-logo { height: 60px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .brand-col { grid-column: 1; }
}

/* -- MEGA MENU � hide on mobile (handled by mobile panel) -- */
@media (max-width: 900px) {
    .mega-menu, .dropdown-menu { display: none !important; }
}

/* -- INNER PAGE HEROES -- */
@media (max-width: 768px) {
    .page-hero { min-height: 360px; padding: 6rem 0 3rem; }
    .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .hero-cta-row { flex-direction: column; gap: 0.75rem; }
    .split-grid, .ind-split, .tp-sensor__inner,
    .tp-eng__inner, .tp-analytics__row,
    .tp-geo__inner, .ai-split { grid-template-columns: 1fr !important; direction: ltr !important; }
    .tp-analytics__row--reverse { direction: ltr !important; }
    .tp-drone__grid { grid-template-columns: 1fr !important; }
    .composite-grid { grid-template-columns: 1fr !important; }
    .stats-grid, .ai-stats-grid { grid-template-columns: 1fr 1fr !important; }
    .ai-pipeline { grid-template-columns: 1fr 1fr !important; }
    .ai-pipeline::before { display: none; }
    .arch-pipeline { flex-wrap: wrap; justify-content: center; }
    .arch-arrow { display: none; }
    .timeline { flex-direction: column; }
    .timeline::before, .timeline__glow { display: none; }
    .tl-step { flex: none; width: 100%; padding: 0 0 1.5rem; }
    .tl-step__dot { margin: 0 0 0.75rem; }
}

@media (max-width: 480px) {
    .stats-grid, .ai-stats-grid { grid-template-columns: 1fr !important; }
    .ai-pipeline { grid-template-columns: 1fr !important; }
    .section-title, .t-h2, .s-h2, .ai-h2 { font-size: 1.5rem !important; }
    .container { padding: 0 1rem; }
}

/* -- GENERAL UTILITY -- */
@media (max-width: 768px) {
    .reveal { transform: translateY(16px); }
    section { overflow-x: hidden; }
    img { max-width: 100%; height: auto; }
    table { display: block; overflow-x: auto; }
}
