/* ============================================
   BROADCORE TECHNOLOGIES — HULY-INSPIRED 2026
   Pure Black · Animated Borders · Spotlight
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root,
[data-theme="dark"] {
    /* Colors — Pure Black Foundation */
    --bg-primary: #000000;
    --bg-secondary: #050508;
    --bg-tertiary: #0a0a0f;
    --surface: rgba(255, 255, 255, 0.025);
    --surface-hover: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);

    --text-primary: #f5f5fa;
    --text-secondary: rgba(245, 245, 250, 0.65);
    --text-tertiary: rgba(245, 245, 250, 0.55);

    --accent-blue: #0055ff;
    --accent-cyan: #0055ff;
    --accent-light: #4d9aff;
    --accent-purple: #4d9aff;
    --accent-green: #25d366;

    --gradient-main: linear-gradient(135deg, #0055ff, #4d9aff);
    --gradient-glow: linear-gradient(135deg, rgba(0, 85, 255, 0.12), rgba(77, 154, 255, 0.08));
    --gradient-border: conic-gradient(from 180deg at 50% 50%, #0055ff 0deg, transparent 60deg, transparent 300deg, #4d9aff 360deg);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-bg-hover: rgba(255, 255, 255, 0.065);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 32px;

    /* Theme bridge vars */
    --shadow-rgb: 0, 0, 0;
    --canvas-base: #000000;
    --canvas-mask-rgb: 0, 0, 0;
    --img-opacity: 0.55;
    --img-opacity-hover: 0.75;
    --img-opacity-large: 0.6;
    --img-opacity-large-hover: 0.8;
    --logo-filter: none;
    --partner-logo-filter: none;
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --mega-menu-bg: rgba(8, 8, 16, 0.97);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(100px, 12vw, 160px);
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius — Huly-level roundness */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ---------- LIGHT MODE ---------- */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-tertiary: #f0f2f7;
    --surface: rgba(0, 0, 0, 0.025);
    --surface-hover: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);

    --text-primary: #0a0a14;
    --text-secondary: rgba(10, 10, 20, 0.65);
    --text-tertiary: rgba(10, 10, 20, 0.5);

    --gradient-glow: linear-gradient(135deg, rgba(0, 85, 255, 0.08), rgba(77, 154, 255, 0.05));

    /* Glass — Apple frosted panels */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);

    /* Theme bridge vars */
    --shadow-rgb: 0, 0, 40;
    --canvas-base: #ffffff;
    --canvas-mask-rgb: 255, 255, 255;
    --img-opacity: 0.85;
    --img-opacity-hover: 1;
    --img-opacity-large: 0.85;
    --img-opacity-large-hover: 1;
    --logo-filter: none;
    --partner-logo-filter: brightness(0.15);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.85);
    --mega-menu-bg: rgba(248, 249, 252, 0.97);
}

/* ---------- LIGHT MODE COMPONENT OVERRIDES ---------- */
[data-theme="light"] .glass-card:hover {
    box-shadow:
        0 24px 80px rgba(0, 0, 40, 0.08),
        0 0 60px rgba(0, 85, 255, 0.04);
}

[data-theme="light"] .navbar.scrolled {
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .client-logo {
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.35);
}

[data-theme="light"] .client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(0.35);
}

[data-theme="light"] .trust-logo img {
    filter: brightness(0.15);
}

[data-theme="light"] .bento-b__thumb {
    background: var(--bg-primary);
}

[data-theme="light"] .bento-b__thumb::after {
    height: 25%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
}

[data-theme="light"] .btn--secondary {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .btn--secondary:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.12), 0 0 0 1px rgba(0, 85, 255, 0.2);
}

/* Mesh CTA: brand-blue card in light mode */
[data-theme="light"] .mesh-cta__bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(77, 154, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 60, 192, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 85, 255, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #0055ff 0%, #003cc0 100%);
    border-color: rgba(77, 154, 255, 0.2);
}

[data-theme="light"] .mesh-cta__title {
    color: #fff;
}

[data-theme="light"] .mesh-cta__desc {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .mesh-cta .btn--primary {
    background: #fff;
    color: #0055ff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mesh-cta .btn--primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Case study cards: stronger brand presence in light mode */
[data-theme="light"] .case-study-card {
    border-top: 3px solid var(--accent-blue);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 40, 0.06);
}

[data-theme="light"] .case-study-card:hover {
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.15);
    border-top-color: #003cc0;
}

[data-theme="light"] .case-study-card__tag {
    background: #0055ff;
    color: #fff;
}

[data-theme="light"] .case-study-card__metric-value {
    color: #0055ff;
}

/* --- Hero badge: solid brand pill --- */
[data-theme="light"] .hero__badge,
[data-theme="light"] .hero-b__badge {
    background: rgba(0, 85, 255, 0.08);
    border: 1px solid rgba(0, 85, 255, 0.25);
    color: #0055ff;
}

/* --- Section tags: bolder brand blue --- */
[data-theme="light"] .section-tag {
    color: #0055ff;
    font-weight: 700;
}

/* --- Bento card icon: solid blue container --- */
[data-theme="light"] .bento-card__icon {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.12), rgba(0, 85, 255, 0.06));
    border-color: rgba(0, 85, 255, 0.2);
    color: #0055ff;
}

[data-theme="light"] .bento-card:hover .bento-card__icon {
    background: #0055ff;
    color: #fff;
    border-color: transparent;
}

/* --- Bento card hover: blue accent glow --- */
[data-theme="light"] .bento-card:hover {
    border-color: rgba(0, 85, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.1);
}

