/* ============================================
   SPILIFT — Strategic PR & Digital Growth
   PREMIUM 3D Website Stylesheet v2.0
   Ultra-smooth · Glassmorphism · Neon Glow
   ============================================ */

/* === CSS Custom Properties (Design Tokens) === */
:root {
    /* Brand Colors — Richer palette */
    --navy: #0A2540;
    --navy-light: #0f3460;
    --navy-dark: #050e1a;
    --navy-mid: #0c2d4a;
    --orange: #FF6B35;
    --orange-light: #ff9a5c;
    --orange-dark: #e55a2b;
    --orange-hot: #ff4e00;
    --orange-glow: rgba(255, 107, 53, 0.35);
    --orange-neon: rgba(255, 107, 53, 0.6);
    --gold: #ffd700;
    --gold-soft: #ffecb3;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f0f2f7;
    --gray-100: #e4e7ee;
    --gray-200: #cdd1dc;
    --gray-300: #9ca3af;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --dark-text: #121829;

    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.2);

    /* Layered 3D Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.04), 0 4px 12px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.06), 0 8px 24px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 8px 24px rgba(10, 37, 64, 0.08), 0 16px 48px rgba(10, 37, 64, 0.12);
    --shadow-xl: 0 12px 36px rgba(10, 37, 64, 0.1), 0 24px 64px rgba(10, 37, 64, 0.14);
    --shadow-3d: 0 20px 50px rgba(10, 37, 64, 0.18), 0 8px 16px rgba(10, 37, 64, 0.06), 0 0 0 1px rgba(10, 37, 64, 0.04);
    --shadow-orange: 0 8px 32px rgba(255, 107, 53, 0.3), 0 2px 8px rgba(255, 107, 53, 0.15);
    --shadow-orange-intense: 0 12px 40px rgba(255, 107, 53, 0.45), 0 4px 12px rgba(255, 107, 53, 0.2);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-logo: 'Jost', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 130px 0;
    --container-width: 1260px;

    /* Ultra-smooth Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
    --transition-fast: 0.25s var(--ease-out-quart);
    --transition-smooth: 0.5s var(--ease-out-expo);
    --transition-spring: 0.7s var(--ease-spring);
    --transition-ultra: 0.8s var(--ease-out-expo);

    /* 3D Perspective */
    --perspective: 1400px;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Lenis-style smooth scroll body */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 15%, var(--navy-dark) 30%, var(--navy-mid) 45%, var(--navy-dark) 60%, var(--navy) 75%, var(--navy-dark) 90%, var(--navy-mid) 100%);
    overflow-x: hidden;
    line-height: 1.7;
}

body.loading {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* === Noise Texture Overlay (Premium depth) === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-wrap {
    text-align: center;
}

.loader-logo-3d {
    width: 360px;
    height: 360px;
    margin: 0 auto 50px;
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
}

.loader-logo-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateLogo3D 4s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 35px var(--orange-neon)) drop-shadow(0 0 15px var(--orange));
    transform: translateZ(50px);
    z-index: 2;
    animation: floatLogo 2s ease-in-out infinite alternate;
}

@keyframes floatLogo {
    0% { transform: translateZ(50px) translateY(-8px); }
    100% { transform: translateZ(65px) translateY(8px); }
}

.loader-logo-inner::before {
    content: '';
    position: absolute;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
    box-shadow: 0 0 15px var(--orange-neon);
    animation: scanLine 3s ease-in-out infinite;
    z-index: 3;
    transform: translateZ(60px);
    pointer-events: none;
}

@keyframes scanLine {
    0%, 100% { top: 15%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { top: 85%; }
}

.loader-glow {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 107, 53, 0.4);
    animation: spinDashed 12s linear infinite;
    transform: translateZ(20px);
}

.loader-glow-outer {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-top: 3px solid var(--orange);
    border-bottom: 3px solid var(--gold);
    animation: spinSolid 8s linear infinite reverse;
    transform: translateZ(10px);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
}

@keyframes rotateLogo3D {
    0% { transform: rotateY(-20deg) rotateX(10deg); }
    50% { transform: rotateY(20deg) rotateX(-10deg); }
    100% { transform: rotateY(-20deg) rotateX(10deg); }
}

@keyframes spinDashed {
    from { transform: translateZ(20px) rotate(0deg); }
    to { transform: translateZ(20px) rotate(360deg); }
}

@keyframes spinSolid {
    from { transform: translateZ(10px) rotate(0deg); }
    to { transform: translateZ(10px) rotate(360deg); }
}

.loader-text {
    font-family: var(--font-logo);
    font-size: 34px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 12px;
    animation: loaderPulse 1.5s infinite ease-in-out;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.4), 0 0 10px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* === Particles Canvas === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.6s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 14, 26, 0.85);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-spring);
    position: relative;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 53, 0.4));
    transition: all var(--transition-spring);
}

