﻿/* RESET & TOKENS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    /* overflow-x: clip; */
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
}

/* html {
    overflow-x: hidden;
} */

:root {
    --orange: #f26522;
    --orange-dim: rgba(242, 101, 34, 0.15);
    --blue: #1a6bcc;
    --blue-light: #3b8fe8;
    --blue-dark: #0f3d7a;
    --blue-dim: rgba(26, 107, 204, 0.15);
    --nav-h: 52px;
    --nav-h-sm: 44px;
    --white: #fff;
    --bg: #060c18;
    /* deep navy-black */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
     --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --accent-primary: #ff6b00;
    --accent-secondary: #ff8533;
    --font-display: 'Satoshi', 'Inter', 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
    
}

/* PAGE LOADER */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.page-loader.is-exiting {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-loader__logo {
    position: relative;
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 20px rgba(242, 101, 34, 0.5)) drop-shadow(0 0 60px rgba(242, 101, 34, 0.25));
}

.page-loader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--orange);
    animation: loaderSpin 0.9s linear infinite;
}

.page-loader__ring:nth-child(2) {
    inset: 12px;
    border-top-color: rgba(59, 130, 246, 0.6);
    animation-duration: 1.4s;
    animation-direction: reverse;
}

.page-loader__ring:nth-child(3) {
    inset: 24px;
    border-top-color: rgba(242, 101, 34, 0.35);
    animation-duration: 1.8s;
}

.page-loader__img {
    position: absolute;
    inset: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    object-fit: contain;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {

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

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

html {
    scroll-behavior: smooth;
}

body {
     background: var(--bg);
    color: var(--text-dark);
    font-family: var(--font-display);
    margin: 0;
    padding: 0;
}

/* AI POWERED BACKGROUND */
.ai-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ai-bg__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.ai-bg__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(242, 101, 34, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

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

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.ai-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 101, 34, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 101, 34, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.ai-bg__particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particlesFloat 15s ease-in-out infinite;
}

@keyframes particlesFloat {

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

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
}

/* AI Nodes */
.ai-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 0 15px rgba(242, 101, 34, 0.8),
        0 0 30px rgba(242, 101, 34, 0.5),
        0 0 45px rgba(242, 101, 34, 0.3);
    animation: nodeFloat 8s ease-in-out infinite;
}

.ai-node::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(242, 101, 34, 0.4);
    animation: nodePulse 2s ease-in-out infinite;
}

.ai-node--1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.ai-node--2 {
    top: 28%;
    right: 12%;
    animation-delay: 1.5s;
    background: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.5), 0 0 45px rgba(59, 130, 246, 0.3);
}

.ai-node--2::before {
    border-color: rgba(59, 130, 246, 0.4);
}

.ai-node--3 {
    bottom: 35%;
    left: 18%;
    animation-delay: 3s;
}

.ai-node--4 {
    top: 55%;
    right: 22%;
    animation-delay: 4.5s;
    background: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.5), 0 0 45px rgba(139, 92, 246, 0.3);
}

.ai-node--4::before {
    border-color: rgba(139, 92, 246, 0.4);
}

.ai-node--5 {
    bottom: 18%;
    right: 8%;
    animation-delay: 6s;
}

.ai-node--6 {
    top: 45%;
    left: 45%;
    animation-delay: 2s;
    background: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.5), 0 0 45px rgba(6, 182, 212, 0.3);
}

.ai-node--6::before {
    border-color: rgba(6, 182, 212, 0.4);
}

@keyframes nodePulse {

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

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes nodeFloat {

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

    50% {
        transform: translateY(-30px) scale(1.2);
    }
}

/* AI Orbs */
.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 10s ease-in-out infinite;
}

.ai-orb--primary {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.3) 0%, rgba(242, 101, 34, 0.1) 50%, transparent 70%);
    animation-delay: 0s;
}

.ai-orb--secondary {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
    animation-delay: 3s;
}

.ai-orb--tertiary {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    animation-delay: 6s;
}

@keyframes orbPulse {

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

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

/* Circuit Pattern */
.ai-bg__circuit {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(242, 101, 34, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(242, 101, 34, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
    animation: circuitPulse 10s ease-in-out infinite;
}

@keyframes circuitPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

/* Data Flow */
.ai-bg__data-flow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 40%, rgba(242, 101, 34, 0.03) 45%, rgba(242, 101, 34, 0.03) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(59, 130, 246, 0.02) 45%, rgba(59, 130, 246, 0.02) 55%, transparent 60%);
    background-size: 300px 300px;
    animation: dataFlowMove 15s linear infinite;
}

@keyframes dataFlowMove {
    0% {
        background-position: 0 0, 150px 150px;
    }

    100% {
        background-position: 300px 300px, 450px 450px;
    }
}

/* Holographic Rings */
.ai-holo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(242, 101, 34, 0.15);
    animation: holoRotate 20s linear infinite;
}

.ai-holo-ring--1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ai-holo-ring--2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(59, 130, 246, 0.12);
    animation-delay: -7s;
    animation-direction: reverse;
}

.ai-holo-ring--3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(139, 92, 246, 0.1);
    animation-delay: -14s;
}

@keyframes holoRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Data Streams */
.ai-data-stream {
    position: absolute;
    width: 3px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(242, 101, 34, 0.8), transparent);
    animation: streamFlow 4s ease-in-out infinite;
    filter: blur(1px);
}

.ai-data-stream--1 {
    left: 12%;
    top: 0;
    animation-delay: 0s;
}

.ai-data-stream--2 {
    left: 35%;
    top: 0;
    animation-delay: 1.5s;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.7), transparent);
}

.ai-data-stream--3 {
    left: 58%;
    top: 0;
    animation-delay: 3s;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.7), transparent);
}

.ai-data-stream--4 {
    left: 82%;
    top: 0;
    animation-delay: 2s;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.6), transparent);
}

@keyframes streamFlow {
    0% {
        transform: translateY(-150px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

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

/* AI Scan Line Effect */
.ai-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(242, 101, 34, 0.02) 50%,
            transparent 100%);
    animation: scanLine 8s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Digital Noise Overlay */
.ai-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}





#opptyMediaLink {
    position: fixed;
    top: 12px;
    right: 80px;
    z-index: 999;
    display: flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.4s, box-shadow 0.4s, top 0.3s, color 0.25s;
}

#opptyMediaLink:hover {
    color: #ffffff;
}

/* Match navbar's scrolled state */
header.scrolled ~ #opptyMediaLink {
    top: 8px;
    height: var(--nav-h-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 860px) {
    #opptyMediaLink {
        display: none;
    }
}











/* FLOATING SOCIAL BAR */
.social-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: social-float 4s ease-in-out infinite;
}

@keyframes social-float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

/* Decorative line above */
.social-bar::before,
.social-bar::after {
    content: '';
    display: block;
    width: 1.5px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(242, 101, 34, 0.45));
}

.social-bar::after {
    background: linear-gradient(to top, transparent, rgba(242, 101, 34, 0.45));
}

.social-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--orange);
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s;
    filter: drop-shadow(0 2px 6px rgba(242, 101, 34, 0.20));
}

.social-bar__link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-bar__link:hover {
    transform: scale(1.28);
    color: #d4530e;
    filter: drop-shadow(0 4px 10px rgba(242, 101, 34, 0.45));
}

@media (max-width: 768px) {
    .social-bar {
        display: none;
    }
}

/* NAVBAR */
header {
    position: fixed;
    top: 12px;
    left: 45%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    max-width: 1200px;
    z-index: 999;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.4s, box-shadow 0.4s, top 0.3s;
}

header.scrolled {
    top: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.nav-inner {
    height: var(--nav-h);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 0;
    transition: height 0.3s;
}

header.scrolled .nav-inner {
    height: var(--nav-h-sm);
}

/* Logo  matching Elementor logo CSS conventions */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
    margin-left: -8px;
    padding: 2px 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.logo-svg,
.logo-img {
    height: 36px;
    width: auto;
    max-width: 150px;
    display: block;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    filter: drop-shadow(0 0 8px rgba(242, 101, 34, 0.55)) drop-shadow(0 0 18px rgba(242, 101, 34, 0.28));
    transition: filter 0.3s ease;
    box-sizing: border-box;
}

.logo-svg:hover,
.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(242, 101, 34, 0.8)) drop-shadow(0 0 28px rgba(242, 101, 34, 0.45));
}

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 12px;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width 0.25s;
}

nav a:hover {
    color: var(--white);
}

nav a:hover::after {
    width: 100%;
}

/* Active = orange underline always visible */
nav a.active::after,
nav a.nav-active::after,
nav a.ct-nav-active::after,
nav a.rs-nav-active::after {
    width: 100%;
    background: var(--orange);
}

/* past-hero: active underline stays orange */
header.past-hero nav a.active::after,
header.past-hero nav a.nav-active::after,
header.past-hero nav a.ct-nav-active::after,
header.past-hero nav a.rs-nav-active::after {
    width: 100%;
    background: var(--orange);
}

nav a.active:hover,
nav a.nav-active:hover,
nav a.ct-nav-active:hover,
nav a.rs-nav-active:hover {
    color: #fff;
}

/* Dropdown toggle active underline */
.nav-dropdown__toggle.active::after,
.nav-dropdown__toggle.nav-active::after {
    width: calc(100% - 18px);
}


/* Nav text stays white after hero */
header.past-hero nav a {
    color: rgba(255, 255, 255, 0.7);
}

header.past-hero nav a:hover {
    color: #fff;
}

/* Phone number stays white after hero */
header.past-hero .phone-link {
    color: rgba(255, 255, 255, 0.55);
}

header.past-hero .phone-link:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: transform 0.18s, box-shadow 0.18s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-academy {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(242, 101, 34, 0.35);
}

.btn-academy:hover {
    box-shadow: 0 6px 28px rgba(242, 101, 34, 0.55);
}

.btn-training {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid rgba(242, 101, 34, 0.7);
}

.btn-training:hover {
    border-color: var(--orange);
    background: var(--orange-dim);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    margin-left: 16px;
    white-space: nowrap;
    transition: color 0.25s;
}

.phone-link:hover {
    color: var(--white);
}

.phone-link svg {
    width: 13px;
    height: 13px;
    fill: var(--orange);
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 14px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(6, 8, 10, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 24px 20px;
    border-radius: 0 0 24px 24px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
    position: relative;
}

.mobile-nav a:hover {
    color: var(--white);
}

/* Active underline on mobile nav */
.mobile-nav a.nav-active,
.mobile-nav a.active,
.mobile-nav a.ct-nav-active {
    color: #fff;
    position: relative;
}

.mobile-nav a.nav-active::after,
.mobile-nav a.active::after,
.mobile-nav a.ct-nav-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(242,101,34,0.6);
}

/* Active state for Our Services toggle button in mobile dropdown */
.mobile-dropdown__toggle.nav-active {
    color: #fff;
}

.mobile-dropdown__toggle.nav-active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(242,101,34,0.6);
}

/* Active link inside mobile dropdown sub-menu */
.mobile-dropdown__menu li a.nav-active {
    color: var(--orange);
}

.mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
}

/* Phone link inside mobile nav */
.mobile-btns .phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    margin: 0;
}

.mobile-btns .phone-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

.mobile-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 1.2px;
    border-radius: 100px;
}

.mobile-btns .btn-academy {
    background: var(--orange);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(242, 101, 34, 0.45);
}

.mobile-btns .btn-training {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid rgba(242, 101, 34, 0.7);
}
@media (max-width: 860px) {
    header nav,
    .nav-actions {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    header {
        top: 8px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: none !important;
        border-radius: 50px !important;
    }
}

@media (max-width: 1024px) {
    .phone-link {
        display: none;
    }
}

/* HERO CONTAINER */
.hero-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* HERO  base (overridden by block at line ~6461) */
.hero {
    margin: 0 !important;
    width: 100% !important;
    position: relative;
    box-sizing: border-box !important;
}

/* OUTER  FLEX SIDE BY SIDE */
.outer {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 150px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 992px) {
    .outer {
        padding-left: 50px;
    }
}

/* LEFT: BRAND STORY (26%) */
.brand-story {
    flex: 0 0 26% !important;
    width: 35% !important;
    max-width: 40% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    transform: none !important;
    
}

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* BADGE */
.label-container {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px !important;
    background: rgba(242, 101, 34, 0.10);
    border: 1px solid rgba(242, 101, 34, 0.30);
    border-radius: 100px;
    padding: 5px 14px 5px 8px !important;
    backdrop-filter: blur(8px);
}

.badge-label {
    color: var(--accent-primary) !important;
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: pulseDot 2s infinite alternate;
    flex-shrink: 0;
}

@keyframes pulseDot {
    from { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(242,101,34,0.5); }
    to   { opacity: .8; transform: scale(1.3); box-shadow: 0 0 0 4px rgba(242,101,34,0); }
}

/* HEADING */
.brand-story h1 {
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: clamp(32px, 3.8vw, 52px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: -1.5px;
    color: rgba(255,255,255,0.92) !important;
    text-align: left !important;
}

.brand-story h1 .highlight {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9a3c 50%, #ffb870 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SUBHEADING */
.brand-subheading {
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.60) !important;
    margin-bottom: 20px !important;
    text-align: left !important;
    font-weight: 400 !important;
}

.brand-subheading em {
    color: rgba(255,255,255,0.85);
    font-style: normal;
    font-weight: 600;
}

/* STATS STRIP */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 2px;
}

.hero-stat__num {
    font-family: 'Space Grotesk', 'Satoshi', var(--font-display) !important;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: -0.8px;
}

.hero-stat__label {
    font-family: 'Poppins', 'Satoshi', var(--font-display) !important;
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.50);
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ESSENCE BLOCKS */
.brand-blocks-list {
    border-left: none !important;
    padding-left: 0 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
}

.essence-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.essence-item:hover {
    background: rgba(242,101,34,0.08);
    border-color: rgba(242,101,34,0.30);
    transform: translateX(3px);
}

.essence-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(242,101,34,0.15);
    border: 1px solid rgba(242,101,34,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.essence-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--accent-primary);
}

.essence-body h4 {
    font-family: 'Syne', var(--font-display) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.90) !important;
    text-transform: uppercase;
    margin-bottom: 2px !important;
    letter-spacing: 0.8px;
    text-align: left !important;
}

.essence-body p {
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.4 !important;
    text-align: left !important;
    margin: 0;
}

.essence-body p span {
    color: var(--accent-primary);
    font-weight: 700;
}

/* BUTTONS */
.button-actions {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    margin-bottom: 16px !important;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b00, #ff8c38) !important;
    color: #ffffff !important;
    padding: 11px 20px !important;
    border-radius: 10px !important;
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.40), inset 0 1px 0 rgba(255,255,255,0.20);
    transition: .2s var(--ease);
    letter-spacing: 0.3px;
}

.cta-button svg {
    transition: transform 0.2s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e85f00, #ff7a20) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.50) !important;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    padding: 11px 20px !important;
    border-radius: 10px !important;
    font-family: 'Satoshi', var(--font-display) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: .2s var(--ease);
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.13) !important;
    border-color: rgba(255,255,255,0.35) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

/* TRUST ROW */
.trust-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Satoshi', var(--font-display) !important;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.50);
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    transition: color 0.2s, border-color 0.2s;
}

.trust-badge svg {
    stroke: rgba(255,255,255,0.40);
    flex-shrink: 0;
    transition: stroke 0.2s;
}

.trust-badge:hover {
    color: rgba(255,255,255,0.80);
    border-color: rgba(255,255,255,0.20);
}

.trust-badge:hover svg {
    stroke: var(--accent-primary);
}

/* RIGHT: PRODUCT ECOSYSTEM (73%) */
.product-ecosystem {
    flex: 0 0 60% !important;
    width: 60% !important;
    max-width: 60% !important;
    min-width: 0 !important;
    display: block !important;

    box-sizing: border-box !important;
    overflow: visible !important;
}

.ecosystem-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* PREMIUM CARDS  GLASS MORPHISM */
.premium-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(24px) saturate(180%) brightness(1.05) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.05) !important;
    border-radius: 16px !important;
    height: 310px !important;
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 12px !important;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -1px 0 rgba(255,255,255,0.06) !important;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
    opacity: 1 !important;
    transform: none !important;
    box-sizing: border-box !important;
}

/* Glass shine layer */
.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 40%, transparent 65%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 0;
}

/* Bottom glass edge accent */
.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    pointer-events: none;
    z-index: 0;
}

@keyframes cardFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 101, 34, 0.60) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(242,101,34,0.25), inset 0 1px 0 rgba(255,255,255,0.22) !important;
}