/* --- Advantage card numbers: visible brand watermark --- */
[data-theme="light"] .advantage-card__number {
    opacity: 0.3;
    background: #0055ff;
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .advantage-card {
    border-top: 2px solid rgba(0, 85, 255, 0.15);
}

[data-theme="light"] .advantage-card:hover {
    border-top-color: #0055ff;
}

/* --- Testimonial avatar: solid brand blue --- */
[data-theme="light"] .testimonial-card__avatar {
    background: #0055ff;
}

/* --- Testimonial card: subtle blue accent --- */
[data-theme="light"] .testimonial-card {
    border-top: 2px solid rgba(0, 85, 255, 0.12);
}

[data-theme="light"] .testimonial-card:hover {
    border-top-color: #0055ff;
}

/* --- Philosophy highlight: branded icon box --- */
[data-theme="light"] .philosophy__highlight-icon {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.12), rgba(0, 85, 255, 0.06));
    color: #0055ff;
}

[data-theme="light"] .philosophy__highlight {
    border: 1px solid rgba(0, 85, 255, 0.12);
}

/* --- Stats bar numbers: brand blue --- */
[data-theme="light"] .stat-number-text {
    background: #0055ff;
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Footer: strong brand headings --- */
[data-theme="light"] .footer__col h3,
[data-theme="light"] .footer__col h4,
[data-theme="light"] .footer__heading {
    color: #0a0a14;
}

[data-theme="light"] .footer__col a:hover,
[data-theme="light"] .footer__link:hover {
    color: #0055ff;
}

[data-theme="light"] .social-icon {
    border-color: rgba(0, 85, 255, 0.12);
}

[data-theme="light"] .social-icon:hover {
    background: #0055ff;
    color: #fff;
    border-color: #0055ff;
}

/* --- Mega-menu CTA: branded --- */
[data-theme="light"] .mega-menu__cta {
    background: rgba(0, 85, 255, 0.05);
    border-color: rgba(0, 85, 255, 0.15);
}

/* --- Outline buttons on blue CTA backgrounds: white treatment --- */
[data-theme="light"] .mid-cta .btn--outline,
[data-theme="light"] .final-cta .btn--outline,
[data-theme="light"] .mesh-cta .btn--outline {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

[data-theme="light"] .mid-cta .btn--outline:hover,
[data-theme="light"] .final-cta .btn--outline:hover,
[data-theme="light"] .mesh-cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.25), 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* --- CTA note/trust text on blue backgrounds --- */
[data-theme="light"] .mid-cta__note,
[data-theme="light"] .final-cta .mid-cta__note {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Nav link hover glow effect --- */
[data-theme="light"] .nav-link:not(.btn) {
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}

[data-theme="light"] .nav-link:not(.btn):hover {
    color: #0055ff;
    background: rgba(0, 85, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.1), 0 0 40px rgba(0, 85, 255, 0.05);
}

/* --- Button cleanup for light mode --- */
[data-theme="light"] .btn--primary {
    text-shadow: none;
}

[data-theme="light"] .btn--glow::after {
    display: none;
}

/* ============================================================
   PREMIUM LIGHT MODE — FULL-SITE ENTERPRISE PASS
   Apple / Stripe level polish. All [data-theme="light"] scoped.
   ============================================================ */

/* --- Homepage hero: clean atmospheric gradient --- */
[data-theme="light"] .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 85, 255, 0.06) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(0, 85, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Hide gradient orbs in light mode — they create muddy color edges */
[data-theme="light"] .hero__gradient-orb--1,
[data-theme="light"] .hero__gradient-orb--2,
[data-theme="light"] .hero__gradient-orb--3 {
    display: none;
}

/* Seamless bottom fade from hero to next section */
[data-theme="light"] .hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 1;
    pointer-events: none;
}

/* --- Hero-b (homepage): fix fluid-bg canvas on white --- */
[data-theme="light"] .fluid-bg {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 85, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 85, 255, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 40%, rgba(100, 160, 255, 0.03) 0%, transparent 45%),
        #f8faff;
}

[data-theme="light"] #c {
    opacity: 0.35;
    mix-blend-mode: multiply;
}

/* Bottom fade for hero-b seamless transition */
[data-theme="light"] .hero-b::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
    pointer-events: none;
}

/* --- Glass cards: premium white w/ subtle blue interaction --- */
[data-theme="light"] .glass-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 0 transparent;
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .glass-card:hover {
    border-color: rgba(0, 85, 255, 0.12);
    box-shadow:
        0 20px 60px rgba(0, 0, 40, 0.06),
        0 0 0 1px rgba(0, 85, 255, 0.08);
    transform: translateY(-4px);
}

/* --- Bento cards: premium card treatment --- */
[data-theme="light"] .bento-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .bento-card:hover {
    border-color: rgba(0, 85, 255, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 40, 0.06),
        0 0 40px rgba(0, 85, 255, 0.06);
    transform: translateY(-4px);
}

[data-theme="light"] .bento-card::before {
    background: linear-gradient(90deg, transparent, #0055ff, transparent) !important;
}

/* --- Bento card list dots: brand blue --- */
[data-theme="light"] .bento-card__list li::before {
    background: #0055ff;
    opacity: 0.7;
}

/* --- Testimonial cards: premium quote styling --- */
[data-theme="light"] .testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    border-top: 2px solid rgba(0, 85, 255, 0.12);
}

[data-theme="light"] .testimonial-card:hover {
    border-top-color: #0055ff;
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
    transform: translateY(-4px);
}

