/* ==========================================================================
   CSS Variables & Tokens - Cyber Luxury / Cinematic Tech
   ========================================================================== */
:root {
    /* Colors - Deep Navy / Petroleum Blue - Overhauled for extreme dark/neon theme */
    --bg-dark: #000103;      /* Pitch black-blue - even darker */
    --bg-darker: #000000;    /* Ultra pitch black-blue - pure black */
    --bg-card: rgba(0, 2, 6, 0.75); /* Darker translucent glass cards */
    --bg-card-hover: rgba(0, 4, 12, 0.85);

    --text-main: #f8fafc;
    --text-muted: #8b9bb4;

    /* Vibrant Neon Colors - Electric & Royal Blue Theme */
    --accent-primary: #0052ff;  /* Intense electric/royal blue */
    --accent-light: #0052ff;    /* Vibrant bright royal blue */
    --accent-dark: #001f66;     /* Deep navy royal blue base shadow */
    --accent-cyan: #0052ff;     /* Medium royal blue */
    --accent-glow: rgba(0, 82, 255, 0.35); /* Royal blue glow shadow */
    --accent-blue-glow: rgba(0, 82, 255, 0.4); /* Neon blue glow shadow */

    --danger: #ef4444;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;

    /* Glass & Effects - Dynamic Neon borders */
    --glass-border: 1px solid rgba(0, 82, 255, 0.18);
    --glass-border-strong: 1px solid rgba(0, 82, 255, 0.35);
    --glass-blur: blur(20px);
    --shadow-glow: 0 0 35px rgba(0, 82, 255, 0.25), 0 0 15px rgba(0, 82, 255, 0.15);

    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: transparent;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Background Effects (Sci-Fi Luxury)
   ========================================================================== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* Cinematic Grain/Noise */
.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 10;
    pointer-events: none;
}

/* Deep organic base gradient */
.ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 3, 12, 0.95) 0%, #000000 100%);
    opacity: 0.95;
}

/* Glowing Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    transition: transform 0.2s ease-out;
    /* For mouse movement */
    mix-blend-mode: screen;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 40, 150, 0.3), transparent 70%);
    top: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.2), transparent 70%);
    bottom: -100px;
    right: -50px;
    animation: float 30s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 15, 50, 0.4), transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 35s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15vw, 10vh) scale(1.1);
    }

    100% {
        transform: translate(-10vw, 20vh) scale(0.9);
    }
}

/* Volumetric Light / Breathing Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(0, 82, 255, 0.03), transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Neon Sparks Background */
.neon-sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.neon-spark {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #0052ff 0%, rgba(0, 82, 255, 0.4) 100%);
    box-shadow: 0 0 8px #0052ff, 0 0 15px rgba(0, 82, 255, 0.6);
    pointer-events: none;
    will-change: transform, opacity;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-wrap: balance;
}

.text-gradient {
    color: #0052ff;
    display: inline;
    font-weight: 800;
    text-shadow: 0 0 7px rgba(0, 82, 255, 0.6);
}

.text-gradient .word-inner {
    color: #0052ff !important;
}

.text-danger {
    color: var(--danger);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}



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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: var(--section-padding);
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    --default-border: rgba(0, 82, 255, 0.25);
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0036b1 100%);
    color: #ffffff;
    border: 1px solid var(--default-border);
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.45), 0 0 10px rgba(0, 82, 255, 0.15);
    animation: btnPulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 360px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0) 20%, rgba(51, 117, 255, 0.35) 50%, rgba(0, 82, 255, 0) 80%, transparent 100%);
    transform: skewX(-20deg);
    filter: blur(6px);
    animation: lightSweep 10s infinite ease-in-out;
    pointer-events: none;
}

@keyframes btnPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 82, 255, 0.45), 0 0 10px rgba(0, 82, 255, 0.15);
    }

    50% {
        box-shadow: 0 8px 30px rgba(0, 82, 255, 0.7), 0 0 20px rgba(0, 82, 255, 0.45);
    }
}