/* V-shape glow on hover  per product brand color */
/* The ::before is already used for shine, so we use a dedicated pseudo via CSS custom property trick */
[data-category="Taskly"]:hover {
    border-color: rgba(37, 99, 235, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(37,99,235,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(37, 99, 235, 0.08) !important;
}
[data-category="Taskly"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(37,99,235,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(37,99,235,0.45) 360deg) !important;
}

[data-category="Chatly"]:hover {
    border-color: rgba(124, 58, 237, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(124,58,237,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(124, 58, 237, 0.08) !important;
}
[data-category="Chatly"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(124,58,237,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(124,58,237,0.45) 360deg) !important;
}

[data-category="Peoplely"]:hover {
    border-color: rgba(22, 163, 74, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(22,163,74,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(22, 163, 74, 0.08) !important;
}
[data-category="Peoplely"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(22,163,74,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(22,163,74,0.45) 360deg) !important;
}

[data-category="Cliently"]:hover {
    border-color: rgba(8, 145, 178, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(8,145,178,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(8, 145, 178, 0.08) !important;
}
[data-category="Cliently"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(8,145,178,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(8,145,178,0.45) 360deg) !important;
}

[data-category="Meetly"]:hover {
    border-color: rgba(79, 70, 229, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(79,70,229,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(79, 70, 229, 0.08) !important;
}
[data-category="Meetly"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(79,70,229,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(79,70,229,0.45) 360deg) !important;
}

[data-category="Hirely"]:hover {
    border-color: rgba(234, 88, 12, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(234,88,12,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(234, 88, 12, 0.08) !important;
}
[data-category="Hirely"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(234,88,12,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(234,88,12,0.45) 360deg) !important;
}

[data-category="Learnly"]:hover {
    border-color: rgba(30, 64, 175, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(30,64,175,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(30, 64, 175, 0.08) !important;
}
[data-category="Learnly"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(30,64,175,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(30,64,175,0.45) 360deg) !important;
}

[data-category="Supportly"]:hover {
    border-color: rgba(5, 150, 105, 0.70) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(5,150,105,0.30), inset 0 1px 0 rgba(255,255,255,0.20) !important;
    background: rgba(5, 150, 105, 0.08) !important;
}
[data-category="Supportly"]:hover::before {
    background: conic-gradient(from 270deg at 50% -10%, rgba(5,150,105,0.45) 0deg, transparent 60deg, transparent 300deg, rgba(5,150,105,0.45) 360deg) !important;
}

.product-icon-wrapper {
    width: 100% !important;
    height: 90px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    flex-shrink: 0;
    transition: transform .2s ease;
    overflow: hidden;
    padding: 8px !important;
    background: rgba(255,255,255,0.06) !important;
}

.product-icon-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.product-icon-wrapper svg {
    width: 100px !important;
    height: 12px !important;
    stroke: #ffffff !important;
}

.premium-card:hover .product-icon-wrapper {
    transform: scale(1.1);
}

/* PRODUCT TOP */
.product-top {
    display: flex !important;
    align-items: center;
    gap: 0;
    margin-bottom: 8px !important;
    min-width: 0;
    width: 100%;
}

.product-meta {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
}

.product-name {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-category {
    font-size: 9px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 500 !important;
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* DASHBOARD */
.dashboard-mask {
    display: none;
}

/* Category display — replaces scrolling images */
.card-category-display {
    flex: 0 0 auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 6px 0 !important;
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    text-align: center;
}

.card-category-icon {
    font-size: 1rem;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 0 8px rgba(242, 101, 34, 0.6));
    color: var(--accent-primary);
    flex-shrink: 0;
}

.card-category-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.85) !important;
    display: block;
}

/* Per-product accent colours on the display area */
[data-category="Taskly"] .card-category-display   { border-color: rgba(37, 99, 235, 0.25) !important; background: rgba(37, 99, 235, 0.06) !important; }
[data-category="Chatly"] .card-category-display   { border-color: rgba(124, 58, 237, 0.25) !important; background: rgba(124, 58, 237, 0.06) !important; }
[data-category="Peoplely"] .card-category-display { border-color: rgba(22, 163, 74, 0.25) !important; background: rgba(22, 163, 74, 0.06) !important; }
[data-category="Cliently"] .card-category-display { border-color: rgba(8, 145, 178, 0.25) !important; background: rgba(8, 145, 178, 0.06) !important; }
[data-category="Meetly"] .card-category-display   { border-color: rgba(79, 70, 229, 0.25) !important; background: rgba(79, 70, 229, 0.06) !important; }
[data-category="Hirely"] .card-category-display   { border-color: rgba(234, 88, 12, 0.25) !important; background: rgba(234, 88, 12, 0.06) !important; }
[data-category="Learnly"] .card-category-display  { border-color: rgba(147, 170, 247, 0.25) !important; background: rgba(135, 158, 235, 0.06) !important; }
[data-category="Supportly"] .card-category-display{ border-color: rgba(5, 150, 105, 0.25) !important; background: rgba(5, 150, 105, 0.06) !important; }


/* Slider: stack images absolutely, fade in/out */
.dashboard-track {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.dashboard-screen {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease !important;
}

/* Active slide */
.dashboard-screen.slide-active {
    opacity: 1 !important;
}

/* Remove scroll animations  JS handles slides now */
.track-1,.track-2,.track-3,.track-4,
.track-5,.track-6,.track-7,.track-8 {
    animation: none !important;
}

/* PRODUCT BOTTOM */
.product-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    padding-top: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.benefit-text {
    font-size: 9px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    display: flex !important;
    align-items: center;
    font-weight: 500 !important;
    line-height: 1.3;
}

.benefit-text::before {
    content: '✓';
    color: var(--accent-primary) !important;
    margin-right: 4px;
    font-weight: 900;
    flex-shrink: 0;
}

.premium-card:hover .benefit-text {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* EXPLORE BUTTON on cards */
.card-explore-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 6px !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    background: rgba(242, 101, 34, 0.15) !important;
    border: 1px solid rgba(242, 101, 34, 0.45) !important;
    color: var(--orange) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    white-space: nowrap;
}

.card-explore-btn svg {
    width: 9px !important;
    height: 9px !important;
    stroke: var(--orange) !important;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.card-explore-btn:hover {
    background: rgba(242, 101, 34, 0.30) !important;
    border-color: var(--orange) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.30) !important;
}

.card-explore-btn:hover svg {
    transform: translateX(2px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .outer {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        align-items: center !important;
        text-align: center;
    }
    .hero {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .brand-story,
    .product-ecosystem {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
    }
    .brand-story {
        align-items: center !important;
        text-align: center !important;
    }
    .brand-story h1,
    .brand-subheading,
    .button-actions,
    .trust-row,
    .label-container {
        text-align: center !important;
        justify-content: center !important;
    }
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .brand-story h1 {
        font-size: 30px !important;
    }
}

@media (max-width: 576px) {
    .outer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .hero {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .ecosystem-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .brand-story h1 {
        font-size: 26px !important;
    }
    .hero-container {
        padding: 0 16px !important;
    }
}
/* TICKER STRIP */
.ticker-wrap {
    width: 100%;
    background: var(--orange);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0;
    animation: ticker-scroll 22s linear infinite;
    will-change: transform;
}

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

.ticker-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 40px;
}

.ticker-sep {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}

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

    100% {
        transform: translateX(-33.333%);
    }
}

/* SECTION SCROLL-DIRECTION ANIMATIONS */
.sec-hidden {
    opacity: 0;
}

.sec-from-bottom {
    opacity: 0;
    transform: translateY(60px);
}

.sec-from-top {
    opacity: 0;
    transform: translateY(-60px);
}

.sec-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* UNIFIED SCROLL-REVEAL ANIMATION SYSTEM
   (JS drives animation via rAF, CSS just
    defines the final settled state) */

/* Base  JS sets inline opacity/transform/filter on init */
[data-reveal] {
    will-change: opacity, transform, filter;
}

/* Settled state  JS adds this class when animation completes */
[data-reveal].is-revealed {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    will-change: auto;
}

/* Delay utilities (used by old system, kept for fallback) */
[data-delay="100"].is-revealed {
    transition-delay: 0.10s;
}

[data-delay="150"].is-revealed {
    transition-delay: 0.15s;
}

[data-delay="200"].is-revealed {
    transition-delay: 0.20s;
}

[data-delay="300"].is-revealed {
    transition-delay: 0.30s;
}

[data-delay="400"].is-revealed {
    transition-delay: 0.40s;
}

[data-delay="500"].is-revealed {
    transition-delay: 0.50s;
}

[data-delay="600"].is-revealed {
    transition-delay: 0.60s;
}

[data-delay="700"].is-revealed {
    transition-delay: 0.70s;
}

[data-delay="800"].is-revealed {
    transition-delay: 0.80s;
}

/* Ticker entrance shimmer */
.ticker-wrap {
    position: relative;
    overflow: hidden;
}

.ticker-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: ticker-shimmer 3s ease 0.4s 1 forwards;
}

@keyframes ticker-shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }

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

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

/* Section heading accent line grow */
.clients-heading-line {
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.clients-header.is-revealed .clients-heading-line {
    transform: scaleX(1);
}

/* ABOUT PRO SECTION  DARK PREMIUM THEME */
.about-pro {
    position: relative;
    background: linear-gradient(160deg,
            #060c18 0%,
            #0a1428 35%,
            #0d1a35 65%,
            #060c18 100%);
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
}

/* ANIMATED BACKGROUND */
.ap-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Deep dark base gradient */
.ap-bg__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 15%, rgba(26, 107, 204, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 85%, rgba(242, 101, 34, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6, 12, 24, 0.8) 0%, transparent 80%);
}

/* Glowing grid lines */
.ap-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 107, 204, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 107, 204, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 75%);
    animation: ap-grid-breathe 8s ease-in-out infinite;
}

@keyframes ap-grid-breathe {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Film grain noise overlay */
.ap-bg__noise {
    position: absolute;
    inset: 0;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ap-bg__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Floating geometric shapes  dark neon borders */
.ap-shape {
    position: absolute;
}

.ap-shape--1 {
    width: 64px;
    height: 64px;
    top: 14%;
    left: 7%;
    border-radius: 12px;
    border: 1px solid rgba(242, 101, 34, 0.35);
    background: rgba(242, 101, 34, 0.04);
    box-shadow: 0 0 18px rgba(242, 101, 34, 0.1) inset;
    animation: ap-shape-float 9s ease-in-out infinite;
}

.ap-shape--2 {
    width: 44px;
    height: 44px;
    top: 68%;
    right: 10%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.12) inset;
    animation: ap-shape-float 6.5s ease-in-out infinite 1.2s;
}

.ap-shape--3 {
    width: 52px;
    height: 52px;
    bottom: 18%;
    left: 14%;
    border: 1px solid rgba(242, 101, 34, 0.28);
    background: rgba(242, 101, 34, 0.03);
    transform: rotate(45deg);
    animation: ap-shape-float 7.5s ease-in-out infinite 0.6s;
}

.ap-shape--4 {
    width: 76px;
    height: 76px;
    top: 32%;
    right: 7%;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.3);
    animation: ap-shape-rotate 22s linear infinite;
}

@keyframes ap-shape-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
        opacity: 1;
    }
}

@keyframes ap-shape-rotate {
    from {
        transform: rotate(0deg);
    }

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

/* Glowing orbs  richer on dark bg */
.ap-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ap-orb--orange {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.5) 0%, rgba(251, 146, 60, 0.2) 50%, transparent 75%);
    top: -200px;
    right: -140px;
    animation: ap-orb-pulse 14s ease-in-out infinite alternate;
}

.ap-orb--blue {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(26, 107, 204, 0.55) 0%, rgba(59, 130, 246, 0.22) 50%, transparent 75%);
    bottom: -140px;
    left: -130px;
    animation: ap-orb-pulse 18s ease-in-out infinite alternate-reverse;
}

@keyframes ap-orb-pulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }

    33% {
        transform: translate(35px, 20px) scale(1.1);
        opacity: 0.7;
    }

    66% {
        transform: translate(-15px, 35px) scale(0.95);
        opacity: 1;
    }

    100% {
        transform: translate(50px, -10px) scale(1.15);
        opacity: 0.8;
    }
}

/* CONTAINER */
.ap-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* EYEBROW */
.ap-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.ap-eyebrow__line {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.ap-eyebrow__text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
}

/* MAIN GRID */
.ap-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */
.ap-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo  stronger glow on dark */
.ap-logo-wrap {
    position: relative;
    width: fit-content;
    margin-bottom: 8px;
}

.ap-logo-glow {
    position: absolute;
    inset: -12px -24px;
    background: radial-gradient(ellipse,
            rgba(242, 101, 34, 0.4) 0%,
            rgba(59, 130, 246, 0.2) 55%,
            transparent 80%);
    filter: blur(22px);
    animation: ap-glow-pulse 3s ease-in-out infinite;
}

@keyframes ap-glow-pulse {

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

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.ap-logo {
    position: relative;
    z-index: 1;
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    /* Keep original colors, boost contrast so they pop on dark bg */
    filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 16px rgba(242, 101, 34, 0.6)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.ap-logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.25) contrast(1.15) drop-shadow(0 0 28px rgba(242, 101, 34, 0.9)) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8));
}

/* White frosted backdrop so logo colours read clearly on dark */
.ap-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -10px -18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.ap-logo-wrap:hover::before {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(242, 101, 34, 0.35);
}

/* Divider */
.ap-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
}

.ap-divider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px var(--orange), 0 0 28px rgba(242, 101, 34, 0.5);
    animation: ap-pulse 2s ease-in-out infinite;
}

.ap-divider__line {
    flex: 1;
    max-width: 90px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(59, 130, 246, 0.6) 60%, transparent 100%);
}

@keyframes ap-pulse {

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

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

/* Title  bright on dark */
.ap-title {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ap-title__line {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ap-title__big,
.ap-title__accent {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 900;
    letter-spacing: -2.5px;
    text-transform: uppercase;
    line-height: 0.95;
}

.ap-title__big {
    background: linear-gradient(135deg, #fff 0%, #93c5fd 60%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-title__accent {
    background: linear-gradient(135deg, #fb923c 0%, #f26522 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(242, 101, 34, 0.45));
}

/* Split text animation  letter drop-in with glow */
[data-ap-split] .ap-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ap-revealed[data-ap-split] .ap-char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Tagline  white on dark */
.ap-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    letter-spacing: -0.3px;
}

.ap-tagline__highlight {
    color: var(--orange);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.ap-tagline__highlight::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 7px;
    background: rgba(242, 101, 34, 0.18);
    z-index: -1;
    border-radius: 4px;
}

/* Description  muted white */
.ap-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin: 0;
    max-width: 520px;
}

/* VALUES GRID  glassmorphism dark cards */
.ap-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.ap-value-card {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    will-change: transform;
}

.ap-value-card__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(242, 101, 34, 0.1) 0%,
            rgba(59, 130, 246, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.ap-value-card:hover {
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(242, 101, 34, 0.2),
        0 0 30px rgba(242, 101, 34, 0.08) inset;
}

.ap-value-card:hover .ap-value-card__bg {
    opacity: 1;
}

.ap-value-card__icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.ap-value-card:hover .ap-value-card__icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.45);
}

.ap-value-card__icon svg {
    width: 22px;
    height: 22px;
}

.ap-value-card__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ap-value-card__content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.ap-value-card:hover .ap-value-card__content h4 {
    color: var(--orange);
}

.ap-value-card__content p {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

.ap-value-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.ap-value-card:hover .ap-value-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* STATS  dark glass */
.ap-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.ap-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.ap-stat__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #fb923c 0%, var(--orange) 60%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
    filter: drop-shadow(0 0 18px rgba(242, 101, 34, 0.4));
}

.ap-stat__plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    display: inline-block;
    margin-left: 2px;
}

.ap-stat__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.ap-stat__divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(242, 101, 34, 0.3), transparent);
}

/* RIGHT VISUAL */
.ap-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.ap-tech-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ap-tech-lines span {
    position: absolute;
    height: 1px;
    opacity: 0.4;
}

.ap-tech-lines span:nth-child(1) {
    top: 15%;
    left: 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: tech-line 4s ease-in-out infinite;
}

.ap-tech-lines span:nth-child(2) {
    top: 35%;
    right: 0;
    width: 25%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: tech-line 4s ease-in-out infinite 1s;
}

.ap-tech-lines span:nth-child(3) {
    bottom: 25%;
    left: 0;
    width: 35%;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: tech-line 4s ease-in-out infinite 2s;
}

.ap-tech-lines span:nth-child(4) {
    bottom: 10%;
    right: 0;
    width: 28%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: tech-line 4s ease-in-out infinite 1.5s;
}

@keyframes tech-line {

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

    50% {
        opacity: 0.6;
        transform: scaleX(1);
    }
}

.ap-globe-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbital rings */
.ap-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ap-orbit--1 {
    inset: -15px;
    border: 1px dashed rgba(242, 101, 34, 0.4);
    animation: ap-orbit-spin 25s linear infinite;
}

.ap-orbit--2 {
    inset: -40px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: ap-orbit-spin 40s linear infinite reverse;
}

.ap-orbit--3 {
    inset: -70px;
    border: 1px dotted rgba(30, 58, 138, 0.2);
    animation: ap-orbit-spin 60s linear infinite;
}

.ap-orbit__dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 0 16px var(--orange),
        0 0 32px rgba(242, 101, 34, 0.5);
}

.ap-orbit__dot--blue {
    background: #3b82f6;
    box-shadow:
        0 0 16px #3b82f6,
        0 0 32px rgba(59, 130, 246, 0.5);
}

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

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

/* Globe  canvas renderer */
.ap-globe {
    position: relative;
    width: 100%;
    height: 100%;
}

.ap-globe canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

/* PRO BADGES  dark glassmorphism */
.ap-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    z-index: 4;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease, border-color 0.3s ease;
}

.ap-badge:hover {
    transform: translateY(-6px) scale(1.06);
    border-color: rgba(242, 101, 34, 0.5);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(242, 101, 34, 0.35) inset,
        0 0 30px rgba(242, 101, 34, 0.12);
}