[data-theme="light"] .testimonial-card__avatar {
    background: linear-gradient(135deg, #0055ff, #003cc0);
    box-shadow: 0 2px 8px rgba(0, 85, 255, 0.2);
}

/* --- Philosophy highlight: elegant card --- */
[data-theme="light"] .philosophy__highlight {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .philosophy__highlight-icon {
    background: linear-gradient(135deg, #0055ff, #003cc0);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 85, 255, 0.2);
}

/* --- Philosophy card (metrics grid): branded --- */
[data-theme="light"] .philosophy__card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .p-metric__value {
    color: #0055ff;
}

/* --- Advantage cards: numbered watermark + brand hover --- */
[data-theme="light"] .advantage-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 2px solid rgba(0, 85, 255, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out);
}

[data-theme="light"] .advantage-card:hover {
    border-top-color: #0055ff;
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
    transform: translateY(-4px);
}

[data-theme="light"] .advantage-card__number {
    opacity: 0.15;
    background: #0055ff;
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Transformation cards: premium treatment --- */
[data-theme="light"] .transform-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .transform-card:hover {
    border-color: rgba(0, 85, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 40, 0.06);
    transform: translateY(-4px);
}

/* --- Primary btn: refined shadow + hover glow --- */
[data-theme="light"] .btn--primary {
    box-shadow: 0 2px 8px rgba(0, 85, 255, 0.2);
}

[data-theme="light"] .btn--primary:hover {
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.3), 0 0 60px rgba(0, 85, 255, 0.1);
}

/* --- Gradient text: pure brand blue in light mode --- */
[data-theme="light"] .gradient-text {
    background: #0055ff;
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Tab pills: branded active state --- */
[data-theme="light"] .tab {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .tab:hover {
    border-color: rgba(0, 85, 255, 0.2);
    color: #0055ff;
}

[data-theme="light"] .tab.active {
    background: #0055ff;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 85, 255, 0.25);
}

/* --- Case study metric values: solid blue --- */
[data-theme="light"] .case-study-card__metric-value {
    color: #0055ff;
}

/* --- Scroll indicator: branded --- */
[data-theme="light"] .hero__scroll-indicator {
    color: var(--text-tertiary);
}

[data-theme="light"] .hero__scroll-line {
    background: rgba(0, 85, 255, 0.3);
}

/* --- Footer: enterprise-clean --- */
[data-theme="light"] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Reach Out btn: enhanced glow on hover --- */
[data-theme="light"] .btn--glow:hover {
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.25), 0 8px 40px rgba(0, 85, 255, 0.15);
}

/* ---------- THEME TOGGLE ---------- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .theme-toggle__icon--sun { display: block; }
[data-theme="dark"] .theme-toggle__icon--moon { display: none; }
[data-theme="light"] .theme-toggle__icon--sun { display: none; }
[data-theme="light"] .theme-toggle__icon--moon { display: block; }

/* ---------- RESET & BASE ---------- */
html {
    scroll-behavior: smooth;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

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

ul {
    list-style: none;
}

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

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}

/* ---------- GLASS CARD — Base ---------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 85, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
    z-index: 1;
}

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

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow:
        0 24px 80px rgba(var(--shadow-rgb), 0.12),
        0 0 60px rgba(0, 85, 255, 0.06);
}

/* ---------- ANIMATED GRADIENT BORDER ---------- */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    from {
        --border-angle: 0deg;
    }

    to {
        --border-angle: 360deg;
    }
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- SECTION TYPOGRAPHY ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.08rem;
    max-width: 620px;
    line-height: 1.85;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: linear-gradient(135deg, #0062e6, #0077ff);
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.3);
    position: relative;
    overflow: hidden;
}

/* Light sweep shimmer */
.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.btn--primary:hover::before {
    left: 120%;
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 85, 255, 0.5);
}

.btn--glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn--glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0, 85, 255, 0.5);
}

.btn--outline:hover {
    border-color: #0055ff;
    color: var(--accent-blue);
    background: rgba(0, 85, 255, 0.08);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.2), 0 0 0 1px rgba(0, 85, 255, 0.3);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn--whatsapp {
    background: var(--accent-green);
    color: #fff;
}

.btn--whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn--glow {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn--glow:hover::after {
    opacity: 0.6;
}

/* ---------- PARTICLE CANVAS ---------- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 85, 255, 0.12);
    box-shadow: 0 1px 20px rgba(0, 85, 255, 0.06);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
    position: relative;
    overflow: visible;
}

/* Logo image */
.logo-img {
    width: auto;
    display: block;
    transition: opacity 0.4s var(--ease-smooth);
}

/* Favicon icon — shown by default */
.logo-icon {
    height: 42px;
    object-fit: contain;
    opacity: 1;
    margin-left: 60px;
}

/* Remove margin when scrolled so it doesn't interfere */
.navbar.scrolled .logo-icon {
    opacity: 0;
    pointer-events: none;
}

/* Full text logo — hidden by default */
.logo-full {
    height: 24px;
    position: absolute;
    left: 81px;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    width: auto;
    min-width: max-content;
}

/* On scroll: swap to full logo */

.navbar.scrolled .logo-full {
    opacity: 1;
    pointer-events: auto;
}

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

.navbar__hamburger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 101;
    width: 44px;
    height: 44px;
}

.navbar__hamburger span {
    height: 2px;
    background: var(--text-primary);
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center center;
    display: block;
}

.navbar__hamburger span:nth-child(1) {
    width: 24px;
}

.navbar__hamburger span:nth-child(2) {
    width: 18px;
}

.navbar__hamburger span:nth-child(3) {
    width: 14px;
}

@media (hover: hover) {
    .navbar__hamburger:hover span:nth-child(2),
    .navbar__hamburger:hover span:nth-child(3) {
        width: 24px;
    }
}