@keyframes lightSweep {
    0% {
        left: -200%;
    }
    30% {
        left: 250%;
    }
    100% {
        left: 250%;
    }
}

/* borderSweep keyframes removed */

@keyframes shineSweep {
    0% {
        left: -200%;
    }
    30% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}

@keyframes textSwipePulse {
    0% {
        background-position: 150% 0;
        filter: drop-shadow(0 0 3px rgba(0, 82, 255, 0.25));
    }
    30% {
        background-position: -150% 0;
        filter: drop-shadow(0 0 8px rgba(0, 82, 255, 0.5));
    }
    100% {
        background-position: -150% 0;
        filter: drop-shadow(0 0 3px rgba(0, 82, 255, 0.25));
    }
}

@keyframes verticalLineSweep {
    0% {
        background-position: 0 0%;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes horizontalLineSweep {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 82, 255, 0.45);
    }
    50% {
        text-shadow: 0 0 22px rgba(0, 82, 255, 0.85), 0 0 10px rgba(0, 82, 255, 0.5);
    }
}

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

@keyframes cardGlowPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 82, 255, 0.35);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 60px rgba(0, 82, 255, 0.6);
    }
}

/* Swipe removed from secondary and outline buttons, badges, and filters */


.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0036b1 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.6), 0 0 15px rgba(0, 82, 255, 0.35);
    animation-play-state: paused;
}

.btn-secondary {
    --default-border: rgba(0, 82, 255, 0.18);
    background: rgba(0, 28, 85, 0.25);
    color: var(--text-main);
    border: 1px solid var(--default-border);
    backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 0 15px rgba(0, 82, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(0, 28, 85, 0.45);
    border-color: rgba(0, 82, 255, 0.55);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.2), inset 0 0 20px rgba(0, 82, 255, 0.15);
}

.btn-outline {
    --default-border: rgba(0, 82, 255, 0.35);
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--default-border);
}

.btn-outline:hover {
    border-color: var(--accent-light);
    background: rgba(0, 82, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.25);
}

/* Hover glow swipe triggers removed */

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title-sm {
    font-size: 1.9rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: pretty;
}

/* Volume Discount Badge */
.volume-discount-badge {
    --default-border: rgba(0, 82, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(1, 4, 12, 0.65);
    border: 1px solid var(--default-border);
    padding: 12px 24px;
    border-radius: 100px;
    margin-top: 32px;
    backdrop-filter: blur(12px);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(0, 82, 255, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.volume-discount-badge:hover {
    border-color: rgba(0, 82, 255, 0.55);
    background: rgba(0, 28, 85, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 82, 255, 0.2);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.2px;
}

.badge-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0.25) 30%, var(--accent-light) 50%, rgba(0, 82, 255, 0.25) 70%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 10;
}

.navbar.scrolled {
    background: rgba(1, 4, 12, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled::after {
    opacity: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    display: block;
}

.navbar.scrolled .logo-img {
    width: 160px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-light);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent-light);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 1, 4, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    display: none;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 80%;
    max-width: 320px;
    text-align: center;
}

.logo-img-mobile {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(0, 82, 255, 0.6);
}

.mobile-menu-contact {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-video-showcase {
    --default-border: rgba(0, 82, 255, 0.25);
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--default-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 0 10px rgba(1, 4, 12, 0.85);
    background: #000104;
    z-index: 2;
    transition: box-shadow 0.5s, border-color 0.5s;
    cursor: pointer;
}

.hero-visual:hover .hero-video-showcase {
    border-color: rgba(0, 82, 255, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 0 8px rgba(1, 4, 12, 0.6), 0 0 45px rgba(0, 82, 255, 0.35);
}

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

.hero-video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.2) 0%, transparent 65%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-visual:hover .hero-video-glow {
    background: radial-gradient(circle, rgba(0, 82, 255, 0.3) 0%, transparent 70%);
    filter: blur(70px);
    width: 120%;
    height: 120%;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    --default-border: rgba(0, 82, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(1, 4, 12, 0.8);
    border: 1px solid var(--default-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.15);
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hero-badge:hover {
    border-color: rgba(0, 82, 255, 0.45);
    background: rgba(2, 8, 22, 0.95);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.25);
}

.hero-badge i {
    color: var(--accent-light);
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.4);
}

.hero-badge:hover i {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.8);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: normal;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    text-wrap: balance;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.hero-metrics {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-top: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.counter {
    display: inline-block;
    text-align: right;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 82, 255, 0.8), transparent);
    filter: drop-shadow(0 0 4px rgba(0, 82, 255, 0.8));
}

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

.mouse {
    width: 24px;
    height: 36px;
    border: 1px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.wheel {
    width: 2px;
    height: 6px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 5px #ffffff;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem {
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, var(--bg-darker) 0%, transparent 100%);
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0.25) 30%, var(--accent-light) 50%, rgba(0, 82, 255, 0.25) 70%, transparent 100%);
    z-index: 0;
}

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