.ap-badge__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.5);
}

.ap-badge__icon--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

.ap-badge__icon svg {
    width: 18px;
    height: 18px;
}

.ap-badge__title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
}

.ap-badge__sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.ap-badge--1 {
    top: 5%;
    left: -8%;
    animation: ap-badge-float 6s ease-in-out infinite;
}

.ap-badge--2 {
    top: 42%;
    right: -12%;
    animation: ap-badge-float 7s ease-in-out infinite 1s;
}

.ap-badge--3 {
    bottom: 12%;
    left: -5%;
    animation: ap-badge-float 5.5s ease-in-out infinite 0.5s;
}

@keyframes ap-badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* REVEAL ANIMATIONS  dark-optimised */
[data-ap-reveal] {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.35s ease;
    will-change: opacity, transform;
}

[data-ap-reveal="fade-up"] {
    transform: translateY(24px);
    filter: blur(1px);
}

[data-ap-reveal="fade-down"] {
    transform: translateY(-18px);
    filter: blur(1px);
}

[data-ap-reveal="fade-left"] {
    transform: translateX(32px);
    filter: blur(1px);
}

[data-ap-reveal="fade-right"] {
    transform: translateX(-32px);
    filter: blur(1px);
}

.ap-revealed[data-ap-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .ap-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .ap-visual {
        order: -1;
        min-height: 460px;
    }

    .ap-globe-wrap {
        max-width: 400px;
    }

    .ap-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .about-pro {
        padding: 80px 0;
    }

    .ap-container {
        padding: 0 20px;
    }

    .ap-logo {
        height: 48px;
    }

    .ap-values {
        grid-template-columns: 1fr;
    }

    .ap-globe-wrap {
        max-width: 320px;
    }

    .ap-badge {
        padding: 10px 14px;
    }

    .ap-badge__title {
        font-size: 11px;
    }

    .ap-badge__sub {
        font-size: 9px;
    }

    .ap-badge--1 {
        left: -5%;
        top: 0;
    }

    .ap-badge--2 {
        right: -5%;
    }

    .ap-badge--3 {
        left: -5%;
    }

    .ap-stats {
        padding: 18px 20px;
        gap: 14px;
    }

    .ap-stat__num {
        font-size: 28px;
    }

    .ap-orb--orange,
    .ap-orb--blue {
        width: 300px;
        height: 300px;
    }
}

/* ABOUT CTA BUTTONS */
.ap-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.ap-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.ap-cta__btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ap-cta__btn:hover svg {
    transform: translateX(4px);
}

.ap-cta__btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 28px rgba(242, 101, 34, 0.4);
}

.ap-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(242, 101, 34, 0.55);
    background: #e05510;
}

.ap-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.ap-cta__btn--secondary:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(242, 101, 34, 0.08);
    box-shadow: 0 8px 24px rgba(242, 101, 34, 0.15);
}

@media (max-width: 640px) {
    .ap-cta {
        gap: 12px;
    }

    .ap-cta__btn {
        padding: 12px 22px;
        font-size: 12px;
    }
}

/* VISION & MISSION SECTION */
.vm-section {
    position: relative;
    background: linear-gradient(135deg,
            #0a1845 0%,
            #0f1f5c 25%,
            #0a1845 50%,
            #1e3a8a 75%,
            #0a1845 100%);
    padding: 48px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

/* ANIMATED BACKGROUND */
.vm-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Background video */
.vm-bg__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.35;
}

/* Dark mask over the video — keeps the map visible but darkens it */
.vm-bg__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        rgba(5, 10, 30, 0.88),
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 85% 80%, rgba(242, 101, 34, 0.20) 0%, transparent 60%);
}

.vm-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

.vm-bg__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(242, 101, 34, 0.6) 0%, transparent 50%),
        radial-gradient(2px 2px at 60% 70%, rgba(59, 130, 246, 0.5) 0%, transparent 50%),
        radial-gradient(1px 1px at 80% 20%, rgba(251, 191, 36, 0.6) 0%, transparent 50%),
        radial-gradient(2px 2px at 30% 80%, rgba(242, 101, 34, 0.4) 0%, transparent 50%),
        radial-gradient(1px 1px at 90% 50%, rgba(59, 130, 246, 0.6) 0%, transparent 50%);
    animation: vm-stars 20s linear infinite;
}

@keyframes vm-stars {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Floating shapes */
.vm-shape {
    position: absolute;
    border-radius: 12px;
}

.vm-shape--1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    border: 1.5px solid rgba(242, 101, 34, 0.25);
    background: rgba(242, 101, 34, 0.05);
    animation: vm-shape-float 8s ease-in-out infinite;
}

.vm-shape--2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 12%;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.4);
    animation: vm-shape-rotate 25s linear infinite;
}

.vm-shape--3 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 15%;
    border: 1.5px solid rgba(242, 101, 34, 0.3);
    transform: rotate(45deg);
    animation: vm-shape-float 7s ease-in-out infinite 0.5s;
}

@keyframes vm-shape-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes vm-shape-rotate {
    from {
        transform: rotate(0deg);
    }

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

/* Glowing orbs */
.vm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.vm-orb--orange {
    width: 500px;
    height: 500px;
    background: #f26522;
    top: -150px;
    right: -100px;
    animation: vm-orb-drift 18s ease-in-out infinite alternate;
}

.vm-orb--blue {
    width: 450px;
    height: 450px;
    background: #3b82f6;
    bottom: -100px;
    left: -100px;
    animation: vm-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes vm-orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.15);
    }
}

/* CONTAINER */
.vm-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* HEADER */
.vm-header {
    text-align: center;
    margin-bottom: 32px;
}

.vm-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vm-eyebrow__line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.vm-eyebrow__text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
}

.vm-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0;
}

.vm-heading__accent {
    background: linear-gradient(135deg, #fb923c 0%, #f26522 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 40px rgba(242, 101, 34, 0.4);
}

/* MAIN GRID */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

/* CARD */
.vm-card {
    position: relative;
    padding: 56px 40px 48px;
    background: linear-gradient(145deg,
            rgba(15, 31, 92, 0.6) 0%,
            rgba(10, 24, 69, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    /* only transition border-color & box-shadow  transform is handled by JS */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.vm-card:hover {
    border-color: rgba(242, 101, 34, 0.6);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(242, 101, 34, 0.3),
        0 0 40px rgba(26, 107, 204, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    /* transform handled by JS tilt engine */
}

/* Card glow */
.vm-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%,
            rgba(242, 101, 34, 0.18) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.vm-card:hover .vm-card__glow {
    opacity: 1;
}

/* Mouse-tracking shine layer */
.vm-card__shine {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.04) 35%,
            transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.vm-card:hover .vm-card__shine {
    opacity: 1;
}

/* Corner decorations */
.vm-card__corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--orange);
    pointer-events: none;
    transition: all 0.4s ease;
}

.vm-card__corner--tl {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.vm-card__corner--br {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.vm-card:hover .vm-card__corner {
    width: 60px;
    height: 60px;
    border-color: #fb923c;
}

/* Label */
.vm-card__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.vm-card__label-line {
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--orange);
}

.vm-card__label-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

/* Icon wrapper */
.vm-card__icon-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-card__icon-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
            rgba(242, 101, 34, 0.2) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: vm-icon-pulse 3s ease-in-out infinite;
}

@keyframes vm-icon-pulse {

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

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Spinning rings around icon */
.vm-card__icon-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vm-card__icon-rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(242, 101, 34, 0.3);
}

.vm-card__icon-rings span:nth-child(1) {
    inset: -10px;
    animation: vm-ring-spin 20s linear infinite;
}

.vm-card__icon-rings span:nth-child(2) {
    inset: -20px;
    border-style: dotted;
    border-color: rgba(59, 130, 246, 0.3);
    animation: vm-ring-spin 30s linear infinite reverse;
}

.vm-card__icon-rings span:nth-child(3) {
    inset: -30px;
    border-color: rgba(242, 101, 34, 0.15);
    animation: vm-ring-spin 40s linear infinite;
}

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

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

/* Icon */
.vm-card__icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    color: var(--orange);
    filter: drop-shadow(0 4px 20px rgba(242, 101, 34, 0.5));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vm-card:hover .vm-card__icon {
    transform: scale(1.15) rotate(-8deg);
}

.vm-card__icon svg {
    width: 100%;
    height: 100%;
}

/* Image icon (png/webp replaces SVG) */
.vm-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(242, 101, 34, 0.5));
    mix-blend-mode: screen;
    /* removes dark background, keeps orange icon */
}

/* Content */
.vm-card__content {
    position: relative;
    z-index: 1;
}

.vm-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Bottom accent */
.vm-card__accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.vm-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
}

.vm-card__line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--orange), transparent);
    transition: width 0.4s ease;
}

.vm-card:hover .vm-card__line {
    width: 80px;
}

/* CENTER DIVIDER */
.vm-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 8px;
}

.vm-divider__line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(242, 101, 34, 0.5),
            transparent);
}

.vm-divider__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 0 30px rgba(242, 101, 34, 0.5),
        0 0 60px rgba(242, 101, 34, 0.3);
    animation: vm-divider-pulse 2s ease-in-out infinite;
}

@keyframes vm-divider-pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.vm-divider__icon svg {
    width: 22px;
    height: 22px;
}

/* CTA */
.vm-cta {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.08) 0%,
            rgba(242, 101, 34, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.vm-cta__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
    font-weight: 500;
}

.vm-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow:
        0 10px 30px rgba(242, 101, 34, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.vm-cta__btn:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow:
        0 16px 40px rgba(242, 101, 34, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.vm-cta__btn svg {
    width: 18px;
    height: 18px;
}

/* REVEAL ANIMATIONS */
[data-vm-reveal] {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-vm-reveal="fade-up"] {
    transform: translateY(20px);
}

[data-vm-reveal="fade-down"] {
    transform: translateY(-15px);
}

[data-vm-reveal="fade-left"] {
    transform: translateX(60px);
}

[data-vm-reveal="fade-right"] {
    transform: translateX(-60px);
}

.vm-revealed[data-vm-reveal] {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vm-divider {
        flex-direction: row;
        width: 100%;
    }

    .vm-divider__line {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right,
                transparent,
                rgba(242, 101, 34, 0.5),
                transparent);
    }
}

@media (max-width: 640px) {
    .vm-section {
        padding: 80px 0;
    }

    .vm-container {
        padding: 0 20px;
    }

    .vm-header {
        margin-bottom: 48px;
    }

    .vm-card {
        padding: 44px 28px 36px;
    }

    .vm-card__corner {
        width: 28px;
        height: 28px;
    }

    .vm-card:hover .vm-card__corner {
        width: 40px;
        height: 40px;
    }





    .vm-card__icon-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .vm-card__icon {
        width: 90px;
        height: 90px;
    }

    .vm-card__text {
        font-size: 14px;
        line-height: 1.75;
    }

    .vm-cta {
        padding: 36px 24px;
    }

    .vm-cta__text {
        font-size: 16px;
    }

    .vm-cta__btn {
        padding: 14px 28px;
        font-size: 12px;
    }

    .vm-orb--orange,
    .vm-orb--blue {
        width: 300px;
        height: 300px;
    }
}



.why-oppty-hero {
    position: relative;
    background: linear-gradient(135deg,
            #020617 0%,
            #0a1230 25%,
            #020617 50%,
            #0d1842 75%,
            #020617 100%);
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
}


.wo-container-hero {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    align-items: center;
    justify-content: center;
}



/* ── FIX: labels were clipped by .wo-mini's overflow:hidden ── */
.why-oppty-hero .wo-mini {
    overflow: visible;
}

.why-oppty-hero .wo-mini__inner {
    overflow: hidden;
    border-radius: 16px;
}


/* ── HERO WHY-OPPTY: CENTERING FIX (corrected) ── */
.why-oppty-hero .wo-container-hero {
    display: flex;
    justify-content: center;
    width: 100%;
}

.wo-grid--centered {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}

/* This is the missing piece — give the visual an explicit width
   so it doesn't shrink to fit its contents inside the flex row */
.wo-grid--centered .wo-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wo-grid--centered .wo-visual__wrap {
    width: 100%;
    max-width: 480px;
}

.why-oppty-hero .wo-container-hero {
    display: flex;
    justify-content: center;
}

/* ── RADAR SWEEP LINE ── */
.wo-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(242,101,34,0.35) 0deg,
        transparent 25deg,
        transparent 335deg,
        rgba(242,101,34,0.35) 360deg);
    animation: wo-sweep-spin 6s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
}

@keyframes wo-sweep-spin {
    to { transform: rotate(360deg); }
}

/* ── SECOND PULSE RING ON CENTER BADGE ── */
.wo-badge__pulse--2 {
    animation: wo-badge-pulse 3s ease-in-out infinite 1.5s;
}

/* ── ORBIT WRAPPER: whole ring of logos rotates slowly ── */
.wo-orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
    animation: wo-orbit-spin 48s linear infinite;
}

@keyframes wo-orbit-spin {
    to { transform: rotate(360deg); }
}

/* Each mini badge keeps its own gentle float, orbit handles the big rotation */
.wo-mini {
    animation: wo-mini-float 5s ease-in-out infinite;
}

/* Inner content counter-rotates at the same speed/direction-reversed
   so icons + labels always stay upright while the ring turns */
.wo-mini__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: wo-mini-counter-spin 48s linear infinite;
}

@keyframes wo-mini-counter-spin {
    to { transform: rotate(-360deg); }
}

.wo-mini__inner img {
    width: 200%;
    height: 190%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* ── VISIBLE NAME LABEL UNDER EACH LOGO ── */
.wo-mini__label {
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%) rotate(0deg);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(10, 14, 28, 0.82);
    border: 1px solid rgba(242, 101, 34, 0.4);
    padding: 3px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    opacity: 0;
    animation: wo-label-counter-spin 48s linear infinite, wo-label-fadein 0.6s ease forwards;
    animation-delay: 0s, 1.2s;
    pointer-events: none;
}

/* Counter-rotate the label along with the icon (same motion as .wo-mini__inner) */
@keyframes wo-label-counter-spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(-360deg); }
}

@keyframes wo-label-fadein {
    to { opacity: 1; }
}

