:root {
    --primary: #00CFE8;
    --primary-dark: #00b8d4;
    --primary-light: #e0f7fa;
    --primary-glow: rgba(0, 207, 232, 0.3);
    --secondary: #0A0F1E;
    --secondary-light: #1a1f2e;
    --accent: #1B2A4A;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f2f5;
    --border-light: #e8ecf1;
    --text-dark: #0A0F1E;
    --text-muted: #5f6b7a;
    --text-light: #8b95a5;
    --gradient-primary: linear-gradient(135deg, #00CFE8 0%, #00b8d4 100%);
    --gradient-dark: linear-gradient(135deg, #26a6b5 0%, #1B2A4A 100%);
    --gradient-mixed: linear-gradient(135deg, #00CFE8 0%, #26a6b5 100%);
    --shadow-sm: 0 2px 8px rgba(10, 15, 30, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 15, 30, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 15, 30, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 207, 232, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Fluid Responsive Spacing System */
    --section-py: clamp(3.5rem, 6vw, 6rem);
    --section-py-sm: clamp(2.5rem, 4vw, 4rem);
    --card-p: clamp(1.5rem, 3vw, 2.5rem);
    --card-p-sm: clamp(1.15rem, 2vw, 1.75rem);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 50%, #e8f0f8 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.7;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00CFE8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00CFE8;
}

/* Background Layers */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 207, 232, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(10, 15, 30, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 207, 232, 0.03) 0%, transparent 50%);
}

.geometric-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 207, 232, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 207, 232, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

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

    50% {
        transform: translate(25px, 25px) rotate(1deg);
    }

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

.dot-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    background-image: radial-gradient(circle, #00CFE8 1px, transparent 1px);
    background-size: 30px 30px;
    animation: dotFloat 20s linear infinite;
}

@keyframes dotFloat {

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

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

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.06;
    animation: floatShape 25s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #00CFE8;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #0A0F1E;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #00CFE8;
    top: 40%;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: #1B2A4A;
    top: 20%;
    right: 20%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.shape-5 {
    width: 450px;
    height: 450px;
    background: #00CFE8;
    bottom: 10%;
    left: 10%;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(60px, -40px) rotate(8deg) scale(1.1);
    }

    66% {
        transform: translate(-40px, 30px) rotate(-5deg) scale(0.9);
    }

    100% {
        transform: translate(50px, -50px) rotate(10deg) scale(1.05);
    }
}

/* POS Floating Icons */
.floating-pos-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.pos-icon-float {
    position: absolute;
    color: rgba(0, 207, 232, 0.3);
    animation: iconFloatAnimation 18s linear infinite;
}

@keyframes iconFloatAnimation {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 207, 232, 0.5);
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 207, 232, 0.15);
    padding: 0.9rem 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.65rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    max-width: 140px;
    height: auto;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-toggler {
    border: 1.5px solid rgba(0, 207, 232, 0.35);
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    background: rgba(0, 207, 232, 0.05);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 207, 232, 0.25);
    outline: none;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.4rem;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 0.5rem 0.35rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gradient-mixed);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: #00CFE8 !important;
}

.btn-nav {
    background: var(--gradient-mixed);
    color: white !important;
    border: none;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 207, 232, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 207, 232, 0.5);
    color: white !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: clamp(0.75rem, 1.8vw, 0.95rem) clamp(1.5rem, 2.5vw, 2.2rem);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 207, 232, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    letter-spacing: 0.3px;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 207, 232, 0.5);
    color: white !important;
    text-decoration: none;
}

.btn-secondary-custom {
    background: white;
    color: #00CFE8 !important;
    border: 2px solid #00CFE8;
    padding: clamp(0.75rem, 1.8vw, 0.95rem) clamp(1.5rem, 2.5vw, 2.2rem);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 232, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-secondary-custom:hover {
    background: #00CFE8;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 207, 232, 0.4);
    text-decoration: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: clamp(6.5rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 5.5rem);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 207, 232, 0.1);
    color: #00CFE8;
    padding: 0.5rem 1.35rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 207, 232, 0.25);
    animation: glowPulse 2s ease-in-out infinite;
    letter-spacing: 0.3px;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 207, 232, 0.3);
        border-color: rgba(0, 207, 232, 0.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 207, 232, 0);
        border-color: rgba(0, 207, 232, 0.5);
    }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.1rem, 5.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: var(--secondary);
}

.gradient-text {
    background: linear-gradient(135deg, #00CFE8 0%, #0A0F1E 50%, #00CFE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

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

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

.hero-description {
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.75;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: clamp(1.25rem, 3.5vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #00CFE8;
    transition: var(--transition);
    line-height: 1.2;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(0, 207, 232, 0.4);
}

.stat-label {
    font-size: clamp(0.78rem, 1.5vw, 0.85rem);
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ==========================================================================
   3D Animated Interactive Hero Showcase
   ========================================================================== */
.hero-3d-stage {
    position: relative;
    perspective: 1200px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 1.5rem 0.75rem;
}

/* Ambient Glow Spheres */
.hero-glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.glow-sphere-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 207, 232, 0.45) 0%, rgba(0, 207, 232, 0.05) 70%, transparent 100%);
    top: -30px;
    right: -20px;
    animation: glowFloat1 8s ease-in-out infinite alternate;
}

.glow-sphere-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(10, 15, 30, 0.05) 70%, transparent 100%);
    bottom: 20px;
    left: -20px;
    animation: glowFloat2 9s ease-in-out infinite alternate;
}

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

    100% {
        transform: translate(-25px, 20px) scale(1.15);
    }
}

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

    100% {
        transform: translate(25px, -20px) scale(1.1);
    }
}