.problem-card {
    background: var(--bg-card);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 40px 32px;
    border-radius: 16px;
    transition: border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 82, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 82, 255, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 82, 255, 0.25);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}

.card-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 24px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 1), 
                 0 0 30px rgba(255, 0, 0, 0.75), 
                 0 0 45px rgba(255, 0, 0, 0.5);
    transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
}

.problem-card:hover .card-icon {
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 0, 0, 1), 
                 0 0 40px rgba(255, 0, 0, 0.9), 
                 0 0 60px rgba(255, 0, 0, 0.6);
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Solution Section
   ========================================================================== */
.solution {
    position: relative;
}

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

.solution-content .section-desc {
    margin-left: 0;
    margin-bottom: 16px;
}

.solution-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* ==========================================================================
   New Solution Section Mockup
   ========================================================================== */
.solution-visual-area {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.solution-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 400px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.22) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
}

.solution-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    z-index: 2;
    margin: 0 auto;
}

.solution-video-container {
    --default-border: rgba(0, 82, 255, 0.25);
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--default-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 0 10px rgba(1, 4, 12, 0.85);
    background: #000104;
    transition: box-shadow 0.5s, border-color 0.5s;
}

.solution-visual-area:hover .solution-video-container {
    border-color: rgba(0, 82, 255, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 0 8px rgba(1, 4, 12, 0.6), 0 0 45px rgba(0, 82, 255, 0.35);
}

.solution-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-ui-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.solution-badge {
    --default-border: var(--accent-light);
    position: absolute;
    background: rgba(1, 4, 12, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--default-border);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 15px var(--accent-glow);
    z-index: 5;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
}

.solution-badge-1 {
    top: 20%;
    right: -40px;
}

.solution-badge-2 {
    bottom: 25%;
    left: -30px;
}

.solution-list i {
    font-size: 1.5rem;
}

.solution-visuals {
    position: relative;
    display: flex;
    justify-content: center;
}

.ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 16px;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.ui-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.name-box {
    width: 80px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.3);
}

.ui-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ui-text-lines {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
}

.w-70 {
    width: 70%;
}

.w-40 {
    width: 40%;
}

.ui-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: auto;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-badge {
    --default-border: var(--accent-light);
    position: absolute;
    background: rgba(1, 4, 12, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--default-border);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
    z-index: 5;
    color: #ffffff;
    overflow: hidden;
}



.badge-1 {
    top: 20%;
    right: -50px;
}

.badge-2 {
    bottom: 25%;
    left: -40px;
}

/* ==========================================================================
   Pricing / Formats Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    position: relative;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 82, 255, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 82, 255, 0.2);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}

/* Featured Card (Starter in index.html is featured) */
.pricing-card.featured {
    --default-border: rgba(0, 82, 255, 0.2);
    background: rgba(0, 1, 4, 0.98);
    border: 1px solid var(--default-border);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 6px rgba(0, 82, 255, 0.06);
    animation: cardGlowPulseSubtle 4s infinite ease-in-out;
}