.wo-mini:hover .wo-mini__label {
    border-color: var(--white);
    background: rgba(242, 101, 34, 0.22);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

/* stagger each badge's float so the ring feels alive, not synced */
.wo-mini--1 { animation-delay: 0s; }
.wo-mini--2 { animation-delay: 0.6s; }
.wo-mini--3 { animation-delay: 1.2s; }
.wo-mini--4 { animation-delay: 1.8s; }
.wo-mini--5 { animation-delay: 2.4s; }
.wo-mini--6 { animation-delay: 3.0s; }
.wo-mini--7 { animation-delay: 3.6s; }
.wo-mini--8 { animation-delay: 4.2s; }

/* Slightly stronger hover glow, color synced to orange brand */
.wo-mini:hover {
    transform: scale(1.22) rotate(-4deg);
    box-shadow:
        0 18px 44px rgba(242, 101, 34, 0.5),
        0 0 0 2px rgba(242, 101, 34, 0.7) inset;
    background: rgba(255, 255, 255, 1);
}

/* pause orbit + counter-spin on hover of the whole cluster so labels are easy to read */
.wo-visual__wrap:hover .wo-orbit,
.wo-visual__wrap:hover .wo-mini__inner,
.wo-visual__wrap:hover .wo-mini__label {
    animation-play-state: paused;
}





/* WHY-OPPTY-HERO: 3-column split (left content / orbit / right content) */
.wo-grid--split {
  display: grid !important;
  grid-template-columns: 1fr 560px 1fr !important;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.wo-grid--split .wo-visual { min-height: 560px; }

.woh-side { display: flex; flex-direction: column; }
.woh-side--right { align-items: flex-start; }

.woh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  background: rgba(242,101,34,.10); border: 1px solid rgba(242,101,34,.30);
  border-radius: 100px; padding: 6px 16px 6px 10px; width: fit-content;
}
.woh-eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.woh-eyebrow__text {
  color: var(--orange); font-family: 'Poppins', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}

.woh-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  color: rgba(255,255,255,.94); margin-bottom: 16px; width: 320px;
}
.woh-accent {
  background: linear-gradient(135deg, #ff6b00, #ff9a3c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.woh-desc {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,.58);
  margin-bottom: 26px;
  max-width: 440px;
  letter-spacing: 0.15px;
}

.woh-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.woh-item { display: flex; gap: 14px; align-items: flex-start; text-align: left; }
.woh-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242,101,34,.12); border: 1px solid rgba(242,101,34,.3); color: var(--orange);
}
.woh-icon svg { width: 20px; height: 20px; }
.woh-icon--blue { background: rgba(59,130,246,.14); border-color: rgba(59,130,246,.35); color: #3b8fe8; }
.woh-item h4 { font-family: 'Poppins', sans-serif; font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.woh-item p { font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,.5); }

.woh-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.woh-btn {
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 700;
  border-radius: 10px; padding: 12px 22px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.woh-btn--solid {
  background: linear-gradient(135deg, #ff6b00, #ff8c38); color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.woh-btn--solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,.5); }
.woh-btn--ghost { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.woh-btn--ghost:hover { background: rgba(255,255,255,.11); transform: translateY(-2px); }

@media (max-width: 1300px) {
  .wo-grid--split { grid-template-columns: 1fr 460px 1fr !important; }
  .woh-title { width: auto; }
}

@media (max-width: 1100px) {
  .wo-grid--split { grid-template-columns: 1fr !important; text-align: center; }
  .woh-side, .woh-side--right { align-items: center; text-align: center; }
  .woh-item { text-align: left; }
  .wo-grid--split .wo-visual { order: -1; }
  .woh-title { width: auto; font-size: clamp(22px, 3.5vw, 34px); }
  .woh-desc { max-width: 560px; }
  .woh-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .why-oppty-hero { padding: 80px 0 60px; }
  .wo-container-hero { padding: 0 20px; }
  .wo-grid--split { gap: 24px !important; }
  .woh-title { font-size: clamp(20px, 5.5vw, 28px); width: auto; }
  .woh-desc { font-size: 13.5px; margin-bottom: 18px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .wo-grid--split .wo-visual { min-height: 360px !important; }
  .wo-visual__wrap { max-width: 340px; }
  .wo-badge { width: 150px; height: 150px; }
  .wo-mini { width: 48px; height: 48px; }
  .wo-mini__label { display: none; }
  .woh-list { gap: 12px; margin-bottom: 18px; }
  .woh-icon { width: 38px; height: 38px; }
  .woh-icon svg { width: 17px; height: 17px; }
  .woh-item h4 { font-size: 13px; }
  .woh-item p { font-size: 11.5px; }
  .woh-btn { padding: 10px 18px; font-size: 11.5px; }
  .woh-side--left { overflow: hidden; }
}

@media (max-width: 480px) {
  .why-oppty-hero { padding: 80px 0 44px; }
  .wo-container-hero { padding: 0 16px; }
  .woh-eyebrow__text { font-size: 9px; letter-spacing: 1.2px; }
  .woh-title { font-size: clamp(20px, 6vw, 26px); margin-bottom: 10px; width: auto; }
  .woh-desc { font-size: 13px; line-height: 1.7; margin-bottom: 14px; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .wo-grid--split .wo-visual { min-height: 300px !important; }
  .wo-visual__wrap { max-width: 280px; }
  .wo-badge { width: 120px; height: 120px; }
  .wo-badge__logo { padding: 16px; }
  .wo-mini { width: 40px; height: 40px; padding: 5px; }
  .woh-btns { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .woh-btn { width: 100%; max-width: 100%; justify-content: center; text-align: center; }
  .woh-list { gap: 10px; }
  .woh-icon { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
  .woh-icon svg { width: 15px; height: 15px; }
  .woh-item h4 { font-size: 12.5px; }
  .woh-item p { font-size: 11px; }
  .woh-side--left { overflow: hidden; }
}






/* WHY CHOOSE OPPTY SECTION */
.why-oppty {
    position: relative;
    background: linear-gradient(135deg,
            #020617 0%,
            #0a1230 25%,
            #020617 50%,
            #0d1842 75%,
            #020617 100%);
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
}

.wo-bg__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(242, 101, 34, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(37, 99, 235, 0.25) 0%, transparent 60%);
}

/* ANIMATED BACKGROUND */
.wo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wo-bg__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(242, 101, 34, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

.wo-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Floating shapes */
.wo-shape {
    position: absolute;
    border-radius: 12px;
}

.wo-shape--1 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 10%;
    border: 1.5px solid rgba(242, 101, 34, 0.3);
    background: rgba(242, 101, 34, 0.05);
    animation: wo-shape-float 8s ease-in-out infinite;
}

.wo-shape--2 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 15%;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.4);
    animation: wo-shape-rotate 25s linear infinite;
}

.wo-shape--3 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 10%;
    border: 1.5px solid rgba(242, 101, 34, 0.25);
    transform: rotate(45deg);
    animation: wo-shape-float 7s ease-in-out infinite 0.5s;
}

@keyframes wo-shape-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes wo-shape-rotate {
    from {
        transform: rotate(0deg);
    }

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

/* Glowing orbs */
.wo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.wo-orb--orange {
    width: 500px;
    height: 500px;
    background: #f26522;
    top: -150px;
    left: -100px;
    animation: wo-orb-drift 18s ease-in-out infinite alternate;
}

.wo-orb--blue {
    width: 450px;
    height: 450px;
    background: #3b82f6;
    bottom: -100px;
    right: -100px;
    animation: wo-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes wo-orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.15);
    }
}

/* CONTAINER */
.wo-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* MAIN GRID */
.wo-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT: VISUAL SIDE */
.wo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.wo-visual__wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Animated rings */
.wo-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(242, 101, 34, 0.3);
}

.wo-ring--1 {
    width: 70%;
    height: 70%;
    animation: wo-ring-spin 30s linear infinite;
}

.wo-ring--2 {
    width: 90%;
    height: 90%;
    border-style: dotted;
    border-color: rgba(59, 130, 246, 0.35);
    animation: wo-ring-spin 45s linear infinite reverse;
}

.wo-ring--3 {
    width: 110%;
    height: 110%;
    border-color: rgba(242, 101, 34, 0.15);
    animation: wo-ring-spin 60s linear infinite;
}

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

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

/* Center badge */
.wo-badge {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.wo-badge__pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(242, 101, 34, 0.4) 0%,
            transparent 70%);
    animation: wo-badge-pulse 3s ease-in-out infinite;
}

@keyframes wo-badge-pulse {

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

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.wo-badge__inner {
    position: relative;
    width: 100%;
    height: 100%;
     /* Vivid dark-blue/purple glass with colour sheen */
    background: radial-gradient(circle at 30% 25%,
            rgba(210, 80, 10, 0.45) 0%,
            rgba(25, 55, 200, 0.40) 45%,
            rgba(90, 25, 170, 0.32) 75%,
            rgba(7, 8, 15, 0.95) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 0 0 2px rgba(242, 101, 34, 0.55),
        0 0 40px rgba(242, 101, 34, 0.35),
        0 0 80px rgba(26, 107, 204, 0.25),
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    z-index: 1;
}

/* Colour shimmer layer inside glass */
.wo-badge__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 200deg,
            rgba(242, 101, 34, 0.22) 0deg,
            rgba(26, 107, 204, 0.18) 90deg,
            rgba(124, 58, 237, 0.14) 180deg,
            rgba(242, 101, 34, 0.22) 270deg,
            rgba(26, 107, 204, 0.18) 360deg);
    animation: wo-glass-spin 12s linear infinite;
    z-index: 0;
    pointer-events: none;
}

/* Top-left specular highlight */
.wo-badge__inner::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 12%;
    width: 45%;
    height: 30%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
    transform: rotate(-20deg);
    z-index: 0;
    pointer-events: none;
}

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

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

/* Oppty logo inside badge */
.wo-badge__logo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.15) contrast(1.08) drop-shadow(0 0 18px rgba(242, 101, 34, 0.6)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    animation: wo-logo-float 4s ease-in-out infinite;
}

@keyframes wo-logo-float {

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

    50% {
        transform: translateY(-6px) scale(1.04);
    }
}

@keyframes wo-star-glow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(242, 101, 34, 0.6));
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        filter: drop-shadow(0 0 30px rgba(242, 101, 34, 1));
    }
}

/* Mini floating badges */
.wo-mini {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1.5px rgba(242, 101, 34, 0.35) inset;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    padding: 7px;
}

.wo-mini:hover {
    transform: scale(1.18) rotate(-4deg);
    box-shadow:
        0 18px 44px rgba(242, 101, 34, 0.45),
        0 0 0 2px rgba(242, 101, 34, 0.6) inset;
}

/* Product logo images inside mini badges */
.wo-mini--product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.wo-mini svg {
    width: 26px;
    height: 26px;
}

/* Inner ring — 4 products */
.wo-mini--1 {
    top: 8%;
    left: 12%;
    animation: wo-mini-float 5s ease-in-out infinite;
}

.wo-mini--2 {
    top: 8%;
    right: 12%;
    animation: wo-mini-float 6s ease-in-out infinite 1s;
}

.wo-mini--3 {
    bottom: 18%;
    left: 5%;
    animation: wo-mini-float 5.5s ease-in-out infinite 0.5s;
}

.wo-mini--4 {
    bottom: 18%;
    right: 5%;
    animation: wo-mini-float 7s ease-in-out infinite 1.5s;
}

/* Outer ring — 4 more products */
.wo-mini--5 {
    top: 42%;
    left: -4%;
    animation: wo-mini-float 6.5s ease-in-out infinite 0.3s;
}

.wo-mini--6 {
    top: 42%;
    right: -4%;
    animation: wo-mini-float 5.8s ease-in-out infinite 0.8s;
}

.wo-mini--7 {
    top: -2%;
    left: 40%;
    animation: wo-mini-float 5.2s ease-in-out infinite 1.2s;
}

.wo-mini--8 {
    bottom: 2%;
    left: 38%;
    animation: wo-mini-float 6.2s ease-in-out infinite 0.6s;
}

@keyframes wo-mini-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}

/* Stats overlay */
.wo-stat-overlay {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    border-radius: 100px;
    box-shadow:
        0 16px 40px rgba(242, 101, 34, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    z-index: 4;
    white-space: nowrap;
}

.wo-stat-overlay__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.wo-stat-overlay__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* RIGHT: CONTENT SIDE */
.wo-content {
    display: flex;
    flex-direction: column;
}

/* Eyebrow */
.wo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wo-eyebrow__line {
    width: 36px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--orange);
}

.wo-eyebrow__text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3.5px;
    color: var(--orange);
    text-transform: uppercase;
}

/* Heading */
.wo-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.wo-heading__accent {
    background: linear-gradient(135deg, #fb923c 0%, #f26522 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 40px rgba(242, 101, 34, 0.4);
}

/* Subtitle */
.wo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0 0 36px;
    max-width: 500px;
}

/* Benefits list */
.wo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wo-item {
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: linear-gradient(135deg,
            rgba(15, 31, 92, 0.5) 0%,
            rgba(10, 24, 69, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        background 0.3s ease;
}

.wo-item::before {
    content: '';
    position: absolute;
    top: var(--mouse-y);
    left: var(--mouse-x);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(242, 101, 34, 0.2) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.wo-item:hover {
    transform: translateX(8px);
    border-color: rgba(242, 101, 34, 0.5);
    background: linear-gradient(135deg,
            rgba(15, 31, 92, 0.7) 0%,
            rgba(10, 24, 69, 0.8) 100%);
}

.wo-item:hover::before {
    opacity: 1;
}

/* Check icon */
.wo-item__check {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(242, 101, 34, 0.15) 0%,
            rgba(242, 101, 34, 0.05) 100%);
    border: 1.5px solid rgba(242, 101, 34, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wo-item:hover .wo-item__check {
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(242, 101, 34, 0.5);
}

.wo-item__check svg {
    width: 22px;
    height: 22px;
}

/* Content */
.wo-item__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.wo-item__content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.1px;
    transition: color 0.3s ease;
}

.wo-item:hover .wo-item__content h4 {
    color: #fff;
}

/* Arrow */
.wo-item__arrow {
    position: relative;
    z-index: 1;
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wo-item:hover .wo-item__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* REVEAL ANIMATIONS */
[data-wo-reveal] {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-wo-reveal="fade-up"] {
    transform: translateY(20px);
}

[data-wo-reveal="fade-left"] {
    transform: translateX(30px);
}

[data-wo-reveal="fade-right"] {
    transform: translateX(-60px);
}

.wo-revealed[data-wo-reveal] {
    opacity: 1 !important;
    transform: none !important;
}

/* Fallback */
.why-oppty [data-wo-reveal]:not(.wo-revealed) {
    animation: wo-auto-reveal 0.1s linear 2.5s forwards;
}

@keyframes wo-auto-reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .wo-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .wo-visual {
        order: -1;
        min-height: 400px;
    }

    .wo-visual__wrap {
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .why-oppty {
        padding: 80px 0;
    }

    .wo-container {
        padding: 0 20px;
    }

    .wo-visual__wrap {
        max-width: 300px;
    }

    .wo-badge {
        width: 150px;
        height: 150px;
    }

    .wo-badge__inner svg {
        width: 70px;
        height: 70px;
    }

    .wo-mini {
        width: 44px;
        height: 44px;
    }

    .wo-mini svg {
        width: 22px;
        height: 22px;
    }

    .wo-stat-overlay {
        padding: 12px 20px;
    }

    .wo-stat-overlay__num {
        font-size: 20px;
    }

    .wo-list {
        gap: 10px;
    }

    .wo-item {
        padding: 16px 18px;
        gap: 14px;
    }

    .wo-item__check {
        width: 38px;
        height: 38px;
    }

    .wo-item__check svg {
        width: 18px;
        height: 18px;
    }

    .wo-item__content h4 {
        font-size: 14px;
    }

    .wo-orb--orange,
    .wo-orb--blue {
        width: 300px;
        height: 300px;
    }
}

/* BRAND ESSENCE SECTION  DARK BLUE/ORANGE/WHITE */
.brand-essence {
    position: relative;
    background: linear-gradient(160deg,
            #060c18 0%,
            #0a1428 40%,
            #0d1a35 70%,
            #060c18 100%);
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
}

/* ANIMATED BACKGROUND */
.be-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.be-bg__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(26, 107, 204, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 90%, rgba(242, 101, 34, 0.12) 0%, transparent 60%);
}

.be-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 107, 204, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 107, 204, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Floating shapes */
.be-shape {
    position: absolute;
    border-radius: 12px;
}

.be-shape--1 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 8%;
    border: 1.5px solid rgba(242, 101, 34, 0.2);
    background: rgba(242, 101, 34, 0.02);
    animation: be-shape-float 8s ease-in-out infinite;
}

.be-shape--2 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 5%;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.3);
    animation: be-shape-rotate 25s linear infinite;
}

.be-shape--3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 12%;
    border: 1.5px solid rgba(242, 101, 34, 0.2);
    transform: rotate(45deg);
    animation: be-shape-float 7s ease-in-out infinite 0.5s;
}

@keyframes be-shape-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes be-shape-rotate {
    from {
        transform: rotate(0deg);
    }

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

/* Glowing orbs */
.be-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.be-orb--orange {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.45) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: be-orb-drift 18s ease-in-out infinite alternate;
}

.be-orb--blue {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 107, 204, 0.5) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: be-orb-drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes be-orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.15);
    }
}

/* SIDE SVG DECORATIONS */
.be-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 700px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.be-side.is-visible {
    opacity: 1;
}

.be-side--left {
    left: 0;
}

.be-side--right {
    right: 0;
}

.be-side__svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hide on small screens where there's no room */
@media (max-width: 1300px) {
    .be-side {
        width: 80px;
    }
}

@media (max-width: 1100px) {
    .be-side {
        display: none;
    }
}

/* CONTAINER */
.be-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

/* BLOCK */
.be-block {
    margin-bottom: 48px;
}

.be-block:last-child {
    margin-bottom: 0;
}

/* HEADER */
.be-header {
    margin-bottom: 32px;
}

.be-header__line {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #fb923c);
    border-radius: 2px;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.4);
}

.be-header__title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin: 0;
}

/* DIVIDER */
.be-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%, rgba(26, 107, 204, 0.25) 50%, transparent 100%);
    margin: 48px 0;
}

/* BRAND ESSENCE CARDS */
.be-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.be-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(26, 107, 204, 0.2);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.be-card:hover {
    transform: translateX(8px) translateY(-4px);
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(242, 101, 34, 0.2);
}

.be-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.be-card:hover .be-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.be-card__icon svg {
    width: 28px;
    height: 28px;
}

/* Blue icon - Who We Are */
.be-card__icon--blue {
    background: rgba(26, 107, 204, 0.2);
    border: 2px solid rgba(26, 107, 204, 0.5);
    color: #60a5fa;
    box-shadow: 0 6px 20px rgba(26, 107, 204, 0.3);
}