.navbar__hamburger.active span {
    width: 20px;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mobile-nav-footer {
    display: none;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.01em;
    padding: 6px 14px;
    border-radius: 8px;
}

.nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover {
    color: var(--text-primary);
}

/* Force white text on nav CTA regardless of theme */
.nav-link.btn--primary,
.nav-link.btn--primary:hover {
    color: #fff !important;
}

/* ---------- MEGA MENU ---------- */
.nav-dropdown {
    position: static;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown__trigger .chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease-out);
    opacity: 0.5;
}

.nav-dropdown:hover .nav-dropdown__trigger .chevron,
.nav-dropdown.open .nav-dropdown__trigger .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown__trigger:not(.btn)::after {
    display: none;
}

.mega-menu {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 780px;
    padding: 32px;
    padding-top: 44px;
    background: var(--mega-menu-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow:
        0 30px 80px rgba(var(--shadow-rgb), 0.15),
        0 0 60px rgba(0, 85, 255, 0.03);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
    z-index: 200;
}

/* Invisible bridge area to prevent hover gap */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mega-menu__col-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 85, 255, 0.12);
}

.mega-menu__link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px;
    margin: 0 -10px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s var(--ease-out);
    border-left: 2px solid transparent;
}

.mega-menu__link:hover {
    color: var(--text-primary);
    background: rgba(0, 85, 255, 0.06);
    border-left-color: var(--accent-blue);
}

.mega-menu__link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.mega-menu__link-desc {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.mega-menu__link:hover .mega-menu__link-desc {
    color: var(--text-secondary);
}

.mega-menu__link-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 85, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent-blue);
    flex-shrink: 0;
    transition: all 0.25s var(--ease-out);
}

.mega-menu__link:hover .mega-menu__link-icon {
    box-shadow: 0 0 16px rgba(0, 85, 255, 0.15);
}

/* Mega menu bottom CTA callout */
.mega-menu__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(0, 85, 255, 0.05);
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: var(--radius-md);
}

.mega-menu__cta-text {
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.mega-menu__cta-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-blue);
    white-space: nowrap;
    transition: color 0.25s;
}

.mega-menu__cta-link:hover {
    color: #4d9aff;
}

/* ---------- HERO — Centered + Light Beam ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

/* Light beam effect */
.hero__beam {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 120%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 85, 255, 0.3) 20%,
            rgba(0, 85, 255, 0.6) 45%,
            rgba(61, 133, 255, 0.8) 50%,
            rgba(0, 85, 255, 0.6) 55%,
            rgba(0, 85, 255, 0.3) 80%,
            transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero__beam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(0, 85, 255, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
    animation: beamPulse 6s ease-in-out infinite;
}

.hero__beam::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center,
            rgba(0, 85, 255, 0.1) 0%,
            rgba(0, 85, 255, 0.03) 40%,
            transparent 70%);
    pointer-events: none;
}

@keyframes beamPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    pointer-events: none;
}

.hero__gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero__gradient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-light), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero__gradient-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

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

    50% {
        transform: translate(-30px, 20px) scale(1.15);
    }
}

@keyframes orbFloat2 {

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

    50% {
        transform: translate(20px, -30px) scale(1.1);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(0, 85, 255, 0.06);
    border: 1px solid rgba(0, 85, 255, 0.12);
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(0, 85, 255, 0);
    }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-words {
    display: inline-block;
}

.word-rotate {
    display: inline-block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordFade 1s var(--ease-out);
}

@keyframes wordFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }

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

.hero__subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 85, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    font-weight: 500;
}

@keyframes scrollPulse {

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

    50% {
        opacity: 0.5;
        transform: scaleY(0.6);
    }
}

/* ---------- HERO IMAGE (faded bg) ---------- */
.hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: -40px;
}

.stats-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 50px);
    padding: 36px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

/* No-divider variant: grid layout for Who We Are page */
.stats-bar__inner--no-dividers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    justify-items: center;
}

.stats-bar__inner--no-dividers .stat-item {
    position: relative;
    padding: 0 clamp(16px, 3vw, 40px);
}

.stats-bar__inner--no-dividers .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

/* ---------- CLIENT LOGOS CAROUSEL ---------- */
.clients-bar {
    padding: 80px 0 120px;
}

.clients-bar__label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.clients-bar__track {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-bar__scroll {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: client-scroll 60s linear infinite;
}

.clients-bar__scroll:hover {
    animation-play-state: paused;
}

@keyframes client-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    opacity: 0.3;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity 0.4s, filter 0.4s;
}

.client-logo:hover {
    opacity: 0.85;
    filter: grayscale(0%) brightness(1);
}

.client-logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* ---------- PARTNERS CAROUSEL ---------- */
.partners-bar {
    padding: 80px 0 100px;
}

.partners-bar__scroll {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: partner-scroll 80s linear infinite;
}

.partners-bar__scroll:hover {
    animation-play-state: paused;
}

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0 80px;
}

.testimonials__track-wrapper {
    overflow: hidden;
    margin-top: 48px;
    padding: 8px 0 16px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials__track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 85s linear infinite;
    width: max-content;
}

.testimonials__track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 380px;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.12);
}

.testimonial-card__stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 2px;
}

.star-empty {
    opacity: 0.25;
}

.testimonial-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055ff, #00aaff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* ---------- CASE STUDIES ---------- */
.case-studies {
    padding: 100px 0;
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.case-study-card {
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.12);
}

.case-study-card__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0, 85, 255, 0.12);
    color: #4d9aff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.case-study-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.case-study-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary);
    margin: 0;
    flex: 1;
}

