/* ========================================
   OrderNow Landing Page - 2026 Ultra-Tech Style
   ======================================== */

/* ==================== VARIABLES ==================== */
:root {
    /* Colors */
    --primary: #00D9FF;
    --primary-rgb: 0, 217, 255;
    --secondary: #7C3AED;
    --secondary-rgb: 124, 58, 237;
    --accent: #FF6B35;
    --accent-rgb: 255, 107, 53;
    --success: #00FF88;
    --warning: #FFD93D;

    /* Backgrounds */
    --bg-dark: #0A0E1A;
    --bg-darker: #050810;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 217, 255, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FF3D7F 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ==================== FUTURISTIC EFFECTS ==================== */

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor-dot.hover {
    width: 16px;
    height: 16px;
    background: var(--secondary);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary);
}

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

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

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

.back-to-top:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.back-to-top i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Preloader - Modern QR Scanning Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo {
    height: 50px;
    animation: fadeInDown 0.6s ease forwards, logoPulse 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes logoPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
    }
}

/* QR Scanner Container */
.qr-scanner {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.7);
    animation: qrFadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes qrFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qr-svg {
    width: 100%;
    height: 100%;
}

/* Scanning Line */
.scan-line {
    position: absolute;
    left: 5px;
    right: 5px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    animation: scanMove 2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scanMove {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: calc(100% - 13px);
        opacity: 0.8;
    }
}

/* Corner Brackets */
.scanner-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--primary);
}

.scanner-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 5px 0 0 0;
    animation: cornerPulse 2s ease-in-out infinite;
}

.scanner-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 5px 0 0;
    animation: cornerPulse 2s ease-in-out infinite 0.2s;
}

.scanner-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 5px;
    animation: cornerPulse 2s ease-in-out infinite 0.4s;
}

.scanner-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 5px 0;
    animation: cornerPulse 2s ease-in-out infinite 0.6s;
}

@keyframes cornerPulse {

    0%,
    100% {
        border-color: var(--primary);
        box-shadow: 0 0 5px var(--primary);
    }

    50% {
        border-color: var(--secondary);
        box-shadow: 0 0 15px var(--secondary);
    }
}

/* Loading Text */
.preloader-text {
    text-align: center;
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.loading-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes loadingDots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}

/* 3D Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-inner {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.tilt-card:hover .tilt-card-inner {
    transform: translateZ(20px);
}

/* Neon Glow Effect */
.neon-glow {
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.2);
    }

    to {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
    }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text:hover {
    animation: glitch 0.3s linear;
}

@keyframes glitch {

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

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

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

    80% {
        transform: translate(2px, -2px);
    }
}

/* Magnetic Button */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Holographic Shimmer */
.holographic {
    background: linear-gradient(135deg,
            rgba(255, 0, 0, 0.1) 0%,
            rgba(255, 154, 0, 0.1) 10%,
            rgba(208, 222, 33, 0.1) 20%,
            rgba(79, 220, 74, 0.1) 30%,
            rgba(63, 218, 216, 0.1) 40%,
            rgba(47, 201, 226, 0.1) 50%,
            rgba(28, 127, 238, 0.1) 60%,
            rgba(95, 21, 242, 0.1) 70%,
            rgba(186, 12, 248, 0.1) 80%,
            rgba(251, 7, 217, 0.1) 90%,
            rgba(255, 0, 0, 0.1) 100%);
    background-size: 200% 200%;
    animation: holographic-shift 3s ease infinite;
}

@keyframes holographic-shift {

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

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

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Mobile - disable custom cursor */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
    color: var(--bg-dark);
}

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

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

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

.btn-glass:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    border-color: var(--border-color);
}

.btn-outline-light:hover {
    background: var(--bg-glass);
    border-color: var(--primary);
    color: var(--primary);
}