.be-card:hover .be-card__icon--blue {
    background: linear-gradient(135deg, #1a6bcc 0%, #0f3d7a 100%);
    color: #fff;
    border-color: #3b8fe8;
    box-shadow: 0 12px 32px rgba(26, 107, 204, 0.5);
}

/* Orange icon - What We Do */
.be-card__icon--orange {
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    box-shadow: 0 8px 24px rgba(242, 101, 34, 0.4);
}

.be-card:hover .be-card__icon--orange {
    box-shadow: 0 12px 32px rgba(242, 101, 34, 0.6);
}

/* Green icon - What We Believe */
.be-card__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.be-card:hover .be-card__icon--green {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
}

.be-card__content {
    flex: 1;
    padding-top: 4px;
}

.be-card__content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.be-card:hover .be-card__content h4 {
    color: var(--orange);
}

.be-card__content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

/* BRAND PROMISE */
.be-promise {
    position: relative;
    padding: 48px 56px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(26, 107, 204, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.be-promise:hover {
    border-color: rgba(242, 101, 34, 0.45);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(242, 101, 34, 0.2);
}

.be-promise__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%,
            rgba(26, 107, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.be-promise:hover .be-promise__bg {
    opacity: 1;
}

/* Corner decorations */
.be-promise__corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--orange);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.be-promise__corner--tl {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.be-promise__corner--br {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
}

.be-promise:hover .be-promise__corner {
    opacity: 1;
    width: 44px;
    height: 44px;
}

.be-promise__content {
    position: relative;
    z-index: 1;
}

.be-promise__line {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.be-promise__static {
    color: rgba(255, 255, 255, 0.9);
}

.be-promise__accent {
    background: linear-gradient(135deg, #fb923c 0%, #f26522 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(242, 101, 34, 0.4));
    position: relative;
}

/* BRAND PERSONALITY */
.be-personality {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.be-tag {
    --x: 50%;
    --y: 50%;
    position: relative;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(26, 107, 204, 0.3);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    letter-spacing: 0.2px;
}

.be-tag::before {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.be-tag:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    border-color: var(--orange);
    box-shadow:
        0 12px 28px rgba(242, 101, 34, 0.4),
        0 0 0 1px var(--orange);
}

.be-tag:hover::before {
    width: 400px;
    height: 400px;
}

.be-personality__caption {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 16px 0 0;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* FINAL BLOCK */
.be-block--final {
    text-align: left;
}

.be-final__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 700px;
}

.be-final__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.be-final__static {
    color: rgba(255, 255, 255, 0.9);
}

.be-final__accent {
    background: linear-gradient(135deg, #fb923c 0%, #f26522 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(242, 101, 34, 0.4));
}

.be-final__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    margin-left: 4px;
    box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(242, 101, 34, 0.5);
    animation: be-dot-pulse 2s ease-in-out infinite;
}

@keyframes be-dot-pulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* REVEAL ANIMATIONS */
[data-be-reveal] {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-be-reveal="fade-up"] {
    transform: translateY(20px);
}

[data-be-reveal="zoom-in"] {
    transform: scale(0.8);
}

.be-revealed[data-be-reveal] {
    opacity: 1 !important;
    transform: none !important;
}

/* Fallback */
.brand-essence [data-be-reveal]:not(.be-revealed) {
    animation: be-auto-reveal 0.1s linear 3s forwards;
}

@keyframes be-auto-reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brand-essence {
        padding: 80px 0;
    }

    .be-container {
        padding: 0 24px;
    }

    .be-block {
        margin-bottom: 36px;
    }

    .be-divider {
        margin: 36px 0;
    }

    .be-card {
        padding: 20px 22px;
        gap: 16px;
    }

    .be-card__icon {
        width: 52px;
        height: 52px;
    }

    .be-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .be-card__content h4 {
        font-size: 16px;
    }

    .be-card__content p {
        font-size: 13px;
    }

    .be-promise {
        padding: 32px 28px;
    }

    .be-promise__line {
        font-size: 22px;
        gap: 10px;
    }

    .be-tag {
        padding: 10px 20px;
        font-size: 13px;
    }

    .be-final__tagline {
        font-size: 20px;
    }

    .be-orb--orange,
    .be-orb--blue {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .be-promise__line {
        font-size: 20px;
        flex-wrap: wrap;
    }
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: #0d0f12;
    padding: 80px 0 72px;
    overflow: hidden;
    position: relative;
}

/* Header */
.testi-header {
    text-align: center;
    margin-bottom: 52px;
    padding: 0 24px;
}

.testi-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

.testi-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0;
}

.testi-heading span {
    color: var(--orange);
}

/* Marquee wrapper */
.testi-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 12px 0 4px;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testi-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testi-scroll 100s linear infinite;
}

.testi-marquee-wrap:hover .testi-marquee {
    animation-play-state: paused;
}

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

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

/* Individual card */
.testi-card {
    flex: 0 0 320px;
    width: 320px;
    background: #1a1c22;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.testi-card:hover {
    border-color: rgba(242, 101, 34, 0.4);
    transform: translateY(-4px);
}

/* Big decorative quote mark */
.testi-quote {
    font-family: Georgia, serif;
    font-size: 96px;
    line-height: 0.6;
    color: rgba(242, 101, 34, 0.12);
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.testi-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.testi-name span {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.testi-stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

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

.testi-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 560px) {
    .testimonials {
        padding: 60px 0 52px;
    }

    .testi-card {
        flex: 0 0 280px;
        width: 280px;
    }
}

/* OUR CLIENTS SECTION */
.clients {
    background: #ffffff;
    padding: 72px 0 80px;
}

/* Section heading */
.clients-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 48px;
}

.clients-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 10px;
}

.clients-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: #111;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
}

.clients-heading-line {
    width: 48px;
    height: 4px;
    background: #fa7821;
    border-radius: 2px;
    margin: 0 auto 18px;
}

.clients-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

/* Grid wrapper */
.clients-grid-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

/* Individual cell */
.client-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
    transition: background 0.22s ease;
}

/* Remove right border on last column, bottom border on last row */
.client-cell:nth-child(4n) {
    border-right: none;
}

.client-cell:nth-last-child(-n+4) {
    border-bottom: none;
}

.client-cell:hover {
    background: #f8f9fb;
}

/* Logo image with zoom-out hover */
.client-cell img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(1.12);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.client-cell:hover img {
    transform: scale(1.0);
}

/* Clients responsive */
@media (max-width: 860px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-cell:nth-child(4n) {
        border-right: 1px solid #e0e0e0;
    }

    .client-cell:nth-last-child(-n+4) {
        border-bottom: 1px solid #e0e0e0;
    }

    .client-cell:nth-child(2n) {
        border-right: none;
    }

    .client-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 540px) {
    .clients {
        padding: 52px 0 60px;
    }

    .clients-header {
        padding: 0 18px;
        margin-bottom: 32px;
    }

    .clients-grid-wrap {
        padding: 0 18px;
    }

    .client-cell {
        padding: 28px 18px;
    }

    .client-cell img {
        max-width: 100px;
        max-height: 40px;
    }
}

/* FOOTER */
.footer {
    position: relative;
    background: #0b0d12;
    color: rgba(255, 255, 255, 0.55);
    overflow: visible;
}

/* SVG background layer */
.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Orbs  slow drift */
.fo {
    will-change: transform;
}

.fo--1 {
    animation: fo-d1 16s ease-in-out infinite alternate;
    filter: blur(72px);
}

.fo--2 {
    animation: fo-d2 20s ease-in-out infinite alternate;
    filter: blur(80px);
}

.fo--3 {
    animation: fo-d1 13s ease-in-out infinite alternate-reverse;
    filter: blur(60px);
}

@keyframes fo-d1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 28px) scale(1.1);
    }
}

@keyframes fo-d2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-32px, -22px) scale(1.08);
    }
}

/* Rings  spin */
.fr {
    will-change: transform;
    transform-box: fill-box;
    transform-origin: center;
}

.fr--a {
    animation: fr-spin 36s linear infinite;
}

.fr--b {
    animation: fr-spin 26s linear infinite reverse;
}

.fr--c {
    animation: fr-spin 48s linear infinite;
}

@keyframes fr-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Ghost watermark */
.footer-watermark {
    position: relative;
    display: block;
    text-align: center;
    padding: 16px 0 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(100px, 22vw, 280px);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1.2;
    overflow: visible;
    /* clip only horizontal overflow, never vertical */
    clip-path: none;
}

/* All content above bg */
.footer-topline,
.footer-main,
.footer-mid-divider,
.footer-bottom {
    position: relative;
    z-index: 1;
}

/* Top gradient line */
.footer-topline {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(242, 101, 34, 0.55) 25%,
            rgba(168, 85, 247, 0.40) 50%,
            rgba(59, 130, 246, 0.45) 75%,
            transparent 100%);
}

/* Main grid */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 48px 52px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 52px;
    align-items: start;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Logo + name inline  Nova style */
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
    width: fit-content;
}

.footer-logo-icon {
    width: 140px;
    height: 56px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(242, 101, 34, 0.25), 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.25s, transform 0.25s;
}

.footer-logo-wrap:hover .footer-logo-icon {
    box-shadow: 0 0 0 1.5px rgba(242, 101, 34, 0.55), 0 6px 22px rgba(242, 101, 34, 0.22);
    transform: translateY(-2px);
}

.footer-logo-icon img {
    width: 120px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.footer-logo-wrap:hover .footer-brand-name {
    color: var(--orange);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 22px;
    font-style: italic;
}

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.55;
    margin: 0;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
    color: rgba(242, 101, 34, 0.75);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--orange);
}

/* Nav columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.88);
    padding-left: 5px;
}

/* Mid divider */
.footer-mid-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

/* Bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 48px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 8px;
}

.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}

.fsoc:hover {
    background: rgba(242, 101, 34, 0.12);
    border-color: rgba(242, 101, 34, 0.45);
    color: var(--orange);
    transform: translateY(-3px);
}

.fsoc svg {
    width: 14px;
    height: 14px;
}

/* Copyright */
.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.28);
    margin: 0;
}

.footer-copy strong {
    color: var(--orange);
    font-weight: 700;
}

/* Legal links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.70);
}

.fl-sep {
    color: rgba(255, 255, 255, 0.15);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 52px 32px 44px;
    }

    .footer-bottom {
        padding: 18px 32px 26px;
    }

    .footer-mid-divider {
        margin: 0 32px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 20px 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 20px 24px;
    }

    .footer-mid-divider {
        margin: 0 20px;
    }

    .footer-watermark {
        font-size: clamp(60px, 12vw, 150px);
        line-height: 1.2;
        padding-bottom: 20px;
    }
}

/* PORTFOLIO SECTION */
.portfolio {
    background: #fff;
    padding: 72px 0 80px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 48px;
}

.portfolio-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #111;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
}

.portfolio-heading-line {
    width: 48px;
    height: 4px;
    background: #ff7b00;
    border-radius: 2px;
    margin: 0 auto 16px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.portfolio-header.is-revealed .portfolio-heading-line {
    transform: scaleX(1);
}

.portfolio-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #888;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Filter buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.pf-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 100px;
    border: 1.5px solid #d0d4da;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.pf-btn.active,
.pf-btn:hover {
    background: #ff7300;
    border-color: #414141;
    color: #fff;
}

/* Masonry grid */
.portfolio-grid {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.pg-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pg-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    cursor: pointer;
}

.pg-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pg-item--tall img {
    height: 320px;
}

.pg-item:hover img {
    transform: scale(1.06);
}

/* Overlay */
.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 18, 0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pg-item:hover .pg-overlay {
    opacity: 1;
    transform: translateY(0);
}

.pg-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.pg-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-top: 3px;
}

/* hidden filter state */
.pg-item.pf-hidden {
    display: none;
}

/* Portfolio responsive */
@media (max-width: 860px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 28px;
    }
}

@media (max-width: 520px) {
    .portfolio {
        padding: 52px 0 60px;
    }

    .portfolio-header {
        padding: 0 18px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }
}

/* SERVICES ZIG-ZAG SECTION */
.services {
    background: #f8f9fb;
    padding: 72px 0 80px;
}

.services-zz {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each zig-zag row */
.zz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
}

.zz-row:last-child {
    border-bottom: none;
}

/* Reversed row: text comes first in DOM but swaps visually */
.zz-row--rev .zz-img {
    order: 2;
}

.zz-row--rev .zz-text {
    order: 1;
}

/* Image side */
.zz-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    line-height: 0;
}

.zz-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zz-row:hover .zz-img img {
    transform: scale(1.04);
}

/* Service badge on image */
.zz-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Text side */
.zz-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zz-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zz-icon svg {
    width: 26px;
    height: 26px;
}

.zz-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
}

.zz-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.zz-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.zz-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.zz-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zz-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* Services responsive */
@media (max-width: 860px) {
    .services-zz {
        padding: 0 28px;
    }

    .zz-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 44px 0;
    }

    .zz-row--rev .zz-img {
        order: 0;
    }

    .zz-row--rev .zz-text {
        order: 0;
    }

    .zz-img img {
        height: 260px;
    }
}

@media (max-width: 520px) {
    .services {
        padding: 52px 0 60px;
    }

    .services-zz {
        padding: 0 18px;
    }

    .zz-img img {
        height: 220px;
    }
}

/* NAV DROPDOWN  OUR SERVICES */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    cursor: pointer;
    transition: color 0.25s;
    background: none;
    border: none;
    white-space: nowrap;
}

.nav-dropdown__toggle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width 0.25s;
}

.nav-dropdown.open .nav-dropdown__toggle,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.active {
    color: var(--white);
}

.nav-dropdown.open .nav-dropdown__toggle::after,
.nav-dropdown__toggle.active::after,
.nav-dropdown__toggle.nav-active::after {
    width: calc(100% - 18px);
    background: var(--orange);
}

/* past-hero: keep text white, underline stays */
header.past-hero .nav-dropdown__toggle {
    color: rgba(255, 255, 255, 0.7);
}

header.past-hero .nav-dropdown.open .nav-dropdown__toggle,
header.past-hero .nav-dropdown__toggle.active {
    color: #fff;
}

/* Arrow icon */
.nav-dropdown__arrow {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown__arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 220px;
    background: rgba(12, 14, 18, 0.96);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

/* Arrow caret pointing up */
.nav-dropdown__menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: rgba(12, 14, 18, 0.96);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-dropdown.open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown__menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s ease;
    letter-spacing: 0;
    /* reset nav uppercase spacing */
    text-transform: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.nav-dropdown__menu li a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.nav-dropdown__menu li a::after {
    display: none;
    /* remove underline pseudo-element from nav a */
}

/* Icon circles */
.dd-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dd-icon svg {
    width: 16px;
    height: 16px;
}

.dd-icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.dd-icon--orange {
    background: rgba(242, 101, 34, 0.15);
    color: var(--orange);
}

.dd-icon--green {
    background: rgba(76, 175, 125, 0.15);
    color: #4caf7d;
}

.dd-icon--purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.dd-label {
    flex: 1;
    line-height: 1.3;
}

/* Separator line between items */
.nav-dropdown__menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* MOBILE NAV DROPDOWN */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-dropdown__toggle:hover {
    color: var(--white);
}

.mobile-dropdown__arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mobile-dropdown.open .mobile-dropdown__arrow {
    transform: rotate(180deg);
}

.mobile-dropdown__menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.mobile-dropdown.open .mobile-dropdown__menu {
    max-height: 300px;
}

.mobile-dropdown__menu li a {
    display: block;
    padding: 10px 0 10px 16px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s;
}

.mobile-dropdown__menu li a:hover {
    color: var(--orange);
}

.mobile-dropdown__menu li a::after {
    display: none;
}

/* HERO  4 PRODUCT CARDS */
.hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    height: auto !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 90px 60px 60px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: #07080f !important;
}

/* Scene background wrapper */
.hero-scene-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Stars canvas */
.hero-stars-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Orange glow  bottom left (matching reference image) */
.hero-glow--orange {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(210, 80, 10, 0.65) 0%,
        rgba(180, 55, 5, 0.35) 35%,
        transparent 68%);
    filter: blur(80px);
    z-index: 2;
    animation: glowPulseOrange 7s ease-in-out infinite alternate;
}

/* Blue glow  top right */
.hero-glow--blue {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 650px;
    background: radial-gradient(ellipse at center,
        rgba(25, 55, 200, 0.55) 0%,
        rgba(15, 35, 150, 0.28) 40%,
        transparent 68%);
    filter: blur(90px);
    z-index: 2;
    animation: glowPulseBlue 9s ease-in-out infinite alternate;
}

/* Purple glow  center-right blend */
.hero-glow--purple {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 500px;
    height: 450px;
    background: radial-gradient(ellipse at center,
        rgba(90, 25, 170, 0.35) 0%,
        rgba(60, 15, 130, 0.15) 45%,
        transparent 68%);
    filter: blur(70px);
    z-index: 2;
    animation: glowPulsePurple 11s ease-in-out infinite alternate;
}

@keyframes glowPulseOrange {
    0%   { opacity: 0.80; transform: scale(1)    translate(0, 0); }
    100% { opacity: 1.00; transform: scale(1.12) translate(20px, -15px); }
}
@keyframes glowPulseBlue {
    0%   { opacity: 0.70; transform: scale(1)    translate(0, 0); }
    100% { opacity: 0.95; transform: scale(1.10) translate(-15px, 20px); }
}
@keyframes glowPulsePurple {
    0%   { opacity: 0.60; transform: scale(1)    translate(0, 0); }
    100% { opacity: 0.85; transform: scale(1.08) translate(10px, -10px); }
}

/* Subtle dot-grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 20%, transparent 80%);
}














/* ═══════════════════════════════════════
   HERO BACKGROUND UPGRADE
   (reuses existing wo-mesh-drift / wo-rays-spin /
   wo-particle-float keyframes already defined
   for .why-oppty-hero — zero new animation logic)
════════════════════════════════════════ */

.hero-mesh-layer {
    position: absolute;
    inset: -20%;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(210, 80, 10, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(25, 55, 200, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(90, 25, 170, 0.12) 0%, transparent 50%);
    animation: wo-mesh-drift 22s ease-in-out infinite;
    filter: blur(12px);
}

.hero-rays-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: conic-gradient(from 0deg at 50% 50%,
        transparent 0deg, rgba(210, 80, 10, 0.05) 15deg, transparent 40deg,
        transparent 180deg, rgba(25, 55, 200, 0.05) 200deg, transparent 230deg, transparent 360deg);
    animation: wo-rays-spin 90s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.55;
}

.hero-particles-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}
.hero-particles-layer span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.6);
    box-shadow: 0 0 8px rgba(242, 101, 34, 0.5);
    animation: wo-particle-float linear infinite;
}
.hero-particles-layer span:nth-child(odd) {
    background: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}