.case-study-card__metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.case-study-card__metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-study-card__metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #4d9aff;
}

.case-study-card__metric-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.philosophy__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy__text .section-title em {
    font-style: normal;
    color: var(--accent-blue);
}

.philosophy__desc {
    color: var(--text-secondary);
    font-size: 1.06rem;
    margin-bottom: 32px;
    line-height: 1.85;
}

.philosophy__highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.philosophy__highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    color: var(--accent-blue);
    flex-shrink: 0;
}

.philosophy__highlight strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.philosophy__highlight p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Philosophy Card */
.philosophy__card {
    padding: 0;
    overflow: hidden;
    cursor: default;
}

.philosophy__card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 24px;
}

.p-metric {
    text-align: center;
    padding: 16px;
}

.p-metric__value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    display: block;
}

.p-metric__label {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ---------- PHILOSOPHY IMAGE ---------- */
.philosophy__image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.philosophy__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ---------- SERVICES ---------- */
.services {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.services__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.tab:hover {
    color: var(--text-primary);
    background: var(--glass-bg-hover);
}

.tab.active {
    color: #fff;
    background: var(--gradient-main);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.25);
}

/* ---------- BENTO GRID ---------- */
.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

/* BENTO CARD */
.bento-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Animated top border on hover (gradient line) */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    z-index: 3;
}

.bento-card:hover::before {
    opacity: 1;
}

/* Spotlight overlay */
.bento-card>.card-spotlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 85, 255, 0.07),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover>.card-spotlight {
    opacity: 1;
}

/* Image area */
.bento-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.bento-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.bento-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

/* Body */
.bento-card__body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Icon */
.bento-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-blue);
    margin-bottom: 16px;
    transition: all 0.4s var(--ease-out);
}

.bento-card:hover .bento-card__icon {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.15);
}

/* Title */
.bento-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* Desc */
.bento-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* List */
.bento-card__list {
    margin-bottom: 18px;
    flex-grow: 1;
}

.bento-card__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.86rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.55;
}

.bento-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.5;
}

/* Link */
.bento-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-blue);
    transition: all 0.3s var(--ease-out);
    margin-top: auto;
}

.bento-card__link:hover {
    gap: 14px;
    color: var(--accent-light);
}

/* WIDE (FEATURED) CARD */
.bento-card--wide {
    grid-column: span 1;
    flex-direction: row;
}

.bento-card--wide .bento-card__image {
    width: 45%;
    height: auto;
    min-height: 340px;
}

.bento-card--wide .bento-card__image::after {
    display: none;
}

.bento-card--wide .bento-card__body {
    width: 55%;
    padding: 32px 32px;
    justify-content: center;
}

.bento-card--wide .bento-card__title {
    font-size: 1.3rem;
}

/* Hidden for tab filter */
.bento-card.hidden-card {
    display: none;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 40px 0 var(--section-padding);
    position: relative;
    z-index: 2;
}

.cta-banner__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.cta-banner__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-banner__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 8px;
    line-height: 1.75;
}

.cta-banner__note {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.cta-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ---------- ADVANTAGES ---------- */
.advantages {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    padding: 40px 34px;
    position: relative;
    cursor: default;
}

.advantage-card__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.advantage-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.advantage-card__desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ---------- TRANSFORMATION ---------- */
.transformation {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.transformation__card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.transformation__card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.transformation__desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.transform-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.transform-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 120px;
}

.transform-node--old {
    background: rgba(255, 80, 80, 0.06);
    border: 1px solid rgba(255, 80, 80, 0.12);
    color: #ff8080;
}

.transform-node--new {
    background: rgba(0, 85, 255, 0.06);
    border: 1px solid rgba(0, 85, 255, 0.12);
    color: var(--accent-blue);
}

.transform-arrow {
    color: var(--text-tertiary);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

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

    50% {
        opacity: 1;
        transform: translateX(6px);
    }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.final-cta__inner {
    text-align: center;
    padding: 80px 40px;
    position: relative;
}

.final-cta__inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
}

.final-cta__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
}

/* ---------- WHO WE ARE GRIDS ---------- */
.wwa-values-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 48px;
}

.wwa-values-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.wwa-values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wwa-values-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.1), transparent);
}

.wwa-values-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wwa-outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
}

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

/* ---------- FOOTER ---------- */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer__brand {
    max-width: 100%;
    padding-right: 24px;
}