.logo:hover .logo-icon-wrap {
    transform: rotate(5deg) scale(1.08);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 18px rgba(255, 107, 53, 0.7));
}

.navbar.scrolled .logo-icon-wrap {
    width: 90px;
    height: 90px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
    transition: color var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--orange-glow);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all var(--transition-smooth);
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px var(--orange-neon);
}

.nav-cta:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 14, 26, 0.97);
    backdrop-filter: blur(40px) saturate(1.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s var(--ease-out-expo);
    display: inline-block;
}

.mobile-link:hover {
    color: var(--orange);
    transform: translateX(12px);
    text-shadow: 0 0 30px var(--orange-glow);
}

.mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 30px var(--orange-glow);
}

.hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 90% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(74, 144, 217, 0.06) 0%, transparent 50%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated grid lines background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    opacity: 0.12;
    animation: shapeFloat1 10s var(--ease-smooth) infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4a90d9 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    opacity: 0.1;
    animation: shapeFloat2 13s var(--ease-smooth) infinite;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    opacity: 0.08;
    animation: shapeFloat3 15s var(--ease-smooth) infinite;
}

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.07) 0%, transparent 55%);
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-40px, 40px) scale(1.08) rotate(2deg); }
    66% { transform: translate(20px, -20px) scale(0.95) rotate(-1deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -30px) scale(1.05) rotate(-2deg); }
    66% { transform: translate(-20px, 15px) scale(0.98) rotate(1deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(0.8); }
    50% { transform: translate(-50px, 25px) scale(1.05); }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.08);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
    box-shadow: 0 0 8px var(--orange-neon);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--orange-neon); }
    50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--orange-glow); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 26px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--orange-light), var(--gold), var(--orange));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
}

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

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* === Buttons — Premium === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary {
    padding: 17px 34px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    border-radius: 14px;
    box-shadow: 0 6px 24px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.7s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-orange-intense);
}

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

.btn-3d {
    transform-style: preserve-3d;
    perspective: var(--perspective);
}

.btn-glass {
    padding: 17px 34px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-inset);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-inset), 0 8px 32px rgba(255, 255, 255, 0.06);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
}

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

/* Hero Clients */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatars {
    display: flex;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    border: 2px solid var(--navy);
    margin-left: -10px;
    transition: all var(--transition-spring);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-6px) scale(1.15);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.avatar-count {
    background: rgba(255, 255, 255, 0.1) !important;
    font-size: 11px;
    backdrop-filter: blur(8px);
    border-color: rgba(255,255,255,0.15);
}

.client-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.client-text strong {
    color: var(--orange-light);
}

/* Hero Visual / 3D Cards */
.hero-visual {
    position: relative;
    height: 520px;
    perspective: var(--perspective);
}

.hero-3d-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.card-3d-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: heroFloat 8s var(--ease-smooth) infinite;
    will-change: transform;
}

@keyframes heroFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(5deg); }
    25% { transform: rotateY(3deg) rotateX(-3deg); }
    50% { transform: rotateY(8deg) rotateX(-5deg); }
    75% { transform: rotateY(-3deg) rotateX(3deg); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 26px;
    transform-style: preserve-3d;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    will-change: transform;
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 40%, transparent 60%, rgba(255,107,53,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.floating-card:hover {
    transform: translateZ(40px) scale(1.08) !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(255, 107, 53, 0.1);
}

.card-1 {
    top: 20px;
    left: 10%;
    transform: translateZ(50px);
    animation: cardFloat1 5s var(--ease-smooth) infinite;
}

.card-2 {
    top: 10px;
    right: 5%;
    transform: translateZ(25px);
    animation: cardFloat2 6s var(--ease-smooth) infinite;
}

.card-3 {
    bottom: 80px;
    left: 5%;
    transform: translateZ(35px);
    animation: cardFloat3 5.5s var(--ease-smooth) infinite;
}

.card-4 {
    bottom: 60px;
    right: 10%;
    transform: translateZ(60px);
    animation: cardFloat4 4.5s var(--ease-smooth) infinite;
}

@keyframes cardFloat1 { 0%, 100% { transform: translateZ(50px) translateY(0); } 50% { transform: translateZ(50px) translateY(-18px); } }
@keyframes cardFloat2 { 0%, 100% { transform: translateZ(25px) translateY(0); } 50% { transform: translateZ(25px) translateY(-22px); } }
@keyframes cardFloat3 { 0%, 100% { transform: translateZ(35px) translateY(0); } 50% { transform: translateZ(35px) translateY(-15px); } }
@keyframes cardFloat4 { 0%, 100% { transform: translateZ(60px) translateY(0); } 50% { transform: translateZ(60px) translateY(-20px); } }

.card-icon {
    font-size: 30px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.card-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.card-value {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-sphere {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.25), rgba(255, 107, 53, 0.03) 70%);
    border-radius: 50%;
    filter: blur(3px);
    animation: spherePulse 5s var(--ease-smooth) infinite;
    box-shadow: inset 0 0 60px rgba(255, 107, 53, 0.08);
}

@keyframes spherePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.75; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
    box-shadow: 0 0 6px var(--orange-glow);
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

/* === Stats Section === */
.stats-section {
    padding: 80px 0 100px;
    margin-top: -65px;
    position: relative;
    z-index: 10;
    background: transparent;
}

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

.stat-card {
    perspective: var(--perspective);
}

.stat-3d-wrap {
    background: linear-gradient(145deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
    border-radius: 22px;
    padding: 38px 24px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.15),
        0 12px 24px rgba(0,0,0,0.12),
        0 24px 48px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Animated gradient border on hover */
.stat-3d-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: radial-gradient(circle 200px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

/* Shimmer effect */
.stat-3d-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.04), transparent);
    transition: left 0.8s var(--ease-out-expo);
    pointer-events: none;
}

.stat-card:hover .stat-3d-wrap {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: var(--shadow-3d), 0 0 60px rgba(255, 107, 53, 0.06);
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), rgba(255, 107, 53, 0.08), transparent 80%), linear-gradient(145deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
}