.hero-particles-layer span:nth-child(1) { left: 8%;  bottom: -10px; animation-duration: 15s; animation-delay: 0s; }
.hero-particles-layer span:nth-child(2) { left: 20%; bottom: -10px; animation-duration: 19s; animation-delay: 2s; }
.hero-particles-layer span:nth-child(3) { left: 35%; bottom: -10px; animation-duration: 13s; animation-delay: 1s; }
.hero-particles-layer span:nth-child(4) { left: 50%; bottom: -10px; animation-duration: 21s; animation-delay: 4s; }
.hero-particles-layer span:nth-child(5) { left: 62%; bottom: -10px; animation-duration: 17s; animation-delay: 0.5s; }
.hero-particles-layer span:nth-child(6) { left: 74%; bottom: -10px; animation-duration: 22s; animation-delay: 3s; }
.hero-particles-layer span:nth-child(7) { left: 84%; bottom: -10px; animation-duration: 14s; animation-delay: 1.5s; }
.hero-particles-layer span:nth-child(8) { left: 92%; bottom: -10px; animation-duration: 18s; animation-delay: 5s; }
.hero-particles-layer span:nth-child(9) { left: 15%; bottom: -10px; animation-duration: 20s; animation-delay: 2.5s; }
.hero-particles-layer span:nth-child(10){ left: 68%; bottom: -10px; animation-duration: 16s; animation-delay: 1s; }

/* Landing-page context chips, floating quietly at hero edges (not overlapping cards) */
.hero-ctx-ring {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.hero-ctx-chip {    
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.85);
    background: rgba(7, 8, 15, 0.65);
    border: 1px solid rgba(242, 101, 34, 0.32);
    padding: 6px 13px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    animation: wo-mini-float 6s ease-in-out infinite;
    white-space: nowrap;
}
.hero-ctx-chip--1 { top: 8%;  left: 3%;  animation-delay: 0s; }


@media (max-width: 991px) {
    .hero-ctx-chip { display: none; }
}

















/* Make sure hero content sits above background */
.hero > .outer {
    position: relative !important;
    z-index: 10 !important;
}

.hero .brand-story,
.hero .product-ecosystem,
.hero .ecosystem-grid,
.hero .premium-card {
    position: relative !important;
    z-index: 10 !important;
}

/* Hero background video (legacy, unused) */
.hero-bg-video {
    display: none;
}

.hero-bg-overlay {
    display: none;
}

/* Subtle animated shimmer on top of video */
.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background:
        radial-gradient(circle at 25% 35%, rgba(242, 101, 34, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 75% 55%, rgba(59, 130, 246, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
    animation: auroraDrift 16s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes auroraDrift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(3%, -2%) scale(1.05) rotate(2deg);
    }

    66% {
        transform: translate(-2%, 3%) scale(1.02) rotate(-1deg);
    }

    100% {
        transform: translate(1%, -1%) scale(1.04) rotate(1.5deg);
    }
}

/* Tech grid overlay */
.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* 4-card single-row grid */
.hero-cards-wrap {
    /* Inside the carousel stage  grid layout is replaced by absolute positioning via JS */
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    max-width: unset !important;
    z-index: 2;
}

/* Single card  glassmorphic */
.hc {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    /* transition handled by carousel state classes */
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease,
        box-shadow 0.55s ease;
    /* start invisible; carousel JS assigns cr-active etc. which sets opacity */
    opacity: 0;
    will-change: transform, opacity, filter;
}

/* Old cardEnter / cardWave animation stubs  removed (carousel handles motion) */
.hc:nth-child(1),
.hc:nth-child(2),
.hc:nth-child(3),
.hc:nth-child(4) {
    animation-delay: unset;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateZ(0px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateZ(0px) scale(1);
    }
}

/* cardWave removed  conflicts with carousel transforms */

/* Hover glow only applies when card is active in carousel */
.hc-carousel__stage .hc.cr-active:hover {
    box-shadow:
        0 0 0 1.5px rgba(242, 101, 34, 0.45),
        0 12px 48px rgba(242, 101, 34, 0.28),
        0 40px 96px rgba(0, 0, 0, 0.55);
}

/* Animated gradient border glow (pseudo-element approach) */
.hc::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 0deg,
            rgba(242, 101, 34, 0.6),
            transparent 15%,
            transparent 40%,
            rgba(59, 130, 246, 0.5),
            transparent 55%,
            transparent 85%,
            rgba(242, 101, 34, 0.6));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: borderSpin 4s linear infinite;
}

.hc:hover::before {
    opacity: 1;
}

@keyframes borderSpin {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}

/* Card inner (clips content, allows border glow outside) */
.hc__inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(8, 10, 16, 0.85);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transform-style: preserve-3d;
}

/* Shine sweep on hover */
.hc__shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.06) 45%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.06) 55%,
            transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hc:hover .hc__shine {
    transform: translateX(100%);
}

/* Header (title + label) */
.hc__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px 10px;
    flex-shrink: 0;
}

/* Label badge */
.hc__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background: var(--orange);
    border-radius: 6px;
    padding: 0 6px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(242, 101, 34, 0.40);
}

/* Title */
.hc__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Orange underline accent */
.hc__title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc:hover .hc__title::after {
    width: 40px;
}

/* Image side */
.hc__img-side {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Content side */
.hc__content-side {
    flex: 1;
    padding: 12px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
}

.hc__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.hc__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hc__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.1s linear;
    z-index: 0;
}

.hc__slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.hc__slide.leaving {
    opacity: 1;
    transform: translateY(-100%);
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

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

/* Dots inside image */
.hc__slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.hc__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    transition: background 0.3s, width 0.3s, box-shadow 0.3s;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.hc__dot.active {
    background: var(--orange);
    width: 18px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(242, 101, 34, 0.50);
}

/* Text slider inside content */
.hc__text-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex: 1;
}

.hc__text-slides {
    position: relative;
    width: 100%;
    min-height: 60px;
}

.hc__text-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 0;
}

.hc__text-slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
    position: relative;
}

.hc__text-slide.leaving {
    opacity: 0;
    transform: translateY(-12px);
    z-index: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hc__desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* Explore button */
.hc__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    transition: gap 0.25s, color 0.2s, background 0.25s, box-shadow 0.25s;
    align-self: flex-start;
    background: rgba(242, 101, 34, 0.08);
    border: 1px solid rgba(242, 101, 34, 0.30);
    padding: 7px 14px;
    border-radius: 100px;
    margin-top: 2px;
}

.hc__btn:hover {
    gap: 12px;
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(242, 101, 34, 0.35);
}

.hc__btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-cards-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .hc__slider {
        height: 180px;
    }

    .hc__title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 80px 16px 40px !important;
    }

    .hero-cards-wrap {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .hc__slider {
        height: 160px;
    }

    .hc__content-side {
        padding: 14px 16px 14px;
    }

    .hc__title {
        font-size: 16px;
    }
}

/* CARD CAROUSEL  full-width single card, creative wipe transition */

/* Carousel region */
.hc-carousel {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Stage: single-card viewport, no perspective needed */
.hc-carousel__stage {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    /* clips entering/exiting cards */
    border-radius: 24px;
}

/* Legacy grid wrapper: transparent container */
#heroCardsWrap {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    grid-template-columns: unset !important;
    gap: 0 !important;
    max-width: unset !important;
}

/* Base card state: hidden off-right */
.hc-carousel__stage .hc {
    position: absolute;
    inset: 0;
    width: 100% !important;
    left: 0 !important;
    height: 100%;
    margin: 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    animation: none !important;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.5s ease,
        clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform, opacity;
    border-radius: 20px;
    overflow: hidden;
}

/* ACTIVE card  visible, centred */
.hc-carousel__stage .hc.cr-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 10;
    box-shadow:
        0 0 0 1px rgba(242, 101, 34, 0.35),
        0 8px 40px rgba(242, 101, 34, 0.22),
        0 32px 80px rgba(0, 0, 0, 0.65);
}

/* Entering from right (next) */
.hc-carousel__stage .hc.cr-enter-right {
    opacity: 0;
    transform: translateX(100%);
    z-index: 9;
}

/* Entering from left (prev) */
.hc-carousel__stage .hc.cr-enter-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 9;
}

/* Exiting to left */
.hc-carousel__stage .hc.cr-exit-left {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 8;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.4s ease 0.15s;
}

/* Exiting to right */
.hc-carousel__stage .hc.cr-exit-right {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    z-index: 8;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.4s ease 0.15s;
}

/* All hidden cards */
.hc-carousel__stage .hc.cr-prev,
.hc-carousel__stage .hc.cr-next,
.hc-carousel__stage .hc.cr-far {
    opacity: 0;
    transform: translateX(110%);
    filter: none;
    z-index: 1;
    pointer-events: none;
}

/* Active card hover glow */
.hc-carousel__stage .hc.cr-active:hover {
    box-shadow:
        0 0 0 1.5px rgba(242, 101, 34, 0.55),
        0 12px 48px rgba(242, 101, 34, 0.30),
        0 40px 96px rgba(0, 0, 0, 0.65);
}

/* Navigation arrows */
.hc-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 10, 18, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.22s,
        border-color 0.22s,
        color 0.22s,
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.22s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hc-carousel__arrow svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hc-carousel__arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 28px rgba(242, 101, 34, 0.42);
}

.hc-carousel__arrow--prev {
    left: -56px;
}

.hc-carousel__arrow--next {
    right: -56px;
}

/* Dot indicators */
.hc-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 4px;
}

.hc-carousel__dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    overflow: hidden;
}

.hc-carousel__dot.active {
    width: 36px;
    border-radius: 4px;
    background: rgba(242, 101, 34, 0.3);
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.40);
}

/* animated fill sweep */
.hc-carousel__dot.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: var(--orange);
    animation: dotFill 3s linear forwards;
}

@keyframes dotFill {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Card number counter */
.hc-carousel__counter {
    position: absolute;
    top: -36px;
    right: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
}

.hc-carousel__counter span {
    color: var(--orange);
    font-size: 15px;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 640px) {
    .hc-carousel {
        max-width: 100%;
    }

    .hc-carousel__stage {
        height: 520px;
        border-radius: 16px;
    }

    .hc-carousel__arrow--prev {
        left: 4px;
        z-index: 25;
    }

    .hc-carousel__arrow--next {
        right: 4px;
        z-index: 25;
    }
}

@media (max-width: 480px) {
    .hc-carousel__stage {
        height: 560px;
    }

    .hc-carousel__arrow {
        width: 36px;
        height: 36px;
    }
}

/* HERO BACKGROUND  animated tech canvas */

/* Full-cover canvas wrapper */
.hero-bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* SVG fills viewport */
.hbg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Particle canvas on top of SVG */
.hbg-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Aurora blob drift */
.hbg-aurora--1 {
    animation: hbg-drift1 20s ease-in-out infinite alternate;
    transform-origin: center;
}

.hbg-aurora--2 {
    animation: hbg-drift2 26s ease-in-out infinite alternate;
    transform-origin: center;
}

.hbg-aurora--3 {
    animation: hbg-drift3 18s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes hbg-drift1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(60px, -40px) scale(1.12);
    }
}

@keyframes hbg-drift2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-50px, 50px) scale(1.08);
    }
}

@keyframes hbg-drift3 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -30px) scale(1.10);
    }
}

/* Floating geometric shapes */
.hbg-geo--1 {
    animation: hbg-float 8s ease-in-out infinite alternate;
}

.hbg-geo--2 {
    animation: hbg-float 11s ease-in-out infinite alternate-reverse;
}

.hbg-geo--3 {
    animation: hbg-spin 20s linear infinite;
    transform-origin: 200px 432px;
}

.hbg-geo--4 {
    animation: hbg-spin 35s linear infinite reverse;
    transform-origin: 1320px 680px;
}

.hbg-geo--5 {
    animation: hbg-float 9s ease-in-out infinite alternate;
}

.hbg-geo--6 {
    animation: hbg-pulse 3s ease-in-out infinite;
}

@keyframes hbg-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-18px);
    }
}

@keyframes hbg-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hbg-pulse {

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

    50% {
        opacity: 0.90;
        transform: scale(1.5);
    }
}

/* Scan line */
.hbg-scanline {
    animation: hbg-scan 6s linear infinite;
}

@keyframes hbg-scan {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        transform: translateY(910px);
        opacity: 0;
    }
}

/* Dot-grid subtle twinkle */
.hbg-grid {
    animation: hbg-twinkle 4s ease-in-out infinite alternate;
}

@keyframes hbg-twinkle {
    from {
        opacity: 0.12;
    }

    to {
        opacity: 0.26;
    }
}

/* Carousel: upgrade active card glow */
.hc-carousel__stage .hc.cr-active {
    box-shadow:
        0 0 0 1px rgba(242, 101, 34, 0.40),
        0 0 60px rgba(242, 101, 34, 0.20),
        0 0 120px rgba(242, 101, 34, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.65) !important;
}

/* dot progress matches 3s */
@keyframes dotProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hc-carousel__dot.active::after {
    animation: dotProgress 3s linear forwards !important;
}

/* Card visual section (replaces old hc__img-side) */
.hc__visual {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hcv-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* SVG animation helpers */
.hcv-node {
    animation: hcv-nod 2.5s ease-in-out infinite alternate;
}

.hcv-node--1 {
    animation-delay: 0s;
}

.hcv-node--2 {
    animation-delay: 0.4s;
}

.hcv-node--3 {
    animation-delay: 0.8s;
}

.hcv-node--4 {
    animation-delay: 1.2s;
}

@keyframes hcv-nod {
    from {
        filter: drop-shadow(0 0 3px currentColor);
    }

    to {
        filter: drop-shadow(0 0 10px currentColor);
    }
}

.hcv-pulse {
    animation: hcv-ring 2s ease-out infinite;
}

@keyframes hcv-ring {
    0% {
        r: 10;
        opacity: 0.8;
    }

    100% {
        r: 30;
        opacity: 0;
    }
}

.hcv-dash {
    animation: hcv-dashflow 3s linear infinite;
}

@keyframes hcv-dashflow {
    to {
        stroke-dashoffset: -20;
    }
}

/* chat bubbles fade-in stagger */
.hcv-bubble--2 {
    animation: hcv-fadein 0.5s ease 0.3s both;
}

.hcv-bubble--3 {
    animation: hcv-fadein 0.5s ease 0.7s both;
}

@keyframes hcv-fadein {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* typing dots bounce */
.hcv-typing {
    animation: hcv-bounce 1.2s ease-in-out infinite;
}

.hcv-typing--1 {
    animation-delay: 0s;
}

.hcv-typing--2 {
    animation-delay: 0.2s;
}

.hcv-typing--3 {
    animation-delay: 0.4s;
}

@keyframes hcv-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }
}

/* floating sparks */
.hcv-spark {
    animation: hcv-spark 3s ease-in-out infinite alternate;
}

.hcv-spark--1 {
    animation-delay: 0s;
    animation-duration: 2.8s;
}

.hcv-spark--2 {
    animation-delay: 0.7s;
    animation-duration: 3.4s;
}

.hcv-spark--3 {
    animation-delay: 1.4s;
    animation-duration: 2.5s;
}

@keyframes hcv-spark {
    from {
        opacity: 0.3;
        transform: translateY(0) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(-8px) scale(1.3);
    }
}

/* CRM rings spin */
.hcv-ring--1 {
    animation: hcv-ringspin 4s linear infinite;
    transform-origin: 283px 80px;
}

.hcv-ring--2 {
    animation: hcv-ringspin 6s linear infinite reverse;
    transform-origin: 283px 80px;
}

.hcv-ring--3 {
    animation: hcv-ringspin 3s linear infinite;
    transform-origin: 283px 80px;
}

@keyframes hcv-ringspin {
    to {
        stroke-dashoffset: -300;
    }
}