/* 3D Perspective Card */
.hero-3d-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 25px 50px -12px rgba(10, 15, 30, 0.16),
        0 12px 30px -8px rgba(0, 207, 232, 0.22),
        0 0 0 1px rgba(0, 207, 232, 0.15);
    transform-style: preserve-3d;
    transition: transform 0.18s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
    animation: heroFloatingIdle 6s ease-in-out infinite alternate;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-3d-stage:hover .hero-3d-card {
    animation-play-state: paused;
    box-shadow:
        0 35px 70px -15px rgba(10, 15, 30, 0.22),
        0 20px 45px -10px rgba(0, 207, 232, 0.32),
        0 0 0 1.5px rgba(0, 207, 232, 0.35);
}

@keyframes heroFloatingIdle {
    0% {
        transform: translateY(0px) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-12px) rotateX(-1deg) rotateY(2deg);
    }

    100% {
        transform: translateY(0px) rotateX(2deg) rotateY(-2deg);
    }
}

/* Dynamic Glare Overlay */
.hero-card-glare {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
}

/* Mockup Desktop Topbar */
.hero-mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.15rem;
    background: linear-gradient(180deg, #fbfcfe 0%, #f1f5f9 100%);
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    user-select: none;
    transform: translateZ(10px);
}

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

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.2s ease;
}

.mockup-dots .dot:hover {
    transform: scale(1.2);
}

.dot-red {
    background: #ff5f56;
    box-shadow: 0 0 4px rgba(255, 95, 86, 0.4);
}

.dot-yellow {
    background: #ffbd2e;
    box-shadow: 0 0 4px rgba(255, 189, 46, 0.4);
}

.dot-green {
    background: #27c93f;
    box-shadow: 0 0 4px rgba(39, 201, 63, 0.4);
}

.mockup-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Screen Container */
.hero-screen-container {
    position: relative;
    overflow: visible;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
    background: #0f172a;
    cursor: default;
    transform: translateZ(5px);
    transform-style: preserve-3d;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-dashboard-img.fade-out {
    opacity: 0.2;
    transform: scale(0.98);
}

/* Feature Hotspots */
.feature-hotspot {
    position: absolute;
    transform: translate(-50%, -50%) translateZ(45px);
    z-index: 50;
    cursor: pointer;
    transform-style: preserve-3d;
}

.feature-hotspot:hover,
.feature-hotspot.active {
    z-index: 100;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 207, 232, 0.4);
    animation: radarPulse 2s infinite;
    pointer-events: none;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.9;
    }

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

.hotspot-core {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00CFE8 0%, #0284c7 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 207, 232, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.9);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.feature-hotspot:hover .hotspot-core {
    transform: scale(1.25);
    box-shadow: 0 6px 18px rgba(0, 207, 232, 0.7), 0 0 0 3px rgba(255, 255, 255, 1);
}

/* Hotspot Popovers */
.hotspot-popover {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.95) translateZ(60px);
    width: 250px;
    background: rgba(10, 15, 30, 0.96);
    color: #ffffff;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 207, 232, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100;
}

.hotspot-popover.popover-left {
    left: auto;
    right: -10px;
    transform: translateY(8px) scale(0.95) translateZ(60px);
}

.hotspot-popover.popover-top {
    top: auto;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(-8px) scale(0.95) translateZ(60px);
}

.hotspot-popover.popover-top-left {
    top: auto;
    bottom: calc(100% + 12px);
    left: auto;
    right: -10px;
    transform: translateY(-8px) scale(0.95) translateZ(60px);
}

.feature-hotspot:hover .hotspot-popover,
.feature-hotspot.active .hotspot-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1) translateZ(60px);
}

.feature-hotspot:hover .hotspot-popover.popover-left,
.feature-hotspot.active .hotspot-popover.popover-left {
    transform: translateY(0) scale(1) translateZ(60px);
}

.feature-hotspot:hover .hotspot-popover.popover-top,
.feature-hotspot.active .hotspot-popover.popover-top {
    transform: translateX(-50%) translateY(0) scale(1) translateZ(60px);
}

.feature-hotspot:hover .hotspot-popover.popover-top-left,
.feature-hotspot.active .hotspot-popover.popover-top-left {
    transform: translateY(0) scale(1) translateZ(60px);
}

.popover-header {
    margin-bottom: 0.4rem;
}

.popover-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    margin-bottom: 0.25rem;
}