.stat-card:hover .stat-3d-wrap::before {
    opacity: 1;
}

.stat-card:hover .stat-3d-wrap::after {
    left: 150%;
}

.stat-icon-wrap {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.stat-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.stat-card:hover .stat-icon-wrap {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    transform: rotateY(180deg) scale(1.05);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.stat-card:hover .stat-icon-wrap::after {
    opacity: 1;
}

.stat-card:hover .stat-icon-wrap svg {
    stroke: white;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* === CTA Banners — Premium === */
.cta-banner {
    padding: 70px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.08) 0%, transparent 75%);
    pointer-events: none;
    animation: ctaSlowSpin 20s linear infinite;
}

@keyframes ctaSlowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animated mesh lines */
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

@keyframes ctaShine {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}



.cta-banner.cta-dark .cta-content h3 {
    color: var(--white);
}

.cta-banner.cta-dark .cta-content p {
    color: rgba(255, 255, 255, 0.5);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-dark .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
}

/* === Section Headers — Premium === */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* === Services Section — Premium === */
.services-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 2;
    gap: 28px;
}

.service-card {
    perspective: var(--perspective);
    height: 430px;
}

.service-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s var(--ease-out-expo);
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-card-front {
    background: linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.15),
        0 12px 28px rgba(0,0,0,0.12),
        0 24px 56px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
}

/* Premium gradient border on hover */
.service-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: radial-gradient(circle 200px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover .service-card-front {
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), rgba(255, 107, 53, 0.08), transparent 80%), linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
}

.service-card:hover .service-card-front::after {
    opacity: 1;
}

.service-card-back {
    background: 
        radial-gradient(ellipse at 30% 100%, rgba(255,107,53,0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy), var(--navy-mid));
    transform: rotateY(180deg);
    color: var(--white);
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-3d);
}

.service-card-back h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.service-card-back p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 320px;
}

.service-icon-wrap {
    margin-bottom: 24px;
}

.service-icon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.06));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
    filter: blur(6px);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    transform: rotateZ(10deg) scale(1.08);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.check {
    color: var(--orange);
    font-size: 12px;
    filter: drop-shadow(0 0 4px rgba(255,107,53,0.3));
}

.service-hover-hint {
    margin-top: auto;
    padding-top: 20px;
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    opacity: 0.5;
    transition: opacity var(--transition-smooth);
}

.service-card:hover .service-hover-hint {
    opacity: 0;
}

/* === Why Choose Us — Premium === */
.why-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    perspective: var(--perspective);
}

.why-card-3d {
    background: linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
    transform-style: preserve-3d;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.15),
        0 12px 28px rgba(0,0,0,0.12),
        0 24px 48px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    will-change: transform;
}

/* Gradient border on hover */
.why-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: radial-gradient(circle 200px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

/* Bottom glow */
.why-card-3d::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.why-card:hover .why-card-3d {
    transform: translateY(-14px);
    box-shadow: var(--shadow-3d);
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), rgba(255, 107, 53, 0.08), transparent 80%), linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
}

.why-card:hover .why-card-3d::before {
    opacity: 1;
}

.why-card:hover .why-card-3d::after {
    opacity: 0.12;
}

.why-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.06));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.08));
    transform: translateZ(20px) scale(1.08);
}