/* progress bars grow in */
.hcv-bar--1 {
    animation: hcv-barin 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hcv-bar--2 {
    animation: hcv-barin 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hcv-bar--3 {
    animation: hcv-barin 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hcv-bar--4 {
    animation: hcv-barin 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes hcv-barin {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* 3-D COVERFLOW CAROUSEL    professional theme
   4 cards always rendered: active=frontcentre,
   prev/next=sides (scaled+blurred), far=hidden behind */

/* Outer wrapper sits inside .hero flex column */
.cf-carousel {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 70px;
    box-sizing: border-box;
    user-select: none;
    overflow: hidden;
}

/* 3-D Stage */
.cf-stage {
    position: relative;
    width: 100%;
    height: 620px;
    perspective: 1400px;
    perspective-origin: 50% 40%;
    overflow: hidden;
}

/* CARD BASE */
.cf-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 420px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    /* body on top, image at bottom */
    cursor: pointer;

    /* glass-dark default */
    background: rgba(10, 14, 28, 0.88);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);

    /* smooth all transforms */
    transition:
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.7s ease,
        opacity 0.6s ease,
        box-shadow 0.7s ease,
        z-index 0s;
    will-change: transform, filter, opacity;

    /* default: hidden far-right */
    transform: translateX(-50%) translateX(180%) translateZ(-320px) scale(0.68);
    opacity: 0.10;
    filter: blur(8px) brightness(0.45);
    z-index: 1;
    pointer-events: none;
}

/* POSITION STATES */

/* Active card  front & centred */
.cf-card.is-active {
    transform: translateX(-50%) translateX(0) translateZ(0) scale(1);
    opacity: 1;
    filter: none;
    z-index: 10;
    pointer-events: auto;
    box-shadow:
        0 0 0 1px rgba(242, 101, 34, 0.45),
        0 8px 40px rgba(242, 101, 34, 0.22),
        0 24px 80px rgba(0, 0, 0, 0.70);
}

/* Previous  left side */
.cf-card.is-prev {
    transform: translateX(-50%) translateX(-72%) translateZ(-200px) scale(0.82) rotateY(8deg);
    opacity: 0.65;
    filter: blur(4px) brightness(0.58);
    z-index: 6;
    pointer-events: auto;
}

/* Next  right side */
.cf-card.is-next {
    transform: translateX(-50%) translateX(72%) translateZ(-200px) scale(0.82) rotateY(-8deg);
    opacity: 0.65;
    filter: blur(4px) brightness(0.58);
    z-index: 6;
    pointer-events: auto;
}

/* Far card  deepest behind */
.cf-card.is-far {
    transform: translateX(-50%) translateX(0) translateZ(-380px) scale(0.62);
    opacity: 0.12;
    filter: blur(12px) brightness(0.35);
    z-index: 1;
    pointer-events: none;
}

/* Hover lift on active only */
.cf-card.is-active:hover {
    box-shadow:
        0 0 0 1.5px rgba(242, 101, 34, 0.65),
        0 16px 56px rgba(242, 101, 34, 0.30),
        0 32px 96px rgba(0, 0, 0, 0.75);
    transform: translateX(-50%) translateX(0) translateZ(12px) scale(1.02);
}

/* Card image area  now a browser screenshot mockup */
.cf-card__screen {
    position: relative;
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    background: #0d1117;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* macOS-style browser bar */
.cf-screen__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #1c1f26;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    z-index: 3;
}

.cf-screen__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cf-screen__url {
    margin-left: 10px;
    font-family: 'Inter', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
    flex: 1;
    text-align: center;
}

/* Screenshot slides */
.cf-screen__slides {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.cf-ss {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: #0d1117;
}

.cf-ss.cf-ss--active {
    opacity: 1;
}

/* Brand badge  top-right of the entire card */
.cf-card__brand {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 7px 12px 7px 8px;
    z-index: 20;
    transform: translateY(-4px);
    opacity: 0;
    transition: opacity 0.5s ease 0.25s,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
    pointer-events: none;
}

.cf-card.is-active .cf-card__brand {
    opacity: 1;
    transform: translateY(0);
}

.cf-screen__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf-screen__icon svg {
    width: 26px;
    height: 26px;
}

.cf-screen__icon--blue {
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(37, 99, 235, 0.5);
}

.cf-screen__icon--purple {
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.5);
}

.cf-screen__icon--green {
    background: rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(22, 163, 74, 0.5);
}

.cf-screen__icon--orange {
    background: rgba(234, 88, 12, 0.25);
    border: 1px solid rgba(234, 88, 12, 0.5);
}

.cf-screen__brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cf-screen__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1;
}

.cf-screen__sub {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
}

/* Gradient fade at bottom of screenshot into card body */
.cf-screen__slides::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 28, 0.95));
    z-index: 2;
    pointer-events: none;
}

/* image dots */
.cf-card__img-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 4;
}

.cf-idot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    flex-shrink: 0;
}

.cf-idot.cf-idot--active {
    background: var(--orange);
    width: 16px;
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(242, 101, 34, 0.6);
}

/* Gradient overlay on image top (blends into body above) */
.cf-card__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, transparent, rgba(10, 14, 28, 0.92));
    z-index: 2;
    pointer-events: none;
}

/* Card body */
.cf-card__body {
    flex: 1;
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* tag line */
.cf-card__tag {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0.85;
}

/* title */
.cf-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

/* desc */
.cf-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* explore button */
.cf-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    background: rgba(242, 101, 34, 0.09);
    border: 1px solid rgba(242, 101, 34, 0.32);
    padding: 9px 18px;
    border-radius: 100px;
    align-self: flex-start;
    margin-top: auto;
    transition: background 0.22s, color 0.22s, gap 0.22s, box-shadow 0.22s;
}

.cf-card__btn:hover {
    background: var(--orange);
    color: #fff;
    gap: 13px;
    box-shadow: 0 4px 18px rgba(242, 101, 34, 0.4);
}

.cf-card__btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Orange corner-glow on active */
.cf-card__glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: conic-gradient(from 0deg,
            rgba(242, 101, 34, 0.55) 0deg,
            transparent 60deg,
            transparent 300deg,
            rgba(242, 101, 34, 0.55) 360deg);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
    animation: cf-glow-spin 4s linear infinite;
}

.cf-card.is-active .cf-card__glow {
    opacity: 1;
}

@keyframes cf-glow-spin {
    to {
        filter: hue-rotate(30deg);
    }
}

/* Glow colour variants */
.cf-card__glow--purple {
    background: conic-gradient(from 0deg,
            rgba(124, 58, 237, 0.6) 0deg,
            transparent 60deg,
            transparent 300deg,
            rgba(124, 58, 237, 0.6) 360deg);
}

.cf-card__glow--green {
    background: conic-gradient(from 0deg,
            rgba(22, 163, 74, 0.6) 0deg,
            transparent 60deg,
            transparent 300deg,
            rgba(22, 163, 74, 0.6) 360deg);
}

.cf-card__glow--orange {
    background: conic-gradient(from 0deg,
            rgba(234, 88, 12, 0.6) 0deg,
            transparent 60deg,
            transparent 300deg,
            rgba(234, 88, 12, 0.6) 360deg);
}

/* PRODUCT VISUAL PANEL (replaces photo) */
.cf-card__img--taskly {
    background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 100%);
}

.cf-card__img--chatly {
    background: linear-gradient(145deg, #0f0a1e 0%, #3b1f6e 100%);
}

.cf-card__img--peoplely {
    background: linear-gradient(145deg, #051a10 0%, #14532d 100%);
}

.cf-card__img--hirely {
    background: linear-gradient(145deg, #1a0800 0%, #7c2d12 100%);
}

.cf-product-visual {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px;
}

.cf-pv-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 22px currentColor);
}

.cf-pv-icon svg {
    width: 100%;
    height: 100%;
    animation: cf-pv-float 4s ease-in-out infinite;
}

@keyframes cf-pv-float {

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

    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

.cf-pv-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cf-pv-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
    filter: drop-shadow(0 0 12px currentColor);
}

.cf-pv-by {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
}

/* Animated glow ring behind icon on active card */
.cf-card.is-active .cf-pv-icon::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.12;
    animation: cf-pv-pulse 2.5s ease-in-out infinite;
}

@keyframes cf-pv-pulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0.22;
    }
}

/* LEFT / RIGHT ARROWS */
.cf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    /* offset for dots */
    z-index: 30;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(8, 10, 20, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.22s,
        border-color 0.22s,
        color 0.22s,
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.22s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cf-arrow svg {
    width: 20px;
    height: 20px;
}

.cf-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(calc(-50% - 20px)) scale(1.15);
    box-shadow: 0 6px 28px rgba(242, 101, 34, 0.50);
}

.cf-arrow--prev {
    left: 8px;
}

.cf-arrow--next {
    right: 8px;
}

/* DOT INDICATORS */
.cf-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.cf-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
    transition: width 0.35s, border-radius 0.35s, background 0.35s, box-shadow 0.35s;
    flex-shrink: 0;
}

.cf-dot.cf-dot--active {
    width: 36px;
    border-radius: 4px;
    background: rgba(242, 101, 34, 0.28);
    box-shadow: 0 0 12px rgba(242, 101, 34, 0.45);
}

.cf-dot.cf-dot--active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: var(--orange);
    animation: cf-dot-fill 5s linear forwards;
}

@keyframes cf-dot-fill {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .cf-carousel {
        padding: 0 56px;
    }

    .cf-card {
        width: 360px;
    }

    .cf-card.is-prev {
        transform: translateX(-50%) translateX(-62%) translateZ(-160px) scale(0.80) rotateY(6deg);
    }

    .cf-card.is-next {
        transform: translateX(-50%) translateX(62%) translateZ(-160px) scale(0.80) rotateY(-6deg);
    }
}

@media (max-width: 768px) {
    .cf-carousel {
        padding: 0 48px;
    }

    .cf-stage {
        height: 590px;
    }

    .cf-card {
        width: 82vw;
        max-width: 380px;
    }

    .cf-card.is-prev {
        transform: translateX(-50%) translateX(-48%) translateZ(-100px) scale(0.76) rotateY(5deg);
        opacity: 0.45;
        filter: blur(5px) brightness(0.50);
    }

    .cf-card.is-next {
        transform: translateX(-50%) translateX(48%) translateZ(-100px) scale(0.76) rotateY(-5deg);
        opacity: 0.45;
        filter: blur(5px) brightness(0.50);
    }

    .cf-arrow--prev {
        left: 2px;
    }

    .cf-arrow--next {
        right: 2px;
    }
}

@media (max-width: 480px) {
    .cf-carousel {
        padding: 0 36px;
    }

    .cf-stage {
        height: 640px;
    }

    .cf-arrow {
        width: 38px;
        height: 38px;
    }

    .cf-card.is-prev,
    .cf-card.is-next {
        opacity: 0.25;
        filter: blur(8px) brightness(0.35);
    }
}

/* CAROUSEL POLISH  slow image pan + text type-in */

/* Screenshot transition  simple crossfade only */
.cf-ss.cf-ss--active {
    opacity: 1;
}

/* Fade-up + fade-in for card body text when card becomes active */
.cf-card.is-active .cf-card__title {
    animation: cf-textrise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cf-card.is-active .cf-card__desc {
    animation: cf-textrise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.cf-card.is-active .cf-card__tag {
    animation: cf-textrise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.cf-card.is-active .cf-card__btn {
    animation: cf-textrise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes cf-textrise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth image crossfade (slower for elegance) */
.cf-img {
    transition: opacity 0.9s ease, transform 0.9s ease !important;
}

/* HRMS CARD  animated org-chart SVG overlay */

.cf-card__anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.cf-card__anim--hrms {
    /* sits over the image area only */
    top: auto;
    bottom: 190px;
    /* above the body text, inside image zone */
    height: 170px;
}

.hrms-svg {
    width: 100%;
    height: 100%;
    opacity: 0.92;
}

/* dash flow animation */
.hrms-dash {
    animation: hrms-flow 2.4s linear infinite;
    stroke-dashoffset: 0;
}

@keyframes hrms-flow {
    to {
        stroke-dashoffset: -28;
    }
}

/* node pulse/glow */
.hrms-node {
    animation: hrms-nodeglow 2.5s ease-in-out infinite alternate;
}

.hrms-node--1 {
    animation-delay: 0s;
    filter: drop-shadow(0 0 4px #3b82f6);
}

.hrms-node--2 {
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 4px #f26522);
}

.hrms-node--3 {
    animation-delay: 1.0s;
    filter: drop-shadow(0 0 4px #3b82f6);
}

.hrms-node--4 {
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 4px #a78bfa);
}

@keyframes hrms-nodeglow {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

/* pulse ring expanding outward */
.hrms-pulse {
    animation: hrms-pulse 2.2s ease-out infinite;
}

@keyframes hrms-pulse {
    0% {
        r: 16;
        opacity: 0.7;
    }

    100% {
        r: 34;
        opacity: 0;
    }
}

/* PERFORMANCE OPTIMISATIONS
   - content-visibility: auto on off-screen sections
   - reduced will-change scope
   - animation paused via JS-added class */

/* Let the browser skip rendering off-screen sections */
.vm-section,
.why-oppty,
.brand-essence,
.testimonials,
.clients {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}

/* Only promote to GPU layer when actually animating */
.ap-globe canvas,
.ap-bg__particles,
.testi-marquee {
    will-change: transform;
}

/* Remove will-change from static elements that don't need it */
.ap-shape,
.ap-orb,
.be-shape,
.be-orb,
.vm-shape,
.vm-orb,
.wo-shape,
.wo-orb {
    will-change: auto;
}

/* Pause heavy background animations when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* clients section  dark theme matching rest of page */
.clients {
    background: #060c18;
}

.clients-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 48px;
}

.clients-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.22);
    border-radius: 100px;
    padding: 5px 16px;
    display: inline-block;
    margin-bottom: 16px;
}

.clients-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
}

.clients-heading-line {
    width: 48px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto 18px;
}

.clients-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

.client-cell {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.client-cell:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(242, 101, 34, 0.3);
    transform: translateY(-4px);
}

.client-cell img {
    filter: opacity(0.85);
    transition: filter 0.25s, transform 0.25s;
}

.client-cell:hover img {
    filter: opacity(1);
    transform: scale(1.05);
}

/* ABOUT SECTION  TIGHTENED SPACING */
.about-pro          { padding: 56px 0 !important; }
.ap-eyebrow         { margin-bottom: 20px !important; }
.ap-grid            { gap: 48px !important; }
.ap-content         { gap: 12px !important; }
.ap-logo-wrap       { display: none !important; }
.ap-divider         { margin: 4px 0 !important; }
.ap-values          { margin-top: 4px !important; gap: 10px !important; }
.ap-stats           { margin-top: 6px !important; padding: 16px 20px !important; }
.ap-cta             { margin-top: 4px !important; gap: 10px !important; }
.ap-visual          { min-height: 420px !important; }

/* Right-side glow box animation */
.ap-visual-glow-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  z-index: 0;
  pointer-events: none;
}

.ap-visual-glow-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(242, 101, 34, 0.55);
  box-shadow:
    0 0 24px rgba(242, 101, 34, 0.35),
    0 0 60px rgba(242, 101, 34, 0.18),
    inset 0 0 20px rgba(242, 101, 34, 0.08);
  animation: ap-visual-glow-pulse 3s ease-in-out infinite;
  transform: rotate(-8deg);
}

.ap-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    ellipse at center,
    rgba(242, 101, 34, 0.22) 0%,
    rgba(59, 130, 246, 0.12) 50%,
    transparent 80%
  );
  filter: blur(18px);
  animation: ap-glow-pulse 3s ease-in-out infinite;
}

@keyframes ap-visual-glow-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: rotate(-8deg) scale(1);
    box-shadow:
      0 0 24px rgba(242, 101, 34, 0.35),
      0 0 60px rgba(242, 101, 34, 0.18),
      inset 0 0 20px rgba(242, 101, 34, 0.08);
  }
  50% {
    opacity: 1;
    transform: rotate(-8deg) scale(1.06);
    box-shadow:
      0 0 36px rgba(242, 101, 34, 0.55),
      0 0 80px rgba(242, 101, 34, 0.28),
      inset 0 0 30px rgba(242, 101, 34, 0.14);
  }
}

@media (max-width: 640px) {
  .about-pro        { padding: 40px 0 !important; }
  .ap-eyebrow       { margin-bottom: 16px !important; }
  .ap-grid          { gap: 32px !important; }
}

/* HERO CARDS  ADJUSTED LAYOUT
   Smaller image area, bigger logo + text */
/* Smaller screenshot height */
.dashboard-screen {
  height: 65px !important;
}

/* Logo icon  bigger box, image fills it fully */
.product-icon-wrapper {
  width: 100% !important;
  height: 64px !important;
  min-width: unset !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  padding: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}


/* Per-product brand color glassy backgrounds */
[data-category="Taskly"] .product-icon-wrapper {
  background: rgba(37, 99, 235, 0.18) !important;
  border-color: rgba(37, 99, 235, 0.40) !important;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Taskly"] .product-icon-wrapper:hover {
  background: rgba(37, 99, 235, 0.28) !important;
  border-color: rgba(37, 99, 235, 0.65) !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.40) !important;
}

[data-category="Chatly"] .product-icon-wrapper {
  background: rgba(124, 58, 237, 0.18) !important;
  border-color: rgba(124, 58, 237, 0.40) !important;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Chatly"] .product-icon-wrapper:hover {
  background: rgba(124, 58, 237, 0.28) !important;
  border-color: rgba(124, 58, 237, 0.65) !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.40) !important;
}

[data-category="Peoplely"] .product-icon-wrapper {
  background: rgba(22, 163, 74, 0.18) !important;
  border-color: rgba(22, 163, 74, 0.40) !important;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Peoplely"] .product-icon-wrapper:hover {
  background: rgba(22, 163, 74, 0.28) !important;
  border-color: rgba(22, 163, 74, 0.65) !important;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.40) !important;
}

[data-category="Cliently"] .product-icon-wrapper {
  background: rgba(8, 145, 178, 0.18) !important;
  border-color: rgba(8, 145, 178, 0.40) !important;
  box-shadow: 0 2px 12px rgba(8, 145, 178, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Cliently"] .product-icon-wrapper:hover {
  background: rgba(8, 145, 178, 0.28) !important;
  border-color: rgba(8, 145, 178, 0.65) !important;
  box-shadow: 0 4px 20px rgba(8, 145, 178, 0.40) !important;
}

[data-category="Meetly"] .product-icon-wrapper {
  background: rgba(79, 70, 229, 0.18) !important;
  border-color: rgba(79, 70, 229, 0.40) !important;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Meetly"] .product-icon-wrapper:hover {
  background: rgba(79, 70, 229, 0.28) !important;
  border-color: rgba(79, 70, 229, 0.65) !important;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.40) !important;
}