.footer__tagline {
    color: var(--text-tertiary);
    font-size: 0.88rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer__links {
    display: contents;
}

.footer__col h3,
.footer__col h4,
.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.footer__col a,
.footer__col p,
.footer__link,
.footer__text {
    display: block;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.65;
}

.footer__col a:hover,
.footer__link:hover {
    color: var(--accent-blue);
}

.footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.social-icon:hover {
    color: var(--accent-blue);
    background: var(--glass-bg-hover);
    border-color: rgba(0, 85, 255, 0.2);
    transform: translateY(-2px);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s var(--ease-out),
        transform 1s var(--ease-out);
}

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

/* Staggered delays */
.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal:nth-child(6) {
    transition-delay: 0.5s;
}

.reveal:nth-child(7) {
    transition-delay: 0.6s;
}

.reveal:nth-child(8) {
    transition-delay: 0.7s;
}

.reveal:nth-child(9) {
    transition-delay: 0.8s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

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

    .bento-card--wide {
        flex-direction: column;
    }

    .bento-card--wide .bento-card__image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .bento-card--wide .bento-card__body {
        width: 100%;
        padding: 24px 28px 28px;
    }

    .transformation__card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .cta-banner__card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .cta-banner__actions {
        justify-content: center;
    }

    .philosophy__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-bar {
        margin-top: 0;
    }

    .stats-bar__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
        padding: 36px 32px;
        justify-items: center;
    }

    .stats-bar__inner--no-dividers {
        grid-template-columns: 1fr 1fr;
        gap: 32px 0;
    }

    .stats-bar__inner--no-dividers .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-divider {
        display: none;
    }

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

    .testimonial-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .testimonial-card__text {
        font-size: 14px;
    }

    .case-studies {
        padding: 60px 0;
    }

    .case-studies__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-study-card {
        padding: 24px;
    }

    .case-study-card__title {
        font-size: 18px;
    }

    .case-study-card__metric-value {
        font-size: 20px;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        background:
            radial-gradient(ellipse at 20% 30%, rgba(0, 85, 255, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(80, 40, 200, 0.06) 0%, transparent 50%),
            rgba(4, 4, 12, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        padding: 90px 36px 40px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        overflow-y: auto;
        z-index: 100;
    }

    .navbar__links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Stagger animation for nav items */
    .navbar__links > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .navbar__links.open > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
    .navbar__links.open > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
    .navbar__links.open > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
    .navbar__links.open > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
    .navbar__links.open > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
    .navbar__links.open > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }

    /* Mobile nav links — large, bold, left-aligned */
    .navbar__links .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        font-family: var(--font-heading);
        color: rgba(255, 255, 255, 0.85);
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        letter-spacing: -0.01em;
        text-align: left;
        display: block;
        width: 100%;
    }

    .navbar__links .nav-link:not(.btn)::after {
        display: none;
    }

    .navbar__links .nav-link:hover,
    .navbar__links .nav-link:active {
        color: #fff;
    }

    /* Mobile CTA — full-width gradient button */
    .navbar__links .nav-link.btn {
        margin-top: 24px;
        padding: 18px 32px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 14px;
        background: var(--gradient-main);
        border: none;
        color: #fff;
        letter-spacing: 0.01em;
        box-shadow: 0 8px 32px rgba(0, 85, 255, 0.25);
    }

    .navbar__links .nav-link.btn:hover {
        box-shadow: 0 12px 40px rgba(0, 85, 255, 0.35);
    }

    /* Mobile social footer inside nav */
    .mobile-nav-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: auto;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-nav-footer .social-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.5);
        transition: background 0.3s, color 0.3s;
    }

    .mobile-nav-footer .social-icon:hover {
        background: rgba(0, 85, 255, 0.15);
        color: #fff;
    }

    /* ---- Light mode mobile nav overrides ---- */
    [data-theme="light"] .navbar__links {
        background:
            radial-gradient(ellipse at 20% 30%, rgba(0, 85, 255, 0.04) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(80, 40, 200, 0.03) 0%, transparent 50%),
            rgba(255, 255, 255, 0.97);
    }

    [data-theme="light"] .navbar__links .nav-link {
        color: var(--text-primary);
        border-bottom-color: rgba(0, 0, 0, 0.06);
    }

    [data-theme="light"] .navbar__links .nav-link:hover,
    [data-theme="light"] .navbar__links .nav-link:active {
        color: var(--accent-blue);
    }

    [data-theme="light"] .mega-menu {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.06);
    }

    [data-theme="light"] .mega-menu__link {
        color: var(--text-primary);
    }

    [data-theme="light"] .mega-menu__link:hover,
    [data-theme="light"] .mega-menu__link:active {
        color: var(--accent-blue);
        background: rgba(0, 85, 255, 0.05);
    }

    [data-theme="light"] .mega-menu__link-text {
        color: var(--text-primary);
    }

    [data-theme="light"] .mega-menu__link-desc {
        color: var(--text-tertiary);
    }

    [data-theme="light"] .mega-menu__col-title {
        color: var(--accent-blue);
    }

    [data-theme="light"] .mobile-nav-footer {
        border-top-color: rgba(0, 0, 0, 0.06);
    }

    [data-theme="light"] .mobile-nav-footer .social-icon {
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-secondary);
    }

    [data-theme="light"] .mobile-nav-footer .social-icon:hover {
        background: rgba(0, 85, 255, 0.1);
        color: var(--accent-blue);
    }

    .navbar__hamburger {
        display: flex;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    /* iOS touch targets */
    .nav-link,
    .nav-dropdown__trigger,
    .mega-menu__link {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Reduce backdrop-filter on mobile for performance */
    .navbar.scrolled {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .navbar__links {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    /* Smaller logo on mobile */
    .logo-icon {
        height: 32px;
        margin-left: 8px;
    }

    .logo-full {
        left: 58px;
        height: 20px;
    }

    /* Keep icon visible on scroll for mobile */
    .navbar.scrolled .logo-icon {
        opacity: 1;
        pointer-events: auto;
        height: 28px;
    }

    .navbar.scrolled .logo-full {
        opacity: 0;
        pointer-events: none;
    }

    /* Mobile mega menu */
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        padding: 16px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-lg);
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.06);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
        padding: 0 16px;
    }

    .nav-dropdown.open .mega-menu {
        max-height: 2000px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 16px;
        transform: none;
    }

    .nav-dropdown:hover .mega-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-dropdown.open:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

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

    .mega-menu__col-title {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .mega-menu__link {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        padding: 12px 10px;
        margin: 0;
        border-left: none;
        border-radius: var(--radius-sm);
    }

    .mega-menu__link:hover,
    .mega-menu__link:active {
        color: #fff;
        background: rgba(0, 85, 255, 0.1);
        border-left: none;
    }

    .mega-menu__link-text {
        color: rgba(255, 255, 255, 0.85);
    }

    .mega-menu__link-desc {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.75rem;
    }

    .mega-menu__link-icon {
        width: 28px;
        height: 28px;
        color: var(--accent-blue);
    }

    .mega-menu__cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-top: 12px;
        padding: 14px 16px;
        border-radius: var(--radius-md);
    }

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

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-bar {
        margin-top: 0;
    }

    .stats-bar__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        padding: 32px 28px;
        justify-items: center;
    }

    .stats-bar__inner--no-dividers {
        grid-template-columns: 1fr 1fr;
        gap: 28px 0;
    }

    .stats-bar__inner--no-dividers .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: auto;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .hero__image {
        display: none;
    }

    /* Mobile typography — premium reduction */
    .section-tag {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Stats */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    /* Bento cards */
    .bento-card__title,
    .bento-b__title {
        font-size: 1.05rem;
    }

    .bento-card__desc,
    .bento-b__desc {
        font-size: 0.84rem;
    }

    .bento-card__link,
    .bento-b__link {
        font-size: 0.82rem;
    }

    /* Philosophy */
    .philosophy .section-title {
        font-size: 1.6rem;
    }

    .philosophy__desc {
        font-size: 0.92rem;
    }

    /* Advantages */
    .advantage-card__number {
        font-size: 2.5rem;
    }

    .advantage-card__title {
        font-size: 1.05rem;
    }

    .advantage-card__desc {
        font-size: 0.84rem;
    }

    /* Mesh CTA */
    .mesh-cta__title {
        font-size: 1.5rem;
    }

    .mesh-cta__desc {
        font-size: 0.92rem;
    }

    /* CTA Banner */
    .cta-banner__title {
        font-size: 1.4rem;
    }

    .cta-banner__desc {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer__col h4,
    .footer__heading {
        font-size: 0.84rem;
    }

    .footer__col a,
    .footer__col p,
    .footer__link,
    .footer__text {
        font-size: 0.82rem;
    }

    .footer__tagline {
        font-size: 0.82rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Philosophy stats card responsive */
    .philosophy__stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Clients/Partners carousel responsive */
    .clients-bar {
        padding: 48px 0 60px;
    }

    .clients-bar__label {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 24px;
    }

    .clients-bar__track img {
        height: 40px;
    }

    .partners-bar__track img {
        height: 40px;
    }

    /* Who We Are page grids */
    .wwa-values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wwa-values-image {
        height: 280px;
    }

    .wwa-values-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wwa-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .services__tabs {
        gap: 6px;
    }

    .tab {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .transformation__card {
        padding: 28px;
    }

    .transform-flow {
        flex-direction: column;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowPulse {

        0%,
        100% {
            opacity: 0.4;
            transform: rotate(90deg) translateX(0);
        }

        50% {
            opacity: 1;
            transform: rotate(90deg) translateX(6px);
        }
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero-b__ctas {
        flex-direction: column;
    }

    .hero-b__line--bold,
    .hero-b__line--accent {
        font-size: 2.2rem;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

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

    .stats-bar__inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .bento-grid {
        gap: 16px;
    }

    .bento-card__body {
        padding: 20px 22px 24px;
    }

    .advantage-card {
        padding: 28px 24px;
    }

    .mesh-cta__card {
        padding: 48px 20px;
    }

    .cta-banner__card {
        padding: 32px 24px;
    }

    .philosophy-quote__text {
        font-size: 1.2rem;
    }
}

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

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

/* Staggered delays for grid children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }
.reveal:nth-child(8) { transition-delay: 0.7s; }
.reveal:nth-child(9) { transition-delay: 0.8s; }

/* ---------- INTERACTIVE CURSORS ---------- */
.bento-b,
.trust-logo,
.btn,
.mega-menu__link {
    cursor: pointer;
}

/* ---------- CTA BUTTON PULSE ---------- */
.btn--glow {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(0, 85, 255, 0.15); }
}

/* ---------- IMAGE LAZY LOAD FADE ---------- */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
    opacity: 1;
}



/* ---------- SITEWIDE: FOOTER GRADIENT BORDER ---------- */
.footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.3), transparent) 1;
}

/* ---------- SITEWIDE: FOCUS-VISIBLE ---------- */
*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- SITEWIDE: BODY FADE-IN ---------- */
body {
    animation: bodyFadeIn 0.4s ease-out;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
/* ======================================================== */
/* MERGED CONCEPT-B.CSS STYLES */
/* ======================================================== */
/* ---------- HERO BACKGROUND VISUAL ---------- */
.fluid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000000;
    overflow: hidden;
    pointer-events: none;
}

#c {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    filter: blur(90px);
}