.why-card-3d h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card-3d p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.why-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.08);
    line-height: 1;
    transition: all 0.6s var(--ease-out-expo);
}

.why-card:hover .why-number {
    color: rgba(255, 107, 53, 0.15);
    transform: translateZ(10px) scale(1.05);
}

.media-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Media Logo Scroll */
.media-logos {
    margin-bottom: 60px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.media-logo-track {
    display: flex;
    gap: 32px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

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

.media-logo-item {
    flex-shrink: 0;
    padding: 20px 40px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.08),
        0 0 40px rgba(255,255,255,0.05);
}

.media-logo-item:hover {
    border-color: var(--orange);
    box-shadow: 
        0 12px 28px rgba(0,0,0,0.12),
        0 0 30px rgba(255, 107, 53, 0.15);
    transform: translateY(-6px) scale(1.04);
}

.media-logo-item img {
    height: 48px;
    max-width: 170px;
    object-fit: contain;
    opacity: 0.85;
    transition: all var(--transition-smooth);
}

.media-logo-item:hover img {
    opacity: 1;
    filter: none;
}

/* Media Gallery */
.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
}

.media-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 200px;
    cursor: pointer;
    transition: all 0.6s var(--ease-out-expo);
    transform-style: preserve-3d;
    perspective: var(--perspective);
    will-change: transform;
}

.media-item.media-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 440px;
}

.media-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.media-item:nth-child(1)::before { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, rgba(255,107,53,0.1) 100%); }
.media-item:nth-child(2)::before { background: linear-gradient(135deg, #0f3460, #1a5276, rgba(255,107,53,0.08)); }
.media-item:nth-child(3)::before { background: linear-gradient(135deg, #1a2a4a, #0f3460, rgba(255,107,53,0.06)); }
.media-item:nth-child(4)::before { background: linear-gradient(135deg, #0a3060, var(--navy), rgba(255,107,53,0.08)); }
.media-item:nth-child(5)::before { background: linear-gradient(135deg, var(--navy-mid), #1a5276, rgba(255,107,53,0.1)); }

/* Hover glow */
.media-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255,107,53,0.15), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.media-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(255,107,53,0.08);
}

.media-item:hover::after {
    opacity: 1;
}

.media-overlay {
    position: relative;
    z-index: 2;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.media-source {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    align-self: flex-start;
    box-shadow: 0 4px 12px var(--orange-glow);
}

.media-overlay h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.media-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.results-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.case-card {
    perspective: var(--perspective);
}

.case-card-3d {
    background: linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
    transform-style: preserve-3d;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.15),
        0 12px 28px rgba(0,0,0,0.12),
        0 24px 50px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Gradient border */
.case-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: radial-gradient(circle 200px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.case-card:hover .case-card-3d {
    transform: translateY(-12px);
    box-shadow: var(--shadow-3d);
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), rgba(255, 107, 53, 0.08), transparent 80%), linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
}

.case-card:hover .case-card-3d::before {
    opacity: 1;
}

.case-header {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.case-industry {
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-tag {
    padding: 5px 14px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange-light);
    letter-spacing: 0.5px;
}

.case-brand {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.case-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 26px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.metric {
    text-align: center;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-smooth);
}

.case-card:hover .metric {
    border-color: rgba(255,107,53,0.15);
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    font-weight: 500;
}

.case-bar {
    height: 6px;
    background: var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
}

.case-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--gold));
    background-size: 200% 100%;
    border-radius: 6px;
    width: 0;
    transition: width 2s var(--ease-out-expo);
    box-shadow: 0 0 12px var(--orange-glow);
    animation: barShimmer 3s ease-in-out infinite;
}

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

.testimonials-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Grid overlay */
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.testimonials-section .section-tag {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.25);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s var(--ease-out-expo);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 auto;
    perspective: var(--perspective);
}

.testimonial-3d {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 38px;
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
    transform-style: preserve-3d;
    height: 100%;
    position: relative;
    overflow: visible;
    will-change: transform;
}

/* Top accent line */
.testimonial-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transition: width 0.6s var(--ease-out-expo);
    border-radius: 0 0 2px 2px;
    box-shadow: 0 0 12px var(--orange-glow);
    z-index: 2;
}

/* Cursor spotlight border */
.testimonial-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: radial-gradient(circle 200px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card:hover .testimonial-3d {
    transform: translateY(-10px);
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), rgba(255, 107, 53, 0.08), transparent 80%), rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255,107,53,0.05);
}

.testimonial-card:hover .testimonial-3d::before {
    width: 60%;
}

.testimonial-card:hover .testimonial-3d::after {
    opacity: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-color: var(--orange);
    transform: scale(1.1);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
}

.carousel-dot.active {
    width: 36px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    box-shadow: 0 0 12px var(--orange-glow);
}