[data-category="Hirely"] .product-icon-wrapper {
  background: rgba(234, 88, 12, 0.18) !important;
  border-color: rgba(234, 88, 12, 0.40) !important;
  box-shadow: 0 2px 12px rgba(234, 88, 12, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Hirely"] .product-icon-wrapper:hover {
  background: rgba(234, 88, 12, 0.28) !important;
  border-color: rgba(234, 88, 12, 0.65) !important;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.40) !important;
}

[data-category="Learnly"] .product-icon-wrapper {
  background: rgba(30, 64, 175, 0.18) !important;
  border-color: rgba(30, 64, 175, 0.40) !important;
  box-shadow: 0 2px 12px rgba(30, 64, 175, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Learnly"] .product-icon-wrapper:hover {
  background: rgba(30, 64, 175, 0.28) !important;
  border-color: rgba(30, 64, 175, 0.65) !important;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.40) !important;
}

[data-category="Supportly"] .product-icon-wrapper {
  background: rgba(5, 150, 105, 0.18) !important;
  border-color: rgba(5, 150, 105, 0.40) !important;
  box-shadow: 0 2px 12px rgba(5, 150, 105, 0.25), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
[data-category="Supportly"] .product-icon-wrapper:hover {
  background: rgba(5, 150, 105, 0.28) !important;
  border-color: rgba(5, 150, 105, 0.65) !important;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.40) !important;
}
.product-icon-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Hide product name (Taskly, Chatly)  keep only category */
.product-name {
  display: none !important;
}

/* Hide product-meta (category label next to logo) */
.product-meta {
  display: none !important;
}

/* Bigger category label */
.product-category {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.92) !important;
  letter-spacing: 0.2px !important;
}



/* Tagline caption under each product icon — matches reference orbit-node style */
.product-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
    margin-top: 4px;
    display: block;
    text-align: left;
}

/* Sits right after the icon/category block, before the divider line */
.product-top {
    align-items: flex-start !important;
}

/* Bigger benefit text */
.benefit-text {
  font-size: 12px !important;
  color: rgba(255,255,255,0.75) !important;
}

/* Taller product-bottom to use recovered space */
.product-bottom {
  padding: 10px 14px 12px !important;
  gap: 6px !important;
}

/* FORCE DASHBOARD IMAGE FULL HEIGHT */
.dashboard-mask {
  height: 160px !important;
  min-height: 160px !important;
  max-height: 160px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}
.dashboard-track {
  position: relative !important;
  width: 100% !important;
  height: 160px !important;
}
.dashboard-screen {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: top center !important;
  opacity: 0 !important;
  transition: opacity 0.8s ease !important;
  display: block !important;
}
.dashboard-screen.slide-active {
  opacity: 1 !important;
}






/* ═══════════════════════════════════════
   VISION & MISSION — COMPACT (fits one screen)
════════════════════════════════════════ */
.vm-section {
  padding: 60px 0 !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vm-container {
  width: 100%;
}

.vm-header {
  margin-bottom: 28px !important;
}

.vm-eyebrow {
  margin-bottom: 10px !important;
}

.vm-heading {
  font-size: clamp(26px, 3.4vw, 40px) !important;
}

.vm-grid {
  gap: 28px !important;
  margin-bottom: 32px !important;
}

.vm-card {
  padding: 28px 28px 24px !important;
}

.vm-card__label {
  margin-bottom: 14px !important;
}

.vm-card__icon-wrap {
  width: 84px !important;
  height: 84px !important;
  margin: 0 auto 16px !important;
}

.vm-card__icon {
  width: 78px !important;
  height: 78px !important;
}

.vm-card__text {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}

.vm-card__accent {
  margin-top: 16px !important;
}

.vm-divider__line {
  height: 40px !important;
}

.vm-divider__icon {
  width: 36px !important;
  height: 36px !important;
}

.vm-divider__icon svg {
  width: 16px !important;
  height: 16px !important;
}

.vm-cta {
  padding: 24px 32px !important;
}

.vm-cta__text {
  font-size: 15px !important;
  margin-bottom: 14px !important;
}

.vm-cta__btn {
  padding: 12px 26px !important;
  font-size: 11.5px !important;
}

/* On shorter laptop screens, trim a bit further */
@media (max-height: 800px) {
  .vm-section { padding: 40px 0 !important; }
  .vm-header { margin-bottom: 18px !important; }
  .vm-grid { gap: 20px !important; margin-bottom: 20px !important; }
  .vm-card { padding: 20px 22px 18px !important; }
  .vm-card__icon-wrap { width: 64px !important; height: 64px !important; margin-bottom: 10px !important; }
  .vm-card__icon { width: 58px !important; height: 58px !important; }
  .vm-card__text { font-size: 12.5px !important; line-height: 1.5 !important; }
  .vm-cta { padding: 18px 24px !important; }
}

/* Keep the two-card row side-by-side even on the compact layout —
   only collapse to stacked on genuinely narrow screens */
@media (max-width: 1024px) and (min-height: 700px) {
  .vm-grid {
    grid-template-columns: 1fr auto 1fr !important;
  }
  .vm-divider {
    flex-direction: column !important;
  }
  .vm-divider__line {
    width: 1px !important;
    height: 40px !important;
    background: linear-gradient(to bottom, transparent, rgba(242,101,34,.5), transparent) !important;
  }
}

/* ═══════════════════════════════════════
   OPPTY MEDIA SECTION
════════════════════════════════════════ */
.oppty-media {
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(242, 101, 34, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 70% at 100% 50%, rgba(59, 130, 246, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 0%, rgba(139, 92, 246, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(6, 182, 212, 0.10) 0%, transparent 65%),
        linear-gradient(180deg, #020814 0%, #060e20 20%, #0a1530 50%, #060e20 80%, #020814 100%);
    padding: 48px 0 40px;
    overflow: hidden;
    position: relative;
}

/* top + bottom gradient border */
.oppty-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(242, 101, 34, 0.70) 25%,
        rgba(139, 92, 246, 0.55) 50%,
        rgba(59, 130, 246, 0.60) 75%,
        transparent 100%);
    z-index: 1;
}

/* subtle grid overlay matching page style */
.oppty-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
    pointer-events: none;
}

/* animated glow orbs inside the section */
.oppty-media .om-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.oppty-media .om-orb--orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.38) 0%, rgba(251, 146, 60, 0.15) 45%, transparent 70%);
    top: -160px;
    left: -100px;
    animation: om-orb-drift 16s ease-in-out infinite alternate;
}

.oppty-media .om-orb--blue {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, rgba(96, 165, 250, 0.12) 45%, transparent 70%);
    bottom: -140px;
    right: -100px;
    animation: om-orb-drift 20s ease-in-out infinite alternate-reverse;
}

.oppty-media .om-orb--purple {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
     : om-orb-pulse 12s ease-in-out infinite;
}

@keyframes om-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 25px) scale(1.12); }
}

@keyframes om-orb-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}
.om-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.om-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.om-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 8px;
}

.om-heading span {
    color: var(--orange);
}

.om-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Marquee wrapper ── */
.om-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 8px 0 6px;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    position: relative;
    z-index: 2;
}

.om-marquee {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: om-scroll 100s linear infinite;
    will-change: transform;
}

.om-marquee-wrap:hover .om-marquee {
    animation-play-state: paused;
}

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

/* ── Card — glassy dark ── */
.om-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 0 0 440px;
    width: 440px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}

/* glass shine layer */
.om-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(59, 130, 246, 0.7));
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 16px 16px 0 0;
}

/* inner top-left specular highlight */
.om-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 45%;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 60%);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

.om-card:hover {
    border-color: rgba(242, 101, 34, 0.45);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(242, 101, 34, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

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

/* ── Logo area ── */
.om-card__logo {
    width: 120px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 6px 10px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.om-card:hover .om-card__logo {
    transform: scale(1.06);
    border-color: rgba(242,101,34,0.35);
}

.om-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) contrast(1.05);
}

/* Fallback shown when image fails to load */
.om-card__logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
}

/* ── Body ── */
.om-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.om-card__channel {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0;
}

/* Editable news content */
.om-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    flex: 1;
    border-radius: 6px;
    padding: 6px 8px;
    outline: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: text;
    border: 1px solid transparent;
    min-height: 80px;
}

.om-card__text:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.om-card__text:focus {
    background: rgba(242, 101, 34, 0.06);
    border-color: rgba(242, 101, 34, 0.3);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.08);
}



/* ── Read More button ── */
.om-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.40);
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    margin-top: auto;
}

.om-card__btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.om-card__btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 4px 18px rgba(242, 101, 34, 0.35);
}

.om-card__btn:hover svg {
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 560px) {
    .oppty-media {
        padding: 36px 0 28px;
    }

    .om-header {
        margin-bottom: 20px;
        padding: 0 16px;
    }

    .om-card {
        flex: 0 0 300px;
        width: 300px;
        padding: 16px 14px 14px;
    }
}







/* ═══ WHY-OPPTY: PREMIUM DASHBOARD VISUAL ═══ */
.wo-dash {
    position: relative;
    width: 100%;
    max-width: 440px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wo-dash__glow {
    position: absolute;
    inset: 6% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,101,34,0.28) 0%, rgba(59,130,246,0.16) 45%, transparent 72%);
    filter: blur(50px);
    animation: wo-dash-glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes wo-dash-glow-pulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.08); }
}

.wo-dash__ring {
    position: absolute;
    inset: 2%;
    border-radius: 28px;
    border: 1.5px dashed rgba(242, 101, 34, 0.22);
    animation: wo-ring-spin 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Floating capability chips */
.wo-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 12px;
    border-radius: 100px;
    background: rgba(8, 12, 26, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    animation: wo-mini-float 6s ease-in-out infinite;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.wo-chip svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--orange); }
.wo-chip:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(242, 101, 34, 0.5);
    box-shadow: 0 14px 36px rgba(242, 101, 34, 0.28);
}
.wo-chip--1 { top: 2%;   left: -4%;  animation-delay: 0s; }
.wo-chip--2 { top: 14%;  right: -8%; animation-delay: 1.4s; }
.wo-chip--3 { bottom: 16%; left: -9%; animation-delay: 0.8s; }
.wo-chip--4 { bottom: 3%; right: -4%; animation-delay: 2.1s; }
.wo-chip--2 svg, .wo-chip--4 svg { color: #3b8fe8; }

/* Main glass card */
.wo-dash__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 340px;
    padding: 26px 26px 22px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 1px rgba(242, 101, 34, 0.18),
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(242, 101, 34, 0.12) inset;
    overflow: hidden;
    animation: wo-dash-float 6s ease-in-out infinite;
}
@keyframes wo-dash-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.wo-dash__card-glare {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.wo-dash__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.wo-dash__brand { display: flex; align-items: center; gap: 10px; }
.wo-dash__logo-wrap {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.wo-dash__logo { width: 26px; height: 26px; object-fit: contain; display: block; }
.wo-dash__brand-name { display: block; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.wo-dash__brand-sub { display: block; font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,0.45); }

.wo-dash__live {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--orange);
    background: rgba(242,101,34,0.12);
    border: 1px solid rgba(242,101,34,0.35);
    padding: 4px 10px; border-radius: 100px;
}
.wo-dash__live i {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    animation: pulseDot 2s infinite alternate;
}

.wo-dash__chart { position: relative; z-index: 1; margin-bottom: 18px; }
.wo-dash__chart-svg { width: 100%; height: 90px; display: block; overflow: visible; }
.wo-dash__chart-line {
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
    filter: drop-shadow(0 2px 6px rgba(242,101,34,0.5));
    transition: stroke-dashoffset 1.8s cubic-bezier(0.16,1,0.3,1);
}
.wo-dash__card.wo-dash--in-view .wo-dash__chart-line { stroke-dashoffset: 0; }
.wo-dash__chart-area { opacity: 0; transition: opacity 1s ease 0.5s; }
.wo-dash__card.wo-dash--in-view .wo-dash__chart-area { opacity: 1; }
.wo-dash__chart-dot {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
    animation: wo-dot-pulse 2s ease-in-out infinite;
}
@keyframes wo-dot-pulse {
    0%, 100% { r: 5; opacity: 1; }
    50%      { r: 6.5; opacity: 0.7; }
}

.wo-dash__kpis {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.09);
    position: relative; z-index: 1;
}
.wo-dash__kpi { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.wo-dash__kpi-num {
    font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 800;
    background: linear-gradient(135deg, #fb923c 0%, var(--orange) 60%, #ea580c 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wo-dash__kpi-suf { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; color: var(--orange); }
.wo-dash__kpi-label { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.wo-dash__kpi-divider { width: 1px; height: 30px; background: linear-gradient(to bottom, transparent, rgba(242,101,34,0.3), transparent); flex-shrink: 0; }

/* Years badge  overlapping bottom-left corner */
.wo-dash__years {
    position: absolute;
    bottom: -18px;
    left: 6%;
    z-index: 4;
    display: flex; flex-direction: column; align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(242, 101, 34, 0.45), 0 0 0 1px rgba(255,255,255,0.18) inset;
    transform: rotate(-4deg);
    animation: wo-dash-float 6s ease-in-out infinite 0.5s;
}
.wo-dash__years-num { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.wo-dash__years-label { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.92); text-align: center; line-height: 1.25; margin-top: 3px; }

/* Responsive */                    
@media (max-width: 1024px) {
    .wo-dash { max-width: 380px; min-height: 460px; }
    .wo-chip { display: none; }
}
@media (max-width: 640px) {
    .wo-dash__card { padding: 20px 18px 18px; }
    .wo-dash__chart-svg { height: 70px; }
    .wo-dash__years { left: 4%; padding: 9px 16px; }
}












/* ── OPPTY MEDIA: SIDE STICKIES — aligned beside the title, scoped to this section only ── */
.oppty-media {
    position: relative;
}

.om-side-sticky {
    position: sticky;
    top: 10px;                 /* aligns with the "OPPTY MEDIA" title, not the card row below */
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 10px 18px 10px 10px;
    background: rgba(8, 12, 26, 0.80);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.90);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease;
}

.om-side-sticky--left {
    float: left;
    margin-left: 55px;
}

.om-side-sticky--right {
    float: right;
    margin-right: 55px;
}

.om-side-sticky:hover {
    transform: scale(1.05);
    border-color: rgba(242, 101, 34, 0.5);
    background: rgba(242, 101, 34, 0.14);
    box-shadow: 0 14px 36px rgba(242, 101, 34, 0.30);
}

.om-side-sticky__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 6px;
}

.om-side-sticky__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.om-side-sticky__logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--orange);
}

.om-side-sticky__label {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.om-side-sticky__label strong {
    color: #fff;
    font-weight: 700;
}

/* Hide on small screens where there's no side room */
@media (max-width: 1300px) {
    .om-side-sticky__label { display: none; }
    .om-side-sticky { padding: 8px; }
    .om-side-sticky__logo { width: 34px; height: 34px; }
}

@media (max-width: 860px) {
    .om-side-sticky { display: none; }
}


/* ══════════════════════════════════════════
   MOBILE NAV BUTTONS — Media Query Polish
   Applies to ALL pages via index.css
   Learnly | Phone | Oppty Media
══════════════════════════════════════════ */

/* Ensure mobile-btns block always shows inside open mobile nav */
.mobile-nav.open .mobile-btns {
    display: flex !important;
    flex-direction: column;
    gap: 9px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 10px;
}

/* ── Learnly button (btn-academy) ── */
.mobile-btns .btn-academy {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    background: var(--orange) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(242,101,34,0.40);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.mobile-btns .btn-academy:hover {
    background: #d4530e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(242,101,34,0.55);
}

/* ── Phone number link ── */
.mobile-btns .phone-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.75) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
    margin: 0 !important;
    box-sizing: border-box;
}
.mobile-btns .phone-link:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,0.30) !important;
    background: rgba(255,255,255,0.08) !important;
}
.mobile-btns .phone-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--orange);
}

/* ── Oppty Media button (btn-training) ── */
.mobile-btns .btn-training {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    background: transparent !important;
    color: var(--orange) !important;
    border: 1.5px solid rgba(242,101,34,0.55) !important;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
}
.mobile-btns .btn-training:hover {
    background: rgba(242,101,34,0.10) !important;
    border-color: var(--orange) !important;
    transform: translateY(-2px);
}

/* ── Small screen refinements ── */
@media (max-width: 480px) {
    .mobile-btns {
        gap: 8px;
        padding-top: 14px;
    }
    .mobile-btns .btn-academy,
    .mobile-btns .btn-training {
        font-size: 11.5px;
        padding: 12px 18px;
    }
    .mobile-btns .phone-link {
        font-size: 11.5px;
        padding: 11px 14px;
    }
}

@media (max-width: 360px) {
    .mobile-btns .btn-academy,
    .mobile-btns .btn-training,
    .mobile-btns .phone-link {
        font-size: 11px;
        padding: 11px 14px;
    }
}


/* ══════════════════════════════════════════
   HAMBURGER / MOBILE NAV — FIXED ALIGNMENT
   Applies to all pages via index.css
══════════════════════════════════════════ */

@media (max-width: 860px) {
    header {
        width: 80% !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .nav-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* Full-width panel, no auto margin tricks */
    .mobile-nav {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        left: 100 !important;
        right: 100 !important;
        padding: 8px 20px 22px !important;
        box-sizing: border-box !important;
        border-radius: 0 !important;
    }

    .mobile-nav > a,
    .mobile-nav .mobile-dropdown,
    .mobile-btns {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0 12px !important;
    }
    .mobile-nav {
        padding: 6px 14px 18px !important;
    }
}