/* ---------- SMALL CARD THUMBNAILS ---------- */
.bento-b__thumb {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.bento-b__thumb::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
    pointer-events: none;
    z-index: 1;
}

.bento-b__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: var(--img-opacity);
    transition: opacity 0.4s var(--ease-out);
}

.bento-b--small:hover .bento-b__thumb img {
    opacity: var(--img-opacity-hover);
}

.hero-b {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
    z-index: 1;
}


.hero-b__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-b__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #77aaff;
    background: rgba(0, 85, 255, 0.08); /* faint tint */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-b__title {
    font-family: var(--font-heading);
    margin-bottom: 28px;
}

.hero-b__line {
    display: block;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-b__line--light {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.hero-b__line--bold {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 800;
    color: var(--text-primary);
}

.hero-b__line--accent {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 800;
}

.hero-b__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-b__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-b__ctas .btn--primary {
    box-shadow: 0 0 30px rgba(0,85,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-b__ctas .btn--primary:hover {
    box-shadow: 0 10px 40px rgba(0,85,255,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* 1. Staggered Entrance Animations */
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-b__center > * {
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-b__center .hero-b__badge { animation-delay: 0.1s; }
.hero-b__center .hero-b__title { animation-delay: 0.35s; }
.hero-b__center .hero-b__desc  { animation-delay: 0.6s; }
.hero-b__center .hero-b__ctas  { animation-delay: 0.85s; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.trust-bar__label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
    margin-bottom: 28px;
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
}

.trust-logo {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.trust-logo:hover {
    opacity: 0.7;
}

.trust-logo img,
.trust-logo svg {
    height: 32px;
    width: auto;
    filter: grayscale(1) brightness(10);
}

/* ---------- BENTO GRID B ---------- */
.bento-grid-b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.bento-b {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.bento-b:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 85, 255, 0.06);
}

/* Shimmer border effect */
.bento-b::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--shimmer-angle, 0deg),
            transparent 0%,
            rgba(0, 85, 255, 0.15) 10%,
            transparent 20%,
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: shimmerRotate 6s linear infinite;
    z-index: 3;
}

@property --shimmer-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes shimmerRotate {
    to {
        --shimmer-angle: 360deg;
    }
}

.bento-b--large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bento-b--small {
    grid-column: span 1;
}

.bento-b__image {
    overflow: hidden;
}

.bento-b__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: var(--img-opacity-large);
    transition: opacity 0.4s, transform 0.6s var(--ease-out);
}

.bento-b:hover .bento-b__image img {
    opacity: var(--img-opacity-large-hover);
    transform: scale(1.03);
}

.bento-b__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.bento-b__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 85, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.bento-b__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-b__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bento-b__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    transition: gap 0.3s var(--ease-out);
    position: static;
}

.bento-b__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}

.bento-b__link:hover {
    gap: 14px;
}

/* View all services */
.services__view-all {
    text-align: center;
    margin-top: 40px;
}

/* ---------- PHILOSOPHY QUOTE ---------- */
.philosophy-quote {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.philosophy-quote__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.philosophy-quote__mark {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 0.6;
    color: rgba(0, 85, 255, 0.18);
    user-select: none;
    flex-shrink: 0;
}

.philosophy-quote__mark--end {
    align-self: flex-end;
}

.philosophy-quote__text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
}

.philosophy-quote__attribution {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-blue);
    margin-top: 36px;
    opacity: 0.6;
}

/* ---------- GRADIENT MESH CTA ---------- */
.mesh-cta {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

.mesh-cta__card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 80px 40px;
    text-align: center;
}

.mesh-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 85, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(80, 40, 200, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 85, 255, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(8, 8, 20, 0.95) 100%);
    border: 1px solid rgba(0, 85, 255, 0.08);
    border-radius: inherit;
    animation: meshShift 12s ease-in-out infinite;
}