.bg-primary-soft {
    background: rgba(0, 207, 232, 0.2);
    color: #00CFE8;
}

.bg-warning-soft {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.bg-info-soft {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.popover-header h6 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hotspot-popover p {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #94a3b8;
    margin: 0 0 0.5rem 0;
}

.popover-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    font-size: 0.7rem;
}

.metric-label {
    color: #94a3b8;
}

.metric-val {
    font-weight: 700;
}

/* Hover hint bar */
.hero-hotspot-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 15, 30, 0.75);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-3d-stage:hover .hero-hotspot-hint {
    opacity: 0.3;
}

.pulse-icon {
    color: #00CFE8;
    animation: handBounce 1.5s infinite;
}

@keyframes handBounce {

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

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

/* Floating 3D Depth Badges */
.floating-3d-badge {
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px -5px rgba(10, 15, 30, 0.15), 0 0 0 1px rgba(0, 207, 232, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform-style: preserve-3d;
    transform: translateZ(42px);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
    user-select: none;
}

.floating-3d-badge:hover {
    transform: translateZ(52px) scale(1.04);
    box-shadow: 0 20px 45px -5px rgba(0, 207, 232, 0.25), 0 0 0 1.5px rgba(0, 207, 232, 0.3);
}

.badge-top-left {
    top: -24px;
    left: -28px;
    min-width: 200px;
    animation: badgeFloatLeft 5s ease-in-out infinite alternate;
}

.badge-bottom-right {
    bottom: -56px;
    right: -24px;
    min-width: 210px;
    animation: badgeFloatRight 5.5s ease-in-out infinite alternate;
}

@keyframes badgeFloatLeft {
    0% {
        transform: translateZ(42px) translateY(0);
    }

    100% {
        transform: translateZ(42px) translateY(-8px);
    }
}

@keyframes badgeFloatRight {
    0% {
        transform: translateZ(42px) translateY(0);
    }

    100% {
        transform: translateZ(42px) translateY(8px);
    }
}

.badge-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.bg-gradient-cyan {
    background: linear-gradient(135deg, #00CFE8 0%, #0284c7 100%);
    box-shadow: 0 4px 12px rgba(0, 207, 232, 0.35);
}

.bg-gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.badge-content {
    flex: 1;
}

.badge-title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.badge-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.badge-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.badge-time {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-left: auto;
}

.badge-value-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.order-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #059669;
}

.order-type {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.badge-trend {
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: auto;
}

.badge-sparkline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.revenue-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
}

.mini-sparkline {
    overflow: visible;
}

/* Floating 3D Pill */
.floating-3d-pill {
    position: absolute;
    bottom: -18px;
    left: 20px;
    z-index: 21;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px -4px rgba(10, 15, 30, 0.12), 0 0 0 1px rgba(0, 207, 232, 0.1);
    transform: translateZ(35px);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    color: var(--secondary);
    user-select: none;
    animation: pillFloat 4.5s ease-in-out infinite alternate;
}

@keyframes pillFloat {
    0% {
        transform: translateZ(35px) translateY(0);
    }

    100% {
        transform: translateZ(35px) translateY(-6px);
    }
}

.pill-icon {
    font-size: 0.85rem;
}

/* Interactive Controls below Hero Card */
.hero-interactive-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 3.8rem;
    width: 100%;
    z-index: 5;
    position: relative;
    flex-wrap: wrap;
}

.preview-mode-switch {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(0, 207, 232, 0.22);
    box-shadow: 0 4px 15px rgba(10, 15, 30, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
}

.preview-mode-switch::-webkit-scrollbar {
    display: none;
}

.preview-mode-switch .mode-btn {
    border: none;
    background: transparent;
    padding: 0.42rem clamp(0.55rem, 1.2vw, 0.85rem);
    border-radius: 10px;
    font-size: clamp(0.72rem, 1.1vw, 0.78rem);
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
}

.preview-mode-switch .mode-btn:hover {
    color: var(--secondary);
    background: rgba(0, 207, 232, 0.06);
}

.preview-mode-switch .mode-btn.active {
    background: linear-gradient(135deg, #00CFE8 0%, #00b8d4 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 207, 232, 0.35);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section-padding {
    padding: var(--section-py) 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 207, 232, 0.08);
    color: #00CFE8;
    padding: 0.45rem 1.35rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(0, 207, 232, 0.2);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.section-badge:hover {
    background: rgba(0, 207, 232, 0.15);
    transform: translateY(-2px);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.8vw, 2.65rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.85rem;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.bg-light-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 28px;
    padding: clamp(1.75rem, 2.5vw, 2.35rem) clamp(1.5rem, 2vw, 2rem);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 232, 0.06), transparent);
    transition: left 0.8s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0, 207, 232, 0.16), 0 4px 12px rgba(15, 23, 42, 0.05);
    border-color: rgba(0, 207, 232, 0.4);
}

.feature-icon {
    width: 54px;
    height: 54px;
    background: #e6f9fd;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #00cfe8;
    margin-bottom: 1.45rem;
    transition: all 0.35s ease;
    position: relative;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(5deg);
    background: var(--gradient-mixed);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 207, 232, 0.35);
}