.contact-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.contact-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.contact-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform var(--transition-smooth);
}

.contact-feature:hover {
    transform: translateX(6px);
}

.cf-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.contact-feature:hover .cf-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    transform: scale(1.05);
}

.contact-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.contact-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-orange);
}

/* Form — Premium */
.contact-form-wrap {
    perspective: var(--perspective);
}

.form-3d {
    background: linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.15),
        0 16px 36px rgba(0,0,0,0.12),
        0 32px 64px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    transform-style: preserve-3d;
    transition: all 0.6s var(--ease-out-expo), background 0.1s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Gradient border */
.form-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: radial-gradient(circle 250px at var(--mx, 0px) var(--my, 0px), var(--orange) 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.contact-form-wrap:hover .form-3d {
    box-shadow: var(--shadow-3d);
    background: radial-gradient(circle 300px at var(--mx, 50%) var(--my, 50%), rgba(255, 107, 53, 0.06), transparent 80%), linear-gradient(150deg, #0e2f50 0%, #0a2540 50%, #081d33 100%);
}

.contact-form-wrap:hover .form-3d::before {
    opacity: 1;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12), 0 4px 16px rgba(255, 107, 53, 0.08);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: rgba(255,255,255,0.5);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
}

/* === Footer — Premium === */
.footer {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255,107,53,0.04) 0%, transparent 50%),
        var(--navy-dark);
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s var(--ease-out-expo);
}

.footer-socials a:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--orange-glow);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-links span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.4s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(6px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* === WhatsApp Float — Premium === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.5s var(--ease-out-expo);
    animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5), 0 0 50px rgba(37, 211, 102, 0.15);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 0 0 14px rgba(37, 211, 102, 0.08), 0 0 0 28px rgba(37, 211, 102, 0.03); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: var(--white);
    color: var(--dark-text);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-out-expo);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* === Back to Top — Premium === */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
    border-color: transparent;
}

/* === Success Modal — Premium === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 26, 0.75);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 28px;
    padding: 52px;
    text-align: center;
    max-width: 420px;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.6s var(--ease-spring);
    box-shadow: var(--shadow-3d), 0 0 80px rgba(255,107,53,0.08);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--white);
    font-weight: 800;
    margin: 0 auto 22px;
    box-shadow: var(--shadow-orange-intense);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* === Scroll Animations — Ultra Smooth === */
[data-animate] {
    opacity: 0;
    transition: all 1s var(--ease-out-expo);
    will-change: transform, opacity;
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* === Split-Text Word Reveal Animation === */
.split-text .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.split-text .word-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.7s var(--ease-out-expo), opacity 0.7s var(--ease-out-expo);
    will-change: transform, opacity;
}

.split-text.revealed .word-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger delays for words — auto-assigned by JS */
.split-text .word:nth-child(1) .word-inner { transition-delay: 0ms; }
.split-text .word:nth-child(2) .word-inner { transition-delay: 50ms; }
.split-text .word:nth-child(3) .word-inner { transition-delay: 100ms; }
.split-text .word:nth-child(4) .word-inner { transition-delay: 150ms; }
.split-text .word:nth-child(5) .word-inner { transition-delay: 200ms; }
.split-text .word:nth-child(6) .word-inner { transition-delay: 250ms; }
.split-text .word:nth-child(7) .word-inner { transition-delay: 300ms; }
.split-text .word:nth-child(8) .word-inner { transition-delay: 350ms; }
.split-text .word:nth-child(9) .word-inner { transition-delay: 400ms; }
.split-text .word:nth-child(10) .word-inner { transition-delay: 450ms; }
.split-text .word:nth-child(11) .word-inner { transition-delay: 500ms; }
.split-text .word:nth-child(12) .word-inner { transition-delay: 550ms; }

/* === Enhanced Social Link Stagger Hover === */
.contact-socials .social-link,
.footer-socials a {
    transition: all 0.5s var(--ease-out-expo), transform 0.5s var(--ease-spring);
}

.contact-socials .social-link:hover,
.footer-socials a:hover {
    animation: socialBounce 0.5s var(--ease-spring);
}

@keyframes socialBounce {
    0% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-10px) scale(1.15); }
    60% { transform: translateY(-4px) scale(1.05); }
    100% { transform: translateY(-6px) scale(1.05); }
}

/* === Premium Nav Link Hover Underline Morph === */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    box-shadow: 0 0 6px var(--orange-glow);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scale(0);
    opacity: 0;
}

/* === Focus Ring for Input Micro-Interaction === */
.form-group.focused label {
    color: var(--orange-light);
    transform: translateY(-2px);
    transition: all 0.3s var(--ease-out-expo);
}

.form-group label {
    transition: all 0.3s var(--ease-out-expo);
}