/* ==================== PROMO BAR ==================== */
.promo-bar {
    background: linear-gradient(90deg, #7C3AED 0%, #FF6B35 50%, #00D9FF 100%);
    background-size: 200% 100%;
    animation: promo-shimmer 3s ease-in-out infinite;
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    letter-spacing: 0.3px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes promo-shimmer {

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

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

.promo-bar code {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 14px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00FF88;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* ==================== MODERN NAVIGATION 2026 ==================== */
.navbar {
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1040;
}

.navbar.scrolled {
    top: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Clean Container */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .container {
    padding: 12px 0;
}

/* Logo Styling */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.navbar-brand img {
    max-height: 42px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
    transition: all 0.4s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.7));
    transform: scale(1.08);
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF, #7C3AED);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Active Nav Link */
.navbar-nav .nav-link.active {
    color: #fff;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Premium Nav Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    margin-top: 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    display: block;
}

/* Show dropdown on hover */
.navbar .nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(0, 217, 255, 0.1);
    color: #00D9FF;
}

.navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

/* Arrow indicator for dropdown */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: 2px;
    content: '';
    border-top: 5px solid rgba(255, 255, 255, 0.7);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.25s ease;
}

.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    border-top-color: #00D9FF;
}

/* Login Button - Clean Ghost Style */
.btn-nav-login {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-nav-login:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* CTA Button - Gradient */
.btn-nav-cta {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00D9FF 0%, #7C3AED 100%);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

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

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

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

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fix for mobile dropdown visibility - .show class is added on click */
.navbar .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar .container {
        padding: 14px 0;
    }

    .navbar-collapse {
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(30px);
        border-radius: 12px;
        margin-top: 16px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link {
        padding: 14px 16px !important;
    }

    .navbar-nav .nav-link::after {
        left: 16px;
        right: 16px;
    }

    /* Mobile dropdown styling - hidden by default */
    .navbar .dropdown-menu {
        display: none !important;
        position: static !important;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 12px;
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 12px;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Show dropdown when .show class is added */
    .navbar .dropdown-menu.show {
        display: block !important;
    }

    .navbar .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(0, 217, 255, 0.15);
        color: #00D9FF;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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

/* Mobile Toggle - Premium */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu - Premium */
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar .container {
        border-radius: 24px;
        padding: 16px 20px;
    }

    .navbar .container::before {
        border-radius: 26px;
    }

    .navbar .container::after {
        border-radius: 24px;
    }

    .navbar-collapse {
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(40px);
        border-radius: 20px;
        margin-top: 20px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .navbar-nav .nav-link {
        padding: 16px 24px !important;
        border-radius: 14px;
        margin-bottom: 6px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-nav-cta {
        padding: 16px 30px;
    }
}

position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

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

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar .container {
        border-radius: 20px;
        padding: 12px 16px;
    }

    .navbar-collapse {
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(30px);
        border-radius: 16px;
        margin-top: 16px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 14px 20px !important;
        border-radius: 12px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

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

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

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

    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Promo Badge */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    position: relative;
    overflow: hidden;
}

.promo-badge .badge-glow {
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100px;
    }

    100% {
        left: 100%;
    }
}

.promo-badge i {
    font-size: 1.1rem;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
    padding: 40px;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.phone-frame {
    position: relative;
    width: 280px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1f36 0%, #0d1020 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    background: var(--bg-darker);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--primary);
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {

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

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

/* ==================== TRUSTED SECTION ==================== */
.trusted-section {
    background: var(--bg-glass);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.country-badge {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.country-badge:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

/* ==================== SECTION STYLES ==================== */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.step-card {
    position: relative;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(var(--primary-rgb), 0.1);
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: var(--bg-dark);
}

.step-image {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.step-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.step-card:hover .step-image {
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.2);
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.steps-connector {
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--border-color) 10%,
            var(--border-color) 90%,
            transparent 100%);
    z-index: 0;
}

/* ==================== ORDER TYPES ==================== */
.order-types-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Order Type Cards - Match Features Page Design */
.order-type-card {
    height: 100%;
}

.order-type-card .feature-card-image {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.order-type-card .feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.order-type-card:hover .feature-card-image img {
    transform: scale(1.08);
}

/* Feature list mini styling */
.feature-list-mini {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list-mini li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.feature-list-mini li i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Feature Card Images - For Features Page */
.feature-card-mini .feature-card-image {
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}

.feature-card-mini .feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card-mini:hover .feature-card-image img {
    transform: scale(1.08);
}

/* ==================== FEATURES ==================== */
.features-section {
    background: var(--bg-darker);
}

.feature-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
}

/* ==================== AI FEATURES ==================== */
.ai-features-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.ai-features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ai-card {
    padding: 0 !important;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ai-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
}

.ai-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ai-card:hover .ai-card-image img {
    transform: scale(1.05);
}

.ai-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Cards without images - add padding */
.ai-card>.ai-icon:first-child {
    margin-top: 30px;
}

.ai-card>h3:first-child {
    margin-top: 30px;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.ai-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
}

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

.ai-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ai-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ai-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.ai-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(var(--success), 0.1);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== BENEFITS ==================== */
.benefits-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonial-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border-radius: 50%;
    font-size: 1.5rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 1rem;
}

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

/* ==================== PRICING ==================== */
.pricing-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.promo-banner {
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    padding: 5px;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 30px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
    text-align: center;
}

.promo-icon {
    font-size: 2.5rem;
}

.promo-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.promo-text p {
    color: var(--text-secondary);
    margin: 0;
}

.pricing-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    background: var(--bg-glass);
    border-color: var(--primary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-discount {
    font-size: 0.9rem;
    color: var(--success);
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

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

.pricing-features li i {
    font-size: 1rem;
    color: var(--success);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* ==================== FAQ ==================== */
.faq-section {
    background: var(--bg-darker);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-glass);
    color: var(--primary);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.final-cta-section {
    background: var(--bg-dark);
}

.cta-card {
    position: relative;
    padding: 60px 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.cta-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.cta-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    max-width: 350px;
}

.cta-form .form-control:focus {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: none;
}

.cta-form .form-control::placeholder {
    color: var(--text-muted);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust i {
    color: var(--success);
}

/* ==================== FOOTER ==================== */
.footer-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-divider {
    border-color: var(--border-color);
    opacity: 1;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
    }

    .navbar-cta {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 45%;
        margin-bottom: 10px;
    }

    .hero-mockup {
        margin-top: 50px;
    }

    /* Tablet: Side-by-side fan layout with smaller cards */
    .order-types-visual {
        height: 380px;
    }

    .visual-card {
        width: 200px;
    }

    .visual-card img {
        height: 260px;
    }

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

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

    .promo-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .floating-card {
        display: none;
    }

    .phone-frame {
        width: 240px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Mobile: Stack cards vertically */
    .order-types-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .visual-card {
        position: relative !important;
        width: 100% !important;
        max-width: 320px;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .visual-card img {
        height: 220px;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-form .form-control {
        width: 100%;
        max-width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling offset for fixed nav */
:target {
    scroll-margin-top: 100px;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding-top: 120px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(var(--primary-rgb), 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 40%);
    animation: cosmic-drift 30s linear infinite;
}

/* ==================== LEGAL CONTENT (Privacy, Terms) ==================== */
.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
    color: var(--text-primary);
}

.contact-form-card .form-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    margin-right: 8px;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* ==================== BLOG PAGE ==================== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.blog-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-category {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

.blog-link {
    font-weight: 600;
    color: var(--primary);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    max-width: 400px;
}

/* ==================== ABOUT PAGE ==================== */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
}

.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 5px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-secondary);
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 25px;
}

.country-flag {
    font-size: 1.5rem;
}

.country-name {
    font-weight: 500;
}

/* ==================== SPECIALTY PAGES ==================== */
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
}

.style-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition-normal);
    text-align: center;
}

.style-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.style-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.style-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.style-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.style-tag {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.tip-card:hover {
    border-color: var(--primary);
}

.tip-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-secondary);
}

.feature-list-large {
    list-style: none;
    padding: 0;
}

.feature-list-large li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.ai-showcase {
    padding: 60px;
}

.ai-icon-large {
    font-size: 8rem;
    margin-bottom: 30px;
    animation: float-slow 4s ease-in-out infinite;
}

.ai-features-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ai-feature-tag {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Trust badges */
.trust-badges .badge {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991.98px) {
    .stats-showcase {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .ai-showcase {
        padding: 40px 20px;
    }

    .ai-icon-large {
        font-size: 5rem;
    }
}

@media (max-width: 767.98px) {
    .legal-content {
        padding: 25px;
    }

    .contact-form-card {
        padding: 25px;
    }
}

/* ==================== SOLVING CHALLENGES SECTION ==================== */
.solving-challenges-section {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(15, 20, 35, 0.95) 100%);
}

.challenge-stats {
    margin-top: 30px;
}

.challenge-stat {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.challenge-stat .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.challenge-stat .stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.demo-mockup .phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

.floating-demo-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-demo-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-demo-badge:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatBadge {

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

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

@media (max-width: 991.98px) {
    .floating-demo-badge {
        display: none;
    }

    .demo-mockup {
        margin-top: 40px;
    }
}

/* ==================== FEATURES PAGE ==================== */

/* Feature Counter */
.feature-counter {
    margin-top: 40px;
}

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

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3-Step Timeline */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 95px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.3;
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    z-index: 1;
}

.timeline-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.step-icon-large {
    font-size: 3rem;
    margin: 20px 0;
    color: var(--primary);
}

.step-icon-large i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-features li i {
    color: var(--success);
    margin-right: 8px;
}

/* Category Navigation */
.feature-category-nav {
    padding: 20px 0;
}

.category-pill {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

/* Feature Count Badge */
.feature-count-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.feature-count-badge .count {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-count-badge .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-count-badge.ai-badge-glow {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

/* Mini Feature Cards */
.feature-card-mini {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-mini:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-card-mini i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
}

.feature-card-mini h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card-mini p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* AI Category Sections */
.ai-category {
    padding: 30px;
    background: rgba(0, 217, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.ai-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
}

.ai-feature-mini {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.ai-feature-mini:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.ai-feature-mini.highlight {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.05);
}

.ai-feature-mini .ai-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.ai-feature-mini h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-feature-mini p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.4;
}

.impact-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

/* Responsive */
@media (max-width: 991.98px) {
    .timeline-line {
        display: none;
    }

    .counter-number {
        font-size: 2rem;
    }

    .feature-count-badge .count {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .feature-counter {
        gap: 20px !important;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .category-pill {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .ai-category {
        padding: 20px;
    }
}

/* ==================== KEY SELLING POINTS SECTION ==================== */

.key-feature-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.key-feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.key-feature-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.15);
}

.key-feature-card.featured:hover {
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.25);
}

.key-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.key-feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.key-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.key-badge.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.key-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.key-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.key-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.key-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-list li i {
    color: var(--success);
    font-size: 1rem;
}

/* AI Section Enhancement */
.ai-section-enhanced {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 217, 255, 0.03) 50%, var(--bg-dark) 100%);
}

.ai-highlight-banner {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.ai-big-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
}

.ai-banner-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.ai-banner-subtext {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive for key features */
@media (max-width: 991.98px) {
    .key-feature-card {
        padding: 30px 25px;
    }

    .key-feature-icon {
        width: 70px;
        height: 70px;
    }

    .key-feature-icon i {
        font-size: 2rem;
    }

    .ai-big-number {
        font-size: 4rem;
    }
}

@media (max-width: 767.98px) {
    .key-title {
        font-size: 1.3rem;
    }

    .ai-big-number {
        font-size: 3rem;
    }

    .ai-banner-text {
        font-size: 1.2rem;
    }
}

/* ==================== FEATURE SHOWCASE ROWS ==================== */

.feature-showcase-row {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-showcase-row:hover {
    border-color: rgba(0, 217, 255, 0.3);
}

.feature-showcase-row.featured-row {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(157, 78, 221, 0.03) 100%);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.1);
}

.feature-showcase-image {
    position: relative;
}

.feature-showcase-image img {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.image-glow.featured {
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, rgba(157, 78, 221, 0.15) 50%, transparent 70%);
}

.exclusive-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

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

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

.showcase-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.showcase-badge.featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--primary);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-list li i {
    color: var(--success);
    font-size: 1rem;
}

.showcase-stats {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 25px;
}

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

.stat-mini .stat-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-mini .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive for showcase rows */
@media (max-width: 991.98px) {
    .feature-showcase-row {
        padding: 30px;
    }

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

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

    .feature-showcase-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .feature-showcase-row {
        padding: 25px;
    }

    .showcase-title {
        font-size: 1.4rem;
    }

    .showcase-stats {
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .stat-mini .stat-value {
        font-size: 1.3rem;
    }
}

/* ==================== COMPARISON PAGE STYLES ==================== */

/* Compare Hero */
.compare-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.compare-logos {
    margin-top: 2rem;
}

.compare-logo {
    padding: 15px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.compare-logo.winner {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-color: var(--primary);
    position: relative;
}

.compare-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.winner-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.vs-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Verdict Cards */
.verdict-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.verdict-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.verdict-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.verdict-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--bg-dark);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table .feature-col {
    text-align: left;
    min-width: 200px;
    font-weight: 500;
}

.comparison-table .platform-col {
    min-width: 120px;
}

.comparison-table .winner-col {
    background: rgba(0, 217, 255, 0.05);
}

.comparison-table thead .winner-col {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(157, 78, 221, 0.15));
}

.platform-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.platform-header .crown {
    font-size: 1.2rem;
}

.platform-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    color: white;
}

.category-row {
    background: var(--bg-dark) !important;
}

.category-row td {
    font-weight: 700;
    text-align: left !important;
    color: var(--text-primary);
    padding: 12px 20px;
    font-size: 0.95rem;
}

.highlight-category {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1)) !important;
}

.highlight-row {
    background: rgba(0, 217, 255, 0.02);
}

.check-yes {
    color: var(--success);
    font-weight: 700;
}

.check-no {
    color: #ef4444;
    opacity: 0.7;
}

.check-partial {
    color: #f59e0b;
}

.check-yes.exclusive {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.value-best {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.comparison-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Platform Detail Cards */
.platform-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
}

.platform-detail-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
}

.platform-detail-card.winner-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(157, 78, 221, 0.03));
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.1);
}

.platform-detail-header {
    margin-bottom: 20px;
}

.crown-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.platform-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.platform-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.platform-highlights,
.platform-limitations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tag {
    padding: 6px 14px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
}

.limitation-tag {
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ef4444;
}

.platform-score {
    margin-bottom: 20px;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--border-color);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-circle.winner {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.score-circle.winner .score-value {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-max {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.score-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

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

.platform-pricing .price {
    font-size: 2rem;
    font-weight: 700;
}

.winner-card .platform-pricing .price {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-pricing .period {
    color: var(--text-secondary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Win Cards */
.win-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.win-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.win-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
}

.win-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.win-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.win-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.btn-white {
    background: white;
    color: var(--bg-dark);
    font-weight: 600;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-dark);
}

/* Responsive for Comparison */
@media (max-width: 1199.98px) {
    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 991.98px) {
    .platform-detail-card {
        padding: 30px;
    }

    .compare-logo {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .comparison-table .feature-col {
        min-width: 150px;
    }

    .comparison-table .platform-col {
        min-width: 100px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .comparison-legend {
        gap: 15px;
    }
}

/* ==================== COMPREHENSIVE RESPONSIVE FIXES ==================== */

/* Ensure no horizontal scroll on any device */
html {
    overflow-x: hidden;
}

/* ===== TABLET BREAKPOINT (992px and below) ===== */
@media (max-width: 991.98px) {

    /* Reduce gradient orb sizes */
    .orb-1 {
        width: 400px;
        height: 400px;
    }

    .orb-2 {
        width: 300px;
        height: 300px;
    }

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

    /* Hero section adjustments */
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* Ensure sections don't overflow */
    section {
        overflow-x: hidden;
    }
}

/* ===== MOBILE BREAKPOINT (768px and below) ===== */
@media (max-width: 767.98px) {

    /* Promo bar - single line on mobile */
    .promo-bar {
        font-size: 0.75rem;
        padding: 8px 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .promo-bar code {
        font-size: 0.75rem;
        padding: 2px 8px;
        letter-spacing: 1px;
    }

    /* Navbar positioning - account for smaller promo bar */
    .navbar {
        top: 32px !important;
    }

    .navbar.scrolled {
        top: 0 !important;
    }

    /* Gradient orbs - prevent horizontal overflow */
    .gradient-orb {
        max-width: 100vw;
    }

    .orb-1 {
        width: 250px;
        height: 250px;
        right: -80px;
        top: -80px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        left: -80px;
    }

    .orb-3 {
        width: 150px;
        height: 150px;
    }

    /* Hero text responsive sizing */
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }

    /* Typing text animation fix */
    .typing-text {
        display: block;
        min-height: 1.5em;
        word-break: break-word;
    }

    /* Single column for cramped grids */
    .row>.col-6:not(.col-md-6):not(.col-lg-6) {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Feature cards single column */
    .feature-card,
    .ai-card,
    .step-card,
    .benefit-card {
        margin-bottom: 1rem;
    }

    /* CTA buttons stack */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    /* Table horizontal scroll wrapper */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Container padding adjustment */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== SMALL MOBILE BREAKPOINT (576px and below) ===== */
@media (max-width: 575.98px) {

    /* Force single column for all 2-column mobile layouts */
    .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Smaller gradient orbs */
    .orb-1 {
        width: 180px;
        height: 180px;
    }

    .orb-2 {
        width: 150px;
        height: 150px;
    }

    /* Compact hero */
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    /* Smaller section paddings */
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Reduce card paddings */
    .feature-card,
    .ai-card-content {
        padding: 15px;
    }

    /* Full width images */
    .hero-phone img,
    .hero-image img {
        max-width: 100%;
    }

    /* Footer adjustments */
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==================== INDEX2 - MODULE CARDS ==================== */
.modules-section {
    background: var(--bg-dark);
}

/* ==================== BENTO GRID LAYOUT ==================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
}

/* Hero cards span 2 columns and 2 rows */
.bento-card.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
}

/* AI card positioned at bottom right */
.bento-card.bento-ai {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
}

.bento-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #0d1121;
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.12);
    color: var(--text-primary);
}

.bento-card.bento-featured {
    border-color: rgba(0, 217, 255, 0.2);
}

.bento-image {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 120px;
    overflow: hidden;
}

.bento-card.bento-hero .bento-image {
    min-height: 200px;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bento-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 17, 33, 0.9) 100%);
    pointer-events: none;
}

.bento-content {
    padding: 18px 20px 22px;
    position: relative;
    z-index: 2;
}

.bento-card.bento-hero .bento-content {
    padding: 24px 28px 28px;
}

.bento-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.bento-card.bento-hero .bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.bento-card.bento-hero .bento-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-link {
    gap: 10px;
    color: #00ffcc;
}

.bento-link i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link i {
    transform: translateX(4px);
}

/* Bento Tags */
.bento-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0a0e1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.bento-tag.ai-tag {
    background: linear-gradient(135deg, #9d4edd, #00d9ff);
}

.bento-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 217, 255, 0.15);
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-count {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0a0e1a;
    margin-left: 6px;
}

/* AI card special styling */
.bento-card.bento-ai {
    border-color: rgba(157, 78, 221, 0.25);
    background: linear-gradient(145deg, rgba(157, 78, 221, 0.08), rgba(13, 17, 33, 1));
}

.bento-card.bento-ai:hover {
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(157, 78, 221, 0.15);
}

/* Bento Grid Responsive */
@media (max-width: 1199.98px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-card.bento-hero {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-card.bento-ai {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 991.98px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(180px, auto);
    }

    .bento-card.bento-hero,
    .bento-card.bento-ai {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575.98px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card.bento-hero,
    .bento-card.bento-ai {
        grid-column: span 1;
    }

    .bento-card.bento-hero .bento-content h3 {
        font-size: 1.3rem;
    }
}

.module-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--primary-rgb), 0.15);
    color: var(--text-primary);
}

.module-card.featured {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
}

.module-card.ai-card-module {
    border-color: rgba(var(--secondary-rgb), 0.3);
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.05) 100%);
}

.module-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-badge.ai-badge {
    background: var(--gradient-primary);
}

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.module-icon i {
    font-size: 1.6rem;
    color: var(--primary);
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.module-card:hover .module-icon i {
    color: var(--bg-dark);
}

.module-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.module-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.module-card:hover .module-link {
    gap: 10px;
}

/* Image-based module cards - Clean Modern Style */
.module-card.has-image {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0f1328;
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.module-card.has-image:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 217, 255, 0.15);
}

.module-card.has-image.featured {
    border-color: rgba(0, 217, 255, 0.25);
}

.module-card.has-image .module-badge {
    position: absolute;
    z-index: 10;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0a0e1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card.has-image:hover .module-image img {
    transform: scale(1.05);
}

.module-image::before {
    display: none;
}

.module-image::after {
    display: none;
}

.module-content {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: #0f1328;
    margin-top: 0;
}

.module-card.has-image h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.module-card.has-image p {
    flex: 1;
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.module-card.has-image .module-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.module-card.has-image:hover .module-link {
    color: #00ffcc;
    gap: 10px;
}

.module-card.has-image .module-link i {
    transition: transform 0.3s ease;
}

.module-card.has-image:hover .module-link i {
    transform: translateX(4px);
}

/* ==================== INDEX2 - TRUSTED SECTION ==================== */
.trusted-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.venue-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
}

.country-badge {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== SUCCESS STORIES - MODERN DESIGN ==================== */
.success-stories-section {
    background: linear-gradient(180deg, #080b16 0%, #0d1121 50%, #080b16 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.story-card {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9), rgba(13, 17, 33, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.08);
}

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

.story-card.featured {
    border-color: rgba(0, 217, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.05), rgba(13, 17, 33, 0.95));
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-icon {
    font-size: 2rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(157, 78, 221, 0.1));
    border-radius: 12px;
    color: var(--primary);
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.story-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.story-body {
    flex: 1;
    margin-bottom: 24px;
}

.story-section {
    margin-bottom: 18px;
}

.story-section:last-child {
    margin-bottom: 0;
}

.story-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.story-label.problem {
    background: rgba(255, 100, 100, 0.15);
    color: #ff8080;
}

.story-label.solution {
    background: rgba(0, 217, 255, 0.15);
    color: var(--primary);
}

.story-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.story-result {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 217, 255, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.story-result.success {
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.1), rgba(0, 255, 150, 0.05));
    border-color: rgba(0, 255, 150, 0.25);
}

.result-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.story-result.success .result-value {
    background: linear-gradient(135deg, #00ff96, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-change {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.result-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 991.98px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 24px;
    }

    .result-value {
        font-size: 2rem;
    }
}

/* ==================== INDEX2 - CASE STUDIES ==================== */
.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.case-study-type {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
}

.case-study-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.case-study-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-top: 18px;
}

.case-study-card h4:first-of-type {
    margin-top: 0;
}

.case-problem,
.case-solution {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.case-result {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--success);
}

.case-result .result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1;
    margin-bottom: 5px;
}

.case-result .result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==================== INDEX2 - AI HIGHLIGHT ==================== */
.ai-highlight-banner {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-highlight-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D9FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.ai-big-number {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.ai-banner-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.ai-banner-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.ai-group-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.ai-group-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
}

.ai-group-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ai-group-icon i {
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.ai-group-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.ai-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ai-features-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-features-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.ai-example {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 12px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--primary);
}

/* ==================== INDEX2 - PRICING ENHANCEMENTS ==================== */
.pricing-best-for {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-discount {
    font-size: 0.85rem;
    color: var(--success);
    margin-top: 5px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    bottom: 2px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--success);
    border-radius: 20px;
    margin-left: 5px;
}

/* ==================== INDEX2 - ENTERPRISE FORM ==================== */
.enterprise-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.03) 100%);
}

.enterprise-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.enterprise-benefits li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.enterprise-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.enterprise-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.enterprise-form .form-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 6px;
}

.enterprise-form .form-control,
.enterprise-form .form-select {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.enterprise-form .form-control:focus,
.enterprise-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    background: var(--bg-darker);
    color: var(--text-primary);
}

.enterprise-form .form-control::placeholder {
    color: var(--text-muted);
}

/* ==================== INDEX2 - SIGNATURE FEATURES ==================== */
.signature-features-section .showcase-badge.featured {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.signature-features-section .image-glow.featured {
    background: var(--gradient-primary);
}

.exclusive-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

/* ==================== INDEX2 - RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 991px) {
    .module-card {
        padding: 22px;
    }

    .ai-highlight-banner {
        padding: 35px 25px;
    }

    .ai-big-number {
        font-size: 3.5rem;
    }

    .ai-banner-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .venue-types {
        gap: 8px !important;
    }

    .venue-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

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

    .enterprise-form-card {
        padding: 25px;
    }

    .ai-big-number {
        font-size: 3rem;
    }
}

/* ==================== NEW LANDING PAGES STYLES ==================== */

/* AI Features Page */
.ai-category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-category-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.ai-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ai-feature-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.ai-feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ai-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.ai-example-box {
    font-size: 0.8rem;
    padding: 10px;
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

/* Demo Page */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-8px);
}

.demo-card.featured {
    border-color: rgba(var(--primary-rgb), 0.4);
}

.demo-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.demo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-card-overlay i {
    font-size: 3rem;
    color: var(--primary);
}

.demo-card-content {
    padding: 24px;
}

.demo-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.demo-badge.customer {
    background: rgba(0, 217, 255, 0.15);
    color: var(--primary);
}

.demo-badge.staff {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.demo-badge.owner {
    background: rgba(0, 255, 136, 0.15);
    color: var(--success);
}

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

.demo-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.demo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.demo-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-features li i {
    color: var(--primary);
}

.demo-qr-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.how-to-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.how-to-step .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
}

.how-to-step .step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.how-to-step .step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Landing Pages - Problem List */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-stats-card {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.problem-stat {
    text-align: center;
    padding: 20px 0;
}

.problem-stat:first-child {
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.problem-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.problem-stat p {
    margin: 10px 0 0 0;
    color: var(--text-secondary);
}

/* Feature Hero Image */
.feature-hero-image {
    position: relative;
}

.feature-hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Compact Feature Cards */
.feature-card-compact {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-compact:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.feature-card-compact .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card-compact .feature-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.feature-card-compact h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-card-compact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Hero Stats Mini */
.hero-stats-mini {
    margin-top: 20px;
}

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

.stat-mini .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}