.feature-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.8vw, 1.25rem);
    margin-bottom: 0.75rem;
    color: #0f172a;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.feature-card:hover h5 {
    color: #00cfe8;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: clamp(0.88rem, 1.2vw, 0.935rem);
    line-height: 1.62;
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   Industry Cards
   ========================================================================== */
.industry-card {
    background: white;
    border: 1px solid rgba(0, 207, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.25rem, 2.5vw, 1.85rem);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 207, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.industry-card:hover::after {
    top: -20%;
    right: -20%;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 207, 232, 0.35);
}

.industry-icon {
    width: clamp(65px, 9vw, 80px);
    height: clamp(65px, 9vw, 80px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: clamp(1.6rem, 3vw, 2rem);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.industry-card:nth-child(1) .industry-icon,
.industry-card:nth-child(3) .industry-icon {
    background: linear-gradient(135deg, rgba(0, 207, 232, 0.15), rgba(0, 207, 232, 0.05));
    color: #00CFE8;
}

.industry-card:nth-child(2) .industry-icon {
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.1), rgba(10, 15, 30, 0.05));
    color: #0A0F1E;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(0, 207, 232, 0.25);
}

.industry-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--secondary);
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.industry-card p {
    color: var(--text-muted);
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: 0 auto;
}

/* ==========================================================================
   Benefit Cards
   ========================================================================== */
.benefit-card {
    background: white;
    border: 1px solid rgba(0, 207, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(1.85rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.85rem);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 207, 232, 0.35);
}

.benefit-icon {
    width: clamp(62px, 8vw, 75px);
    height: clamp(62px, 8vw, 75px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.35rem;
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    transition: var(--transition);
    flex-shrink: 0;
}

.benefit-card:nth-child(1) .benefit-icon,
.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, rgba(0, 207, 232, 0.15), rgba(0, 207, 232, 0.05));
    color: #00CFE8;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.1), rgba(10, 15, 30, 0.05));
    color: #0A0F1E;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(8deg);
}

.benefit-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    line-height: 1.65;
    margin: 0;
}



/* ==========================================================================
   Professional SaaS Testimonial Section
   ========================================================================== */
.testimonial-card-pro {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 18px;
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    box-shadow: 0 4px 20px -2px rgba(10, 15, 30, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
    position: relative;
}

.testimonial-card-pro:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 207, 232, 0.45);
    box-shadow: 0 16px 35px -8px rgba(0, 207, 232, 0.16), 0 4px 12px rgba(10, 15, 30, 0.04);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-stars-pro {
    color: #ffb800;
    font-size: 0.88rem;
    display: flex;
    gap: 3px;
}

.merchant-badge {
    font-size: 0.74rem;
    font-weight: 700;
    color: #009bb3;
    background: rgba(0, 207, 232, 0.08);
    border: 1px solid rgba(0, 207, 232, 0.22);
    border-radius: 20px;
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
}