/* === Premium Section Visible Transition === */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* Don't hide hero and stats since they're above the fold */
.hero-section,
.stats-section {
    opacity: 1;
    transform: none;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-clients {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

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

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

    .service-card {
        height: 400px;
    }

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

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    /* testimonial-card width set by JS */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .media-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .media-item.media-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-icon-wrap {
        width: 70px !important;
        height: 70px !important;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .navbar.scrolled .logo-icon-wrap {
        width: 55px !important;
        height: 55px !important;
    }

    .loader-logo-3d {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 24px !important;
    }

    .loader-logo-img {
        width: 140px !important;
        height: 140px !important;
    }

    .loader-text {
        font-size: 22px !important;
        letter-spacing: 6px !important;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 40px);
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-visual {
        height: 280px;
        max-width: 100%;
        overflow: visible;
    }

    .hero-3d-card,
    .card-3d-inner {
        max-width: 100%;
        overflow: visible;
    }

    .floating-card {
        padding: 14px;
        border-radius: 14px;
    }

    .card-1 {
        top: 20px;
        left: 4%;
    }

    .card-2 {
        top: 10px;
        right: 4%;
    }

    .card-3 {
        bottom: 50px;
        left: 2%;
    }

    .card-4 {
        bottom: 30px;
        right: 4%;
    }

    .card-value {
        font-size: 20px;
    }

    .card-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .card-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .hero-clients {
        flex-direction: column;
        gap: 10px;
    }

    .client-text {
        font-size: 13px;
    }

    .hero-buttons {
        margin-bottom: 36px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 14px;
    }

    .btn-glass {
        padding: 14px 28px;
        font-size: 14px;
    }

    .stats-section {
        padding: 60px 0 70px;
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-3d-wrap {
        padding: 22px 14px;
        border-radius: 18px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .stat-icon-wrap svg {
        width: 26px;
        height: 26px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 44px;
    }

    .section-tag {
        font-size: 10px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 50px 0;
    }

    .cta-content h3 {
        font-size: clamp(20px, 5vw, 28px);
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Services */
    .services-section {
        padding: 80px 0;
    }

    .service-card {
        height: auto;
    }

    .service-card-inner {
        transform: none !important;
    }

    .service-card-front {
        position: relative;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        padding: 28px 22px;
    }

    .service-card-back {
        display: none;
    }

    .service-hover-hint {
        display: none;
    }

    .service-title {
        font-size: 20px;
    }

    .service-desc {
        font-size: 13px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Why section */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card-3d {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .why-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }

    .why-card-3d h3 {
        font-size: 18px;
    }

    .why-card-3d p {
        font-size: 13px;
    }

    .why-number {
        font-size: 40px;
    }

    /* Media section */
    .media-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .media-item.media-large {
        grid-column: span 1;
        min-height: 200px;
    }

    .media-item {
        min-height: 160px;
    }

    .media-overlay {
        padding: 22px;
    }

    .media-overlay h4 {
        font-size: 16px;
    }

    .media-logo-item {
        padding: 14px 24px;
        border-radius: 12px;
    }

    .media-logo-item img {
        height: 36px;
        max-width: 120px;
    }

    /* Results / Case Studies */
    .case-card-3d {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .case-brand {
        font-size: 19px;
    }

    .case-desc {
        font-size: 13px;
    }

    .case-metrics {
        gap: 8px;
    }

    .metric {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-label {
        font-size: 10px;
    }

    /* Testimonials — card width set by JS */
    .testimonial-3d {
        padding: 28px 22px;
        border-radius: 20px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.06);
        will-change: auto;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 16px;
    }

    /* Mobile performance — disable heavy effects */
    .stat-3d-wrap,
    .why-card-3d,
    .case-card-3d,
    .form-3d {
        will-change: auto;
    }

    .floating-card {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        will-change: auto;
    }

    /* Disable heavy pseudo-element animations on mobile */
    .stat-3d-wrap::before,
    .stat-3d-wrap::after,
    .service-card-front::after,
    .why-card-3d::before,
    .why-card-3d::after,
    .case-card-3d::before,
    .testimonial-3d::after {
        display: none;
    }

    /* Simplify CTA animation on mobile */
    .cta-banner::before {
        animation: none;
    }

    .carousel-controls {
        margin-top: 30px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    /* ============================================
       CONTACT / FREE CONSULTATION SECTION FIX
       This is the critical fix for the form 
       going out of mobile screen
       ============================================ */
    .contact-section {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-info .section-title {
        text-align: center;
        font-size: clamp(24px, 6vw, 32px);
    }

    .contact-info .section-tag {
        display: block;
        text-align: center;
    }

    .contact-desc {
        text-align: center;
        font-size: 14px;
        margin-bottom: 28px;
    }

    .contact-features {
        gap: 16px;
        margin-bottom: 28px;
    }

    .contact-feature {
        gap: 12px;
    }

    .cf-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 20px;
    }

    .contact-feature strong {
        font-size: 14px;
    }

    .contact-feature p {
        font-size: 12px;
    }

    .contact-socials {
        justify-content: center;
    }

    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    /* Form container — CRITICAL FIX for overflow */
    .contact-form-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .form-3d {
        padding: 24px 18px;
        border-radius: 20px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group.full {
        margin-bottom: 18px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .form-note {
        font-size: 11px;
        margin-top: 12px;
    }

    .btn-full {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom-links {
        gap: 16px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }

    /* WhatsApp + Back to top */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 84px;
        right: 16px;
        border-radius: 12px;
    }

    /* Modal */
    .modal-content {
        margin: 0 16px;
        padding: 36px 24px;
        border-radius: 22px;
        max-width: calc(100vw - 32px);
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .modal-content h3 {
        font-size: 22px;
    }

    .modal-content p {
        font-size: 14px;
    }

    /* Mobile menu refinements */
    .mobile-link {
        font-size: 26px;
    }

    .mobile-nav-links {
        gap: 22px;
    }

    .mobile-cta {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Decorative elements — hide/reduce on mobile to prevent overflow */
    .bg-orb {
        opacity: 0.5;
    }

    .bg-ring {
        display: none;
    }

    .bg-line {
        display: none;
    }

    .bg-dots,
    .bg-dots-2 {
        display: none;
    }

    .hero-shape {
        opacity: 0.06;
    }

    .shape-1 {
        width: 350px;
        height: 350px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

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

    .nav-container {
        padding: 0 14px;
    }

    .hero-container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-visual {
        height: 240px;
    }

    .floating-card {
        padding: 10px;
        border-radius: 12px;
    }

    .card-1 {
        top: 15px;
        left: 2%;
    }

    .card-2 {
        top: 5px;
        right: 2%;
    }

    .card-3 {
        bottom: 35px;
        left: 1%;
    }

    .card-4 {
        bottom: 15px;
        right: 2%;
    }

    .card-icon {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .card-value {
        font-size: 16px;
    }

    .card-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-3d-wrap {
        padding: 18px 10px;
        border-radius: 16px;
    }

    .stat-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .stat-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    /* Contact form — extra safety for smallest screens */
    .form-3d {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .btn-full {
        padding: 13px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .cta-content h3 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .metric {
        padding: 8px 4px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-label {
        font-size: 9px;
    }

    .case-card-3d {
        padding: 22px 16px;
    }

    .case-brand {
        font-size: 17px;
    }

    .testimonial-3d {
        padding: 24px 18px;
    }

    .testimonial-text {
        font-size: 13px;
        word-break: break-word;
    }

    .why-card-3d {
        padding: 24px 16px;
    }

    .media-logos {
        margin-bottom: 40px;
    }

    .media-logo-item {
        padding: 10px 18px;
    }

    .media-logo-item img {
        height: 28px;
        max-width: 100px;
    }

    .media-overlay {
        padding: 18px;
    }

    .media-overlay h4 {
        font-size: 14px;
    }

    .media-source {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .loader-logo-3d {
        width: 160px !important;
        height: 160px !important;
    }

    .loader-logo-img {
        width: 110px !important;
        height: 110px !important;
    }

    .loader-text {
        font-size: 18px !important;
        letter-spacing: 4px !important;
    }

    .avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .avatar-count {
        font-size: 9px;
    }

    .logo-icon-wrap {
        width: 60px !important;
        height: 60px !important;
    }

    .navbar.scrolled .logo-icon-wrap {
        width: 48px !important;
        height: 48px !important;
    }

    .mobile-link {
        font-size: 22px;
    }

    .mobile-nav-links {
        gap: 18px;
    }
}

/* === Performance === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom scrollbar — Premium */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--orange-light), var(--orange));
}

/* Selection */
::selection {
    background: rgba(255, 107, 53, 0.25);
    color: var(--navy);
}

/* =============================================
   DECORATIVE BACKGROUND ELEMENTS
   Premium gradient orbs, rings, lines, dots
   ============================================= */

.section-bg-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Make sure container content sits above decorative elements */
.services-section .container,
.why-section .container,
.media-section .container,
.results-section .container,
.contact-section .container {
    position: relative;
    z-index: 2;
}

/* === Gradient Orbs — Soft colored blurs === */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    animation: orbFloat 12s ease-in-out infinite;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    animation-duration: 14s;
}

.bg-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74,144,217,0.06) 0%, transparent 70%);
    bottom: -80px;
    right: -60px;
    animation-delay: -3s;
    animation-duration: 16s;
}

.bg-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
    top: -150px;
    right: -120px;
    animation-duration: 18s;
}

.bg-orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74,144,217,0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
    animation-duration: 15s;
}

.bg-orb-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    top: -120px;
    left: 20%;
    animation-duration: 20s;
}

.bg-orb-6 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    animation-delay: -4s;
    animation-duration: 17s;
}

.bg-orb-7 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74,144,217,0.05) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation-duration: 19s;
}

.bg-orb-8 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,107,53,0.04) 0%, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation-delay: -6s;
    animation-duration: 16s;
}

.bg-orb-9 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    top: 10%;
    right: -120px;
    animation-duration: 18s;
}

.bg-orb-10 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-duration: 20s;
}

.bg-orb-11 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74,144,217,0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
    animation-delay: -3s;
    animation-duration: 15s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(1.05); }
    50% { transform: translate(-15px, 20px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

/* === Decorative Rings === */
.bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,107,53,0.06);
    animation: ringPulse 8s ease-in-out infinite;
}