@keyframes cardGlowPulseSubtle {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 6px rgba(0, 82, 255, 0.06);
    }
    50% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 82, 255, 0.12);
    }
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-light), rgba(0, 82, 255, 0.25), var(--accent-primary), var(--accent-light));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
    animation: gradientSweep 20s infinite linear;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 14px rgba(0, 82, 255, 0.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 82, 255, 0.12), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Removed intense backlight as it could cause rendering bugs */

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #0052ff;
    text-shadow: 0 0 6px rgba(0, 82, 255, 0.5), 0 0 2px rgba(0, 82, 255, 0.3);
    font-weight: 800;
}

.card-badge {
    --default-border: rgba(0, 82, 255, 0.4);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 0 6px rgba(0, 82, 255, 0.3), 0 0 2px rgba(0, 82, 255, 0.15);
    border: 1px solid var(--default-border);
    overflow: hidden;
    text-shadow: none;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features i {
    margin-top: 4px;
    color: #0052ff;
    text-shadow: 0 0 8px rgba(0, 82, 255, 0.9), 0 0 3px rgba(0, 82, 255, 0.6);
    font-weight: bold;
}

.pricing-card.featured .plan-features i {
    color: #0052ff;
    text-shadow: 0 0 8px rgba(0, 82, 255, 0.9), 0 0 3px rgba(0, 82, 255, 0.6);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.filter-btn {
    --default-border: rgba(0, 82, 255, 0.2);
    background: rgba(0, 28, 85, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid var(--default-border);
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 28, 85, 0.35);
    color: var(--text-main);
    border-color: var(--accent-light);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
}

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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.portfolio-actions.hidden {
    display: none !important;
}

.portfolio-video-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 1, 4, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition-smooth);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
}

.portfolio-info {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.portfolio-item:hover .portfolio-vid {
    transform: scale(1.05);
}

.portfolio-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 82, 255, 0.25) 30%, var(--accent-light) 50%, rgba(0, 82, 255, 0.25) 70%, transparent 100%);
    opacity: 0.4;
}

.process-step {
    position: relative;
    padding-left: 120px;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    --default-border: var(--accent-light);
    position: absolute;
    top: 0;
    left: 34px;
    width: 34px;
    height: 34px;
    background: var(--bg-darker);
    border: 2px solid var(--default-border);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    color: var(--text-main);
    overflow: hidden;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 82, 255, 0.45);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 82, 255, 0.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, background-color 0.5s, box-shadow 0.5s;
}

.stars {
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.8;
    color: var(--text-main);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(0, 82, 255, 0.35);
}

.client-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta {
    position: relative;
    overflow: hidden;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 100px 40px;
    background: rgba(1, 4, 12, 0.7);
    border: 1px solid rgba(0, 82, 255, 0.3);
    border-radius: 32px;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 82, 255, 0.25);
}

.cta-box .glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.2) 0%, transparent 60%);
    z-index: -1;
    filter: blur(50px);
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: normal;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 20px 60px;
    border-radius: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0.25) 30%, var(--accent-light) 50%, rgba(0, 82, 255, 0.25) 70%, transparent 100%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-logo .logo-img {
    width: 220px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-links a:hover span {
    text-decoration: underline;
}



.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 1, 4, 0.95);
    backdrop-filter: blur(25px);
    z-index: 1000;
    display: none; /* Controlled by GSAP */
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--danger);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.lightbox-content {
    width: 90%;
    max-width: 600px;
    height: 90vh;
    position: relative;
}

.lightbox-content::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(148, 163, 184, 0.2);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