.testimonial-quote {
    font-size: 0.94rem;
    line-height: 1.68;
    color: #334155;
    font-weight: 450;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-card-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A0F1E 0%, #1B2A4A 100%);
    color: #00CFE8;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 207, 232, 0.25);
    box-shadow: 0 4px 12px rgba(10, 15, 30, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card-pro:hover .author-avatar {
    transform: scale(1.06);
    border-color: #00CFE8;
}

.author-details h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: #0A0F1E;
    margin-bottom: 2px;
}

.author-details span {
    font-size: 0.8rem;
    color: #64748b;
}

.author-details em {
    color: #009bb3;
    font-style: normal;
    font-weight: 600;
}

/* Navigation & Pagination Controls */
.testimonial-nav-group {
    display: inline-flex;
    gap: 8px;
}

.testimonial-btn-nav {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0A0F1E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn-nav:hover {
    background: #00CFE8;
    color: #0A0F1E;
    border-color: #00CFE8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 207, 232, 0.3);
}

.swiper-testimonials-container {
    padding: 10px 4px 35px !important;
}

.testimonials-pagination {
    position: static !important;
    margin-top: 1.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 8px;
    background: #00CFE8;
}

/* ==========================================================================
   Modules Section (Tabs)
   ========================================================================== */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: clamp(0.4rem, 1.5vw, 0.85rem);
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid rgba(0, 207, 232, 0.2);
    color: var(--text-dark);
    padding: clamp(0.55rem, 1.5vw, 0.75rem) clamp(1.2rem, 2.5vw, 2rem);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 207, 232, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.tab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.tab-btn:hover {
    border-color: #00CFE8;
    color: #00CFE8;
}

.tab-btn.active {
    background: var(--gradient-mixed);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 207, 232, 0.3);
}

.tab-content-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.tab-item {
    background: #f8fafc;
    border: 1px solid rgba(0, 207, 232, 0.1);
    border-radius: var(--radius-sm);
    padding: clamp(1.25rem, 2vw, 1.6rem);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.tab-item:hover {
    transform: translateY(-4px);
    background: white;
    border-color: rgba(0, 207, 232, 0.35);
    box-shadow: var(--shadow-md);
}

.tab-item i {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    color: #00CFE8;
    margin-bottom: 0.85rem;
    transition: var(--transition);
}

.tab-item:hover i {
    transform: scale(1.15);
}

.tab-item h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.tab-item p {
    color: var(--text-muted);
    font-size: clamp(0.82rem, 1.3vw, 0.88rem);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-card {
    background: white;
    border: 2px solid rgba(0, 207, 232, 0.15);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border-color: #00CFE8;
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    animation: featuredGlow 2s ease-in-out infinite;
}

@keyframes featuredGlow {

    0%,
    100% {
        box-shadow: 0 15px 45px rgba(0, 207, 232, 0.2);
    }

    50% {
        box-shadow: 0 25px 65px rgba(0, 207, 232, 0.35);
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.badge-featured {
    display: inline-block;
    background: var(--gradient-mixed);
    color: white;
    padding: 0.45rem 1.6rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badgeBounce 2s ease-in-out infinite;
    letter-spacing: 0.3px;
}

@keyframes badgeBounce {

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

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

.pricing-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
    transition: var(--transition);
    line-height: 1.1;
}

.pricing-card:hover .price {
    color: #00CFE8;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    padding: 0;
    flex-grow: 1;
}

.price-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 207, 232, 0.08);
    color: var(--text-muted);
    font-size: clamp(0.86rem, 1.4vw, 0.94rem);
    transition: var(--transition);
}

.price-features li:hover {
    color: #00CFE8;
    padding-left: 4px;
}

.price-features li::before {
    content: '✓';
    color: #00CFE8;
    font-weight: 700;
    margin-right: 0.75rem;
}

.price-features li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Subscription Modal & Form Controls
   ========================================================================== */
.modal-content {
    border-radius: 18px !important;
    overflow: hidden;
}

.modal-header {
    padding: 1.15rem 1.5rem;
}

.modal-header .btn-close,
.modal-header .close {
    opacity: 0.9;
    transition: var(--transition);
}

.modal-body {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.form-addons {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.form-addons>i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    font-size: 18px;
    color: #153149;
    pointer-events: none;
    z-index: 2;
}

.form-addons input {
    width: 100%;
    height: 42px;
    padding-left: 42px !important;
    padding-right: 42px !important;
    box-sizing: border-box;
    border-radius: 8px;
}

.form-addons .eyeicon {
    position: absolute;
    right: 14px !important;
    left: auto !important;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    font-size: 18px;
    color: #153149;
    cursor: pointer;
    z-index: 2;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 42px !important;
    border: 1px solid #ced4da !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
    padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    right: 10px !important;
}

.select2-dropdown {
    border-radius: 8px !important;
    border: 1px solid rgba(0, 207, 232, 0.3) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    z-index: 1060 !important;
}

/* ==========================================================================
   Modern 3D Animated FAQ Section
   ========================================================================== */
.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.35;
    z-index: 1;
}

.faq-orb-top {
    width: 360px;
    height: 360px;
    top: -60px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 207, 232, 0.4) 0%, rgba(0, 207, 232, 0) 70%);
    animation: orbFloat 14s infinite alternate ease-in-out;
}

.faq-orb-bottom {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(0, 207, 232, 0) 70%);
    animation: orbFloat 16s infinite alternate-reverse ease-in-out;
}

.faq-item-3d {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 18px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 15, 30, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.faq-item-3d:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 207, 232, 0.45);
    box-shadow: 0 16px 32px -8px rgba(0, 207, 232, 0.16), 0 4px 12px rgba(10, 15, 30, 0.04);
}

.faq-btn-3d {
    background: #ffffff;
    padding: clamp(1.1rem, 2.2vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: none !important;
    transition: background 0.3s ease;
}

.faq-btn-3d::after {
    display: none !important;
}

.faq-btn-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding-right: 15px;
}

.faq-btn-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: #0A0F1E;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.faq-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: rgba(0, 207, 232, 0.1);
    color: #009bb3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
    border: 1px solid rgba(0, 207, 232, 0.22);
    transition: all 0.3s ease;
}

.faq-arrow-indicator {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, color 0.3s, border-color 0.3s;
}

.faq-btn-3d:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 207, 232, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.faq-btn-3d:not(.collapsed) .faq-icon-box {
    background: #00CFE8;
    color: #0A0F1E;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 207, 232, 0.35);
    border-color: #00CFE8;
}

.faq-btn-3d:not(.collapsed) .faq-arrow-indicator {
    transform: rotate(180deg);
    background: #00CFE8;
    color: #0A0F1E;
    border-color: #00CFE8;
    box-shadow: 0 4px 12px rgba(0, 207, 232, 0.35);
}

.faq-body-3d {
    padding: 0 clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.4rem) calc(40px + 14px + clamp(1.15rem, 2.5vw, 1.5rem));
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.75;
    animation: faqFadeSlide 0.35s ease-out;
}

.faq-body-3d p {
    margin: 0;
}