@keyframes meshShift {

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

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

.mesh-cta__content {
    position: relative;
    z-index: 2;
}

.mesh-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.mesh-cta__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 768px) {
    .hero-b {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-b__center {
        max-width: 100%;
    }

    .hero-b__badge {
        font-size: 0.72rem;
        padding: 6px 16px;
        margin-bottom: 28px;
    }

    .hero-b__line--bold,
    .hero-b__line--accent {
        font-size: 2.8rem;
    }

    .hero-b__desc {
        max-width: 100%;
    }

    .trust-bar {
        padding: 40px 0 20px;
    }

    .trust-bar__logos {
        gap: 24px;
    }

    .bento-grid-b {
        grid-template-columns: 1fr;
    }

    .bento-b--large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .bento-b__body {
        padding: 24px;
    }

    .philosophy-quote {
        padding: 60px 0 40px;
    }

    .philosophy-quote__mark {
        font-size: 3rem;
    }

    .mesh-cta__card {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .hero-b__ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-b__ctas .btn {
        justify-content: center;
    }

    .hero-b__line--bold,
    .hero-b__line--accent {
        font-size: 2.2rem;
    }
}

/* ============================================================
   INDUSTRIES WE SERVE
   ============================================================ */
.industries {
    padding: 100px 0;
}

.industries__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.industry-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.industry-badge:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.1);
}

.industry-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

[data-theme="light"] .industry-badge {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .industry-badge:hover {
    border-color: rgba(0, 85, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.06);
}

@media (max-width: 768px) {
    .industries__grid {
        gap: 10px;
    }
    .industry-badge {
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.contact-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-fab__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.contact-fab.active .contact-fab__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-fab__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.25s var(--ease-out);
}

.contact-fab__link:hover {
    transform: translateX(-4px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.15);
}

.contact-fab__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-fab__link--whatsapp svg { color: #25D366; }
.contact-fab__link--phone svg { color: var(--accent-blue); }
.contact-fab__link--book svg { color: var(--accent-blue); }

.contact-fab__trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--accent-blue);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.35);
    transition: all 0.3s var(--ease-out);
}

.contact-fab__trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.45);
}

.contact-fab.active .contact-fab__trigger {
    background: #1a1a2e;
    color: #fff;
}

.contact-fab__trigger svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s var(--ease-out);
}

.contact-fab.active .contact-fab__trigger svg {
    transform: rotate(45deg);
}

/* Light mode overrides */
[data-theme="light"] .contact-fab__link {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contact-fab__link:hover {
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.1);
}

[data-theme="light"] .contact-fab__trigger {
    box-shadow: 0 8px 32px rgba(0, 85, 255, 0.25);
}

/* Hide on mobile when there's very little space */
@media (max-width: 480px) {
    .contact-fab {
        bottom: 16px;
        right: 16px;
    }
    .contact-fab__trigger {
        width: 48px;
        height: 48px;
    }
}