/* ==========================================================================
   Responsive Design (Mobile Optimization)
   ========================================================================== */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Navbar Tablet Optimizations */
    .logo-text {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .hero-metrics {
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.0rem);
    }

    .section-title-sm {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }

    .hero-title {
        font-size: clamp(2.0rem, 6vw, 2.7rem);
    }

    /* Problems, Testimonials, and Pricing Slider on Mobile/Tablet */
    .problem-grid,
    .testimonials-grid,
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 24px 5vw;
        /* 24px top/bottom to prevent shadow/badge crop, 5vw sides */
        margin: 0 -5vw;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .problem-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .problem-card,
    .testimonial-card,
    .pricing-card {
        scroll-snap-align: center;
    }

    .problem-card {
        flex: 0 0 28vw;
        background: var(--bg-card);
        backdrop-filter: blur(24px);
        border: var(--glass-border);
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .testimonial-card {
        flex: 0 0 45vw;
    }

    .pricing-card {
        flex: 0 0 55vw;
    }

    .card-short-text {
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.4;
        color: var(--text-main);
        margin: 0;
        font-family: var(--font-heading);
    }

    /* Pricing grid is now handled by the flex slider above */

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .solution-content {
        margin: 0 auto;
        text-align: center;
    }

    .solution-list {
        display: inline-flex;
        align-items: flex-start;
        text-align: left;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .logo-img {
        width: 140px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-contact-btn {
        display: inline-block !important;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Hide mouse icon on touch devices */

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 24px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 82, 255, 0.8), transparent);
        filter: drop-shadow(0 0 4px rgba(0, 82, 255, 0.8));
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
        display: block;
    }

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

    .section-desc {
        font-size: 1rem;
    }

    .volume-discount-badge {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
        gap: 12px;
        margin-top: 24px;
    }

    .problem-card {
        flex: 0 0 78vw;
    }

    .testimonial-card {
        flex: 0 0 85vw;
    }

    .pricing-card {
        flex: 0 0 85vw;
    }

    /* Phone Mockup Mobile Fixes */
    .hero-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-video-showcase {
        margin: 0 auto !important;
    }

    /* New Solution Mockup Mobile Fixes */
    .solution-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .solution-badge-1 {
        right: -15px;
    }

    .solution-badge-2 {
        left: -15px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .process-line {
        left: 24px;
    }

    .process-step {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .step-number {
        left: 8px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .process-step h3 {
        font-size: 1.3rem;
    }

    .cta-box {
        padding: 50px 24px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .portfolio-info h4 {
        font-size: 0.9rem;
    }

    .play-icon {
        font-size: 3rem;
    }

    .lightbox-content {
        width: 100%;
        height: 80vh;
        border-radius: 0;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 2rem;
    }
}

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

    .logo-text {
        font-size: 0.9rem;
    }

    .nav-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .logo-img {
        width: 110px;
    }

    .nav-contact-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-badge span {
        max-width: 250px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .phone-mockup {
        height: 500px;
    }

    .badge-1 {
        right: -10px;
    }

    .badge-2 {
        left: -10px;
    }

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

    /* Keep 2 cols for vertical vids */
    .pricing-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   Premium Smart Navbar Additions
   ========================================================================== */

/* Smart Navbar Auto-Hide */
.navbar {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.4s ease, 
                background-color 0.4s ease, 
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.navbar--hidden {
    transform: translateY(-100%);
}

/* ==========================================================================
   New Royal Blue Swipe Animations & Unified Text/Icon Styling
   ========================================================================== */

/* Unified selector for all Royal Blue icons, stars, and badge icons (with swipe) */
.stars i,
.step-icon i,
.solution-list i,
.plan-features i,
.footer-links a i,
.solution-badge i,
.floating-badge i,
.hero-badge i {
    background: linear-gradient(90deg, #0052ff 0%, #0052ff 40%, #3375ff 50%, #0052ff 60%, #0052ff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 4px rgba(0, 82, 255, 0.35));
    animation: textSwipePulse 6s infinite ease-in-out;
    display: inline-block;
}

/* Static Royal Blue Text, Tags, and Categories (No Swipe) */
.text-primary,
.card-tag,
.portfolio-cat {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.35);
}