@keyframes faqFadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@media (max-width: 576px) {
    .faq-body-3d {
        padding-left: clamp(1.15rem, 2.5vw, 1.5rem);
    }

    .faq-btn-content {
        gap: 10px;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-box {
    background: var(--gradient-mixed);
    border-radius: clamp(20px, 4vw, 36px);
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 207, 232, 0.3);
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow: 0 20px 50px rgba(0, 207, 232, 0.25);
    }

    50% {
        box-shadow: 0 30px 75px rgba(0, 207, 232, 0.45);
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaWave 4s ease-in-out infinite;
}

@keyframes ctaWave {

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

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

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.cta-box p {
    font-size: clamp(0.92rem, 1.8vw, 1.1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.btn-light-custom {
    background: white;
    color: #00CFE8 !important;
    border: none;
    padding: clamp(0.85rem, 1.8vw, 1.05rem) clamp(1.75rem, 3vw, 2.75rem);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    color: #00CFE8 !important;
    text-decoration: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: white;
    border-top: 1px solid rgba(0, 207, 232, 0.15);
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(1.5rem, 2vw, 2rem);
}

.footer img {
    max-width: 160px;
    height: auto;
}

.footer p {
    font-size: clamp(0.86rem, 1.4vw, 0.92rem);
    line-height: 1.65;
}

.footer h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.65rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer a:hover {
    color: #00CFE8;
    transform: translateX(6px);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(0, 207, 232, 0.1);
    border-radius: 50%;
    color: #00CFE8 !important;
    transition: var(--transition);
    text-decoration: none;
    margin: 0;
}

.social-icons a:hover {
    background: var(--gradient-mixed);
    color: white !important;
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(0, 207, 232, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 207, 232, 0.1);
    padding-top: 1.5rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom .heart {
    color: #ff0000;
    animation: heartBeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartBeat {

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

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}

/* ==========================================================================
   Live Analytics & Graphs Section Styling
   ========================================================================== */
.bg-gradient-cyan {
    background: linear-gradient(135deg, #00CFE8 0%, #00b8d4 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.bg-gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.analytics-panel-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.analytics-panel-card:hover {
    border-color: rgba(0, 207, 232, 0.35);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.analytics-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.35rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(232, 236, 241, 0.7);
}

.panel-icon-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: rgba(0, 207, 232, 0.12);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.panel-title {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.panel-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
    margin-bottom: 0;
}

.analytics-card-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.analytics-chart-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.analytics-chart-legend .legend-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.analytics-chart-legend .legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.badge-live-feed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0, 207, 232, 0.1);
    color: #009bb3;
    border: 1px solid rgba(0, 207, 232, 0.25);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00CFE8;
    box-shadow: 0 0 0 0 rgba(0, 207, 232, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 207, 232, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 207, 232, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 207, 232, 0);
    }
}

.analytics-chart-wrapper {
    position: relative;
    width: 100%;
}

.main-chart-wrapper {
    height: 330px;
}

.sub-chart-wrapper {
    height: 260px;
}

/* ==========================================================================
   Get Quote Section Styling
   ========================================================================== */
.quote-card {
    background: var(--white);
    border: 1px solid rgba(0, 207, 232, 0.16);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 45px rgba(10, 15, 30, 0.07);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    position: relative;
    transition: var(--transition-base);
}

.quote-card:hover {
    border-color: rgba(0, 207, 232, 0.35);
    box-shadow: 0 25px 55px rgba(0, 207, 232, 0.1);
}

.quote-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.quote-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.quote-input-icon {
    position: absolute;
    left: 14px;
    color: #8b95a5;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.25s ease;
    z-index: 2;
}

.quote-textarea-icon {
    top: 14px;
}

.quote-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    font-size: 0.92rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    transition: all 0.25s ease;
}

.quote-input:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 207, 232, 0.15);
    outline: none;
}

.quote-input:focus + .quote-input-icon,
.quote-input-wrapper:focus-within .quote-input-icon {
    color: var(--primary-color);
}

.quote-textarea {
    min-height: 110px;
    resize: vertical;
    padding-top: 0.75rem;
}

/* ==========================================================================
   Floating Sticky WhatsApp Button
   ========================================================================== */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-sticky-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.whatsapp-sticky-btn .whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0A0F1E;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(10, 15, 30, 0.18);
}

.whatsapp-sticky-btn .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #0A0F1E;
}

.whatsapp-sticky-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 10px 28px rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 10px 28px rgba(37, 211, 102, 0.45);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 28px rgba(37, 211, 102, 0.45);
    }
}