.bg-ring-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    right: 8%;
    border-color: rgba(255,107,53,0.06);
    animation-duration: 10s;
}

.bg-ring-1::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,107,53,0.04);
}

.bg-ring-1::after {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(255,107,53,0.03);
}

.bg-ring-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 5%;
    border-color: rgba(74,144,217,0.05);
    animation-delay: -4s;
    animation-duration: 12s;
}

.bg-ring-2::before {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px solid rgba(74,144,217,0.03);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.1) rotate(15deg); opacity: 1; }
}

/* === Decorative Lines === */
.bg-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.08), transparent);
    animation: lineSlide 8s ease-in-out infinite;
}

.bg-line-1 {
    width: 300px;
    top: 20%;
    left: -50px;
    transform: rotate(-15deg);
}

.bg-line-2 {
    width: 250px;
    bottom: 25%;
    right: -30px;
    transform: rotate(12deg);
    animation-delay: -3s;
}

.bg-line-3 {
    width: 350px;
    top: 40%;
    right: -80px;
    transform: rotate(-8deg);
    animation-delay: -5s;
}

.bg-line-4 {
    width: 280px;
    top: 30%;
    left: -40px;
    transform: rotate(10deg);
    animation-delay: -2s;
}

@keyframes lineSlide {
    0%, 100% { opacity: 0.3; transform: translateX(0) rotate(var(--rotation, -15deg)); }
    50% { opacity: 0.8; transform: translateX(30px) rotate(var(--rotation, -15deg)); }
}