@media (max-width: 575.98px) {
    .whatsapp-sticky-btn {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* ==========================================================================
   Comprehensive Responsive System & Multi-Device Breakpoints
   ========================================================================== */

/* Large Desktop / Laptops (1200px to 1399.98px) */
@media (max-width: 1399.98px) {
    .hero-3d-stage {
        max-width: 560px;
    }

    .badge-top-left {
        left: -16px;
    }

    .badge-bottom-right {
        right: -16px;
    }
}

/* Medium Screens & Laptops (992px to 1199.98px) */
@media (max-width: 1199.98px) {
    .pricing-card.featured {
        transform: scale(1.02);
    }

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

    .hero-3d-stage {
        max-width: 500px;
    }

    .badge-top-left {
        top: -16px;
        left: -8px;
        min-width: 180px;
        padding: 0.65rem 0.85rem;
    }

    .badge-bottom-right {
        bottom: -24px;
        right: -8px;
        min-width: 190px;
        padding: 0.65rem 0.85rem;
    }

    .main-chart-wrapper {
        height: 300px;
    }

    .sub-chart-wrapper {
        height: 250px;
    }
}

/* Tablets (768px to 991.98px) */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(0, 207, 232, 0.25);
        border-radius: 20px;
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 16px 40px rgba(10, 15, 30, 0.14);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 0.65rem 1rem !important;
        margin: 0.25rem 0 !important;
        border-radius: 12px;
        display: block;
        font-weight: 600;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 207, 232, 0.1);
        color: #00CFE8 !important;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 0.75rem;
        padding: 0.75rem;
    }

    .hero {
        text-align: center;
        padding: 6.5rem 0 3.5rem;
    }

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

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

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

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-3d-stage {
        margin-top: 2rem;
        max-width: 520px;
        padding: 1.5rem 0.5rem;
    }

    .badge-top-left {
        top: -16px;
        left: -6px;
        min-width: 170px;
        padding: 0.6rem 0.8rem;
    }

    .badge-bottom-right {
        bottom: -20px;
        right: -6px;
        min-width: 180px;
        padding: 0.6rem 0.8rem;
    }

    .floating-3d-pill {
        left: 10px;
        bottom: -12px;
    }

    .main-chart-wrapper {
        height: 280px;
    }

    .sub-chart-wrapper {
        height: 240px;
    }

    .feature-card:hover,
    .industry-card:hover,
    .benefit-card:hover,
    .pricing-card:hover {
        transform: translateY(-6px);
    }
}

/* Small Tablets and Mobile Landscapes (576px to 767.98px) */
@media (max-width: 767.98px) {
    .hero {
        padding: 5.75rem 0 2.5rem;
    }

    .hero-3d-stage {
        max-width: 100%;
        perspective: 800px;
        padding: 1rem 0;
    }

    .hero-3d-card {
        border-radius: 18px;
    }

    .hero-mockup-topbar {
        padding: 0.55rem 0.85rem;
        border-top-left-radius: 17px;
        border-top-right-radius: 17px;
    }

    .mockup-title {
        font-size: 0.72rem;
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .badge-top-left {
        top: -12px;
        left: 0;
        min-width: 155px;
        padding: 0.5rem 0.75rem;
        transform: scale(0.92);
    }

    .badge-bottom-right {
        bottom: -16px;
        right: 0;
        min-width: 165px;
        padding: 0.5rem 0.75rem;
        transform: scale(0.92);
    }

    .floating-3d-pill {
        display: none;
    }

    .hero-interactive-controls {
        margin-top: 2.2rem;
        width: 100%;
    }

    .preview-mode-switch {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px;
        gap: 4px;
        border-radius: 12px;
    }

    .preview-mode-switch .mode-btn {
        flex: 0 0 auto;
        padding: 0.45rem 0.75rem;
        font-size: 0.74rem;
        border-radius: 8px;
    }

    .hotspot-popover {
        width: min(240px, calc(100vw - 40px)) !important;
        font-size: 0.75rem;
        padding: 0.75rem 0.85rem;
    }

    .hotspot-popover.popover-left,
    .hotspot-popover.popover-top-left {
        left: auto !important;
        right: -8px !important;
    }

    .hotspot-popover.popover-top {
        bottom: calc(100% + 8px);
    }

    .stat-item {
        flex: 1 1 90px;
    }

    .analytics-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .analytics-card-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-chart-wrapper {
        height: 250px;
    }

    .sub-chart-wrapper {
        height: 220px;
    }

    .tabs-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 4px 2px 8px;
        scrollbar-width: none;
        gap: 6px;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.55rem 1.15rem;
        font-size: 0.82rem;
    }

    .modal-body .disable_btn {
        width: 100% !important;
        float: none !important;
        margin-top: 0.75rem;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer a:hover {
        transform: none;
    }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575.98px) {
    :root {
        --section-py: 3rem;
        --section-py-sm: 2.25rem;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 5.25rem 0 2rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.18;
        margin-bottom: 1rem;
        word-break: break-word;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

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

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-secondary-custom {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.94rem;
    }

    .hero-stats {
        margin-top: 1.75rem;
        gap: 0.75rem;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .stat-item {
        flex: 1 1 30%;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 207, 232, 0.15);
        border-radius: 14px;
        padding: 0.65rem 0.35rem;
        backdrop-filter: blur(8px);
    }

    .stat-number {
        font-size: 1.35rem;
    }

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

    .hero-3d-stage {
        padding: 0.5rem 0;
        margin-top: 1.5rem;
    }

    .hero-3d-card {
        animation: none;
        transform: none !important;
        border-radius: 16px;
    }

    .mockup-status {
        display: none;
    }

    .mockup-title {
        font-size: 0.7rem;
        max-width: 180px;
    }

    .floating-3d-badge {
        display: none;
    }

    .hero-hotspot-hint {
        display: none;
    }

    .feature-hotspot .hotspot-core {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .feature-hotspot .hotspot-pulse {
        width: 26px;
        height: 26px;
    }

    .hotspot-popover {
        width: 220px !important;
        padding: 0.65rem 0.75rem;
        border-radius: 12px;
    }

    .hotspot-popover p {
        font-size: 0.68rem;
        margin-bottom: 0.35rem;
    }

    .popover-header h6 {
        font-size: 0.76rem;
    }

    .hero-interactive-controls {
        margin-top: 1.25rem;
    }

    .preview-mode-switch {
        padding: 3px;
        gap: 3px;
        border-radius: 10px;
    }

    .preview-mode-switch .mode-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.75rem;
    }

    .feature-card {
        padding: 1.35rem 1.15rem;
        border-radius: 20px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .feature-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.86rem;
    }

    .industry-card,
    .benefit-card {
        padding: 1.5rem 1.15rem;
        border-radius: 20px;
    }

    .industry-icon,
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.45rem;
        margin-bottom: 1rem;
    }

    .analytics-panel-card {
        padding: 1.15rem 1rem;
        border-radius: 18px;
    }

    .panel-title {
        font-size: 0.98rem;
    }

    .panel-subtitle {
        font-size: 0.75rem;
    }

    .panel-icon-badge {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .analytics-chart-legend {
        gap: 8px;
    }

    .analytics-chart-legend .legend-item {
        font-size: 0.72rem;
    }

    .badge-live-feed {
        font-size: 0.68rem;
        padding: 2px 8px;
    }

    .main-chart-wrapper {
        height: 220px;
    }

    .sub-chart-wrapper {
        height: 190px;
    }

    .testimonial-card-pro {
        padding: 1.25rem 1.1rem;
        border-radius: 16px;
        min-height: auto;
    }

    .testimonial-quote {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.85rem;
    }

    .author-details h6 {
        font-size: 0.9rem;
    }

    .author-details span {
        font-size: 0.74rem;
    }

    .tab-item {
        padding: 1.1rem 1rem;
        border-radius: 14px;
    }

    .tab-item i {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .tab-item h6 {
        font-size: 0.95rem;
    }

    .tab-item p {
        font-size: 0.82rem;
    }

    .pricing-card {
        padding: 1.5rem 1.15rem;
        border-radius: 20px;
    }

    .price {
        font-size: 2rem;
        margin: 0.65rem 0;
    }

    .price-features {
        margin: 1rem 0;
    }

    .price-features li {
        font-size: 0.84rem;
        padding: 0.45rem 0;
    }

    .quote-card {
        padding: 1.35rem 1.15rem;
        border-radius: 20px;
    }

    .quote-label {
        font-size: 0.84rem;
    }

    .quote-input {
        font-size: 16px;
        padding: 0.65rem 0.85rem 0.65rem 2.45rem;
        border-radius: 10px;
    }

    .quote-input-icon {
        left: 12px;
        font-size: 0.88rem;
    }

    .quote-textarea-icon {
        top: 12px;
    }

    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-header {
        padding: 0.9rem 1.15rem;
    }

    .modal-title {
        font-size: 1.15rem;
    }

    .modal-body {
        padding: 1.15rem;
    }

    .modal-body label {
        font-size: 0.84rem;
    }

    .modal-body .form-control {
        font-size: 16px;
        height: 42px;
    }

    .faq-btn-3d {
        padding: 0.9rem 1rem;
    }

    .faq-btn-content {
        gap: 10px;
        padding-right: 8px;
    }

    .faq-btn-content span {
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .faq-icon-box {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .faq-arrow-indicator {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.72rem;
    }

    .faq-body-3d {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-box {
        padding: 2.25rem 1.15rem;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 1.55rem;
    }

    .cta-box p {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }

    .btn-light-custom {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.92rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer img {
        max-width: 130px;
    }

    .footer h5 {
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer a {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    /* Reduce performance overhead of background animations on mobile */
    .geometric-pattern,
    .dot-pattern,
    .floating-pos-icons,
    .floating-shapes .shape-3,
    .floating-shapes .shape-4,
    .floating-shapes .shape-5 {
        display: none !important;
    }
}

/* Ultra Small Devices (< 380px) */
@media (max-width: 379.98px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1 {
        font-size: 1.55rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0.85rem;
    }

    .stat-number {
        font-size: 1.15rem;
    }

    .stat-label {
        margin-top: 0;
    }

    .preview-mode-switch .mode-btn {
        padding: 0.35rem 0.45rem;
        font-size: 0.65rem;
    }

    .quote-card {
        padding: 1.15rem 0.85rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.75rem 1.15rem;
        font-size: 0.88rem;
    }

    .whatsapp-sticky-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
        font-size: 24px;
    }
}