/* === Decorative Dot Grid === */
.bg-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    opacity: 0.3;
    background-image: radial-gradient(circle, rgba(255,107,53,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: dotsFloat 10s ease-in-out infinite;
}

.bg-dots-2 {
    bottom: auto;
    top: 8%;
    left: auto;
    right: 4%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(74,144,217,0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    animation-delay: -4s;
}

@keyframes dotsFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.25; }
    50% { transform: translate(8px, -8px); opacity: 0.45; }
}

/* === Section Wave Dividers === */
.section-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -1px;
    overflow: hidden;
    z-index: 5;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.divider-dark {
    color: #f0f2f8;
    background: transparent;
    margin-top: -80px;
}

.divider-light {
    color: var(--white);
    background: transparent;
    margin-bottom: -1px;
}

/* === Enhanced Card Hover Depth Shadows === */
.stat-card:hover .stat-3d-wrap {
    box-shadow: 
        0 8px 16px rgba(10,37,64,0.04),
        0 20px 40px rgba(10,37,64,0.08),
        0 40px 80px rgba(10,37,64,0.1),
        0 0 60px rgba(255,107,53,0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.why-card:hover .why-card-3d {
    box-shadow: 
        0 8px 16px rgba(10,37,64,0.04),
        0 24px 48px rgba(10,37,64,0.08),
        0 40px 80px rgba(10,37,64,0.08),
        0 0 50px rgba(255,107,53,0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.case-card:hover .case-card-3d {
    box-shadow: 
        0 8px 16px rgba(10,37,64,0.04),
        0 20px 40px rgba(10,37,64,0.07),
        0 36px 72px rgba(10,37,64,0.08),
        0 0 50px rgba(255,107,53,0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.contact-form-wrap:hover .form-3d {
    box-shadow: 
        0 8px 16px rgba(10,37,64,0.04),
        0 24px 48px rgba(10,37,64,0.08),
        0 40px 80px rgba(10,37,64,0.08),
        0 0 60px rgba(255,107,53,0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

/* Premium gradient section transitions */
.services-section::after,
.why-section::after,
.media-section::after,
.results-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,107,53,0.08) 30%, rgba(255,107,53,0.12) 50%, rgba(255,107,53,0.08) 70%, transparent 90%);
    z-index: 3;
}
