/* ========================================
   InfinitySoftware - White Blue Milky Theme
   ======================================== */

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-purple: #6366f1;
    --accent-cyan: #0ea5e9;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 50%, #cffafe 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.2));
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-light: rgba(99, 102, 241, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reduce Section Spacing */
section {
    padding: 50px 0;
}

.hero {
    padding: 80px 0 !important;
    /* stretch the hero across the full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #c7d2fe;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #bae6fd;
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #a5f3fc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Platform Bar */
.platform-bar {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.08));
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.platform-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.platforms {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.platform-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-item.warning {
    color: #d97706;
}

.platform-item small {
    opacity: 0.7;
    font-size: 0.75rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.lang-divider {
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar Dropdowns */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 6px 0;
}

.nav-dropdown-toggle:hover {
    color: var(--text-primary);
}

.nav-dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block !important;
    padding: 9px 18px !important;
    color: var(--text-secondary) !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--accent-purple) !important;
    padding-left: 22px !important;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mobile-menu.active {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-purple);
}

.btn-glow {
    /* Animation removed to make static */
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4), 0 0 40px rgba(14, 165, 233, 0.2);
    }
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 120px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    /* Animation removed to make static */
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.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: 35px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.hero-feature:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
    border-color: var(--accent-purple);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

/* Reel Showcase */
.reel-showcase {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.reel-showcase-image {
    flex-shrink: 0;
}

.showcase-phone {
    width: 180px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.reel-showcase-features {
    flex: 1;
}

.showcase-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.showcase-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.05));
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-purple);
    line-height: 1.5;
}

.showcase-tagline strong {
    color: var(--accent-purple);
}

.showcase-highlight {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-feature:last-child {
    border-bottom: none;
}

.showcase-feature.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 10px 12px;
    border-radius: var(--radius-md);
    margin-top: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.showcase-feature.highlight span {
    color: var(--text-primary);
}

.feature-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-placeholder {
    position: relative;
    background: var(--bg-tertiary);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PC App UI Showcase */
.app-ui-showcase {
    margin-top: 40px;
    text-align: center;
}

.app-ui-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(14, 165, 233, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.app-ui-screenshot {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
}

.app-ui-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-medium);
    margin-bottom: 15px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-overlay p {
    color: var(--text-secondary);
}

.video-mockup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.mockup-screen {
    width: 100%;
    max-width: 400px;
    background: #1e293b;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28c840;
}

.mockup-content {
    padding: 20px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 30%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 30%;
    }
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.file-item.processing {
    background: rgba(139, 92, 246, 0.2);
    animation: processing 1.5s ease-in-out infinite;
}

@keyframes processing {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Extreme Section */
.extreme-section {
    padding: 100px 0;
    position: relative;
}

.extreme-badge {
    text-align: center;
    margin-bottom: 40px;
}

.extreme-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff0080);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    /* Animation removed to make static */
}

@keyframes extreme-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 0, 128, 0.7), 0 0 60px rgba(255, 107, 0, 0.5);
    }
}

.extreme-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.extreme-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.extreme-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.extreme-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.extreme-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.extreme-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.extreme-feature span:first-child {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.extreme-quote {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid #ff6b00;
    padding: 20px 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.extreme-visual {
    display: flex;
    justify-content: center;
}

.reel-stack {
    position: relative;
    width: 200px;
    height: 300px;
}

.reel {
    position: absolute;
    width: 120px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.reel-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.reel-2 {
    top: 20px;
    left: 30px;
    transform: rotate(0deg);
    z-index: 2;
}

.reel-3 {
    top: 40px;
    left: 60px;
    transform: rotate(10deg);
    z-index: 3;
}

.reel-counter {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.feature-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.niche-tag {
    background: var(--bg-tertiary);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--border-subtle);
}

.niche-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-region {
    margin-bottom: 60px;
}

.region-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.03));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header span:first-child {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-body {
    margin-bottom: 25px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-new .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-new .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-new .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.price-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-tab {
    padding: 12px 30px;
    border: 2px solid var(--border-subtle);
    background: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    color: var(--text-secondary);
}

.pricing-tab:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.pricing-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Order Section */
.order-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.order-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: white;
}

.price-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.05));
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.price-summary-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.price-summary-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-form .btn {
    width: 100%;
    justify-content: center;
}

.order-info {
    padding: 30px;
}

.order-info h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item span:first-child {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.payment-title {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.payment-logo:hover {
    transform: scale(1.05);
}

.payment-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.payment-logo.bkash {
    background: linear-gradient(135deg, #e2136e, #d4145a);
}

.payment-logo.nagad {
    background: linear-gradient(135deg, #f26522, #e85d10);
}

.payment-logo.dbbl {
    background: linear-gradient(135deg, #0066b3, #004a8f);
}

.payment-logo.upay {
    background: linear-gradient(135deg, #6c3494, #5a2a7e);
}

.payment-logo.rocket {
    background: linear-gradient(135deg, #8b2d8b, #7a2277);
}

/* Future Section */
.future-section {
    padding: 100px 0;
    text-align: center;
}

.future-content {
    max-width: 600px;
    margin: 0 auto;
}

.future-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.future-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.future-feature span:first-child {
    color: var(--accent-green);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 15px;
}

.footer-slogan {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.summary-tagline {
    color: var(--text-secondary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.modal-video {
    width: 100%;
    height: 100%;
}

.modal-video iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

/* VEO3 Logo */
.veo3-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.veo3-logo-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.badge-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.highlight-text {
    color: var(--accent-cyan);
    font-weight: 600;
}

.highlight-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4444 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 12px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(247, 147, 30, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Animation removed to make static */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.fire-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes fire-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(247, 147, 30, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6), 0 0 50px rgba(247, 147, 30, 0.4), 0 0 80px rgba(255, 68, 68, 0.2);
    }
}

.bulk-status {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    animation: processing 1.5s ease-in-out infinite;
}

/* Devices Section */
.devices-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Two Column Layout */
.devices-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.devices-left .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.device-card {
    text-align: center;
    transition: var(--transition-medium);
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.device-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
    display: block;
    margin: 0 auto;
}

.device-card:hover .device-image {
    transform: scale(1.02);
}

.device-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.device-icon {
    font-size: 1.3rem;
}

/* Right Column - Video Samples */
.devices-right {
    position: sticky;
    top: 100px;
}

.samples-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.devices-samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.device-sample-card {
    text-decoration: none;
    display: block;
    transition: var(--transition-medium);
}

.device-sample-card:hover {
    transform: translateY(-5px);
}

.device-sample-card .sample-video {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-tertiary);
}

.device-sample-card .sample-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-title {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Languages Section */
.languages-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.languages-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.language-featured {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
}

.lang-card.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
}

.lang-card span {
    font-size: 2rem;
}

.lang-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.languages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lang-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-tag:hover {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
}

.lang-tag.more {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

/* Samples Section */
.samples-section {
    padding: 100px 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sample-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    display: block;
}

.sample-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-card);
}

.sample-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.sample-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.play-overlay span {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.sample-card:hover .play-overlay {
    background: var(--accent-purple);
    transform: translate(-50%, -50%) scale(1.1);
}

.sample-info {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sample-niche {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.sample-lang {
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    color: var(--accent-purple);
    font-weight: 500;
}

/* Updated Pricing */
.pricing-features {
    margin-bottom: 25px;
}

.pricing-feature {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-feature:last-child {
    border-bottom: none;
}

/* Updated Order Form */
.price-summary {
    background: rgba(139, 92, 246, 0.1);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.price-summary-row.main {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    margin: 10px 0;
    padding: 15px 0;
}

.price-summary-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.price-summary-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-summary-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-summary-savings {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-summary-row.savings {
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-links,
    .nav-cta,
    .nav-actions-wrap {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extreme-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .extreme-features {
        align-items: center;
    }

    .extreme-visual {
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    body {
        padding-bottom: 90px !important;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .veo3-logo {
        width: 32px;
        height: 32px;
    }

    /* Platform Bar - Hide on Mobile */
    .platform-bar {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .badge-logo {
        width: 20px;
        height: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-feature {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    /* Reel Showcase Mobile */
    .reel-showcase {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .showcase-phone {
        width: 140px;
    }

    .app-ui-showcase {
        margin-top: 30px;
    }

    .app-ui-screenshot {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .showcase-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .showcase-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .showcase-feature.highlight {
        padding: 8px 10px;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Devices Section */
    .devices-section {
        padding: 60px 0;
    }

    .devices-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .devices-left .section-header {
        text-align: center;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .device-image {
        max-width: 120px;
    }

    .device-label {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .devices-right {
        position: static;
    }

    .samples-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .devices-samples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Extreme Section */
    .extreme-section {
        padding: 60px 0;
    }

    .extreme-badge span {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .extreme-card {
        padding: 30px 20px;
    }

    .extreme-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }

    .extreme-subtitle {
        font-size: 1rem;
    }

    .extreme-feature {
        font-size: 0.95rem;
    }

    .extreme-quote {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .reel-stack {
        width: 150px;
        height: 220px;
    }

    .reel {
        width: 90px;
        height: 150px;
    }

    .reel-counter {
        font-size: 2rem;
    }

    /* Languages Section */
    .languages-section {
        padding: 60px 0;
    }

    .language-featured {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .lang-card {
        padding: 15px 25px;
        width: 100%;
        max-width: 200px;
    }

    .languages-grid {
        gap: 8px;
    }

    .lang-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .niche-tags {
        gap: 6px;
    }

    .niche-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Samples Section */
    .samples-section {
        padding: 60px 0;
    }

    .samples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sample-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .pricing-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-region {
        margin-bottom: 40px;
    }

    .region-title {
        font-size: 1.3rem;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-header {
        margin-bottom: 15px;
    }

    .pricing-header span:first-child {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .pricing-header h4 {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .pricing-header p {
        font-size: 0.8rem;
    }

    .pricing-body {
        margin-bottom: 15px;
    }

    .price-old {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .price-new .currency {
        font-size: 1.2rem;
    }

    .price-new .amount {
        font-size: 2rem;
    }

    .price-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .price-note {
        font-size: 0.8rem;
    }

    .pricing-features {
        margin-bottom: 15px;
    }

    .pricing-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .pricing-card .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Order Section */
    .order-section {
        padding: 50px 0;
    }

    .order-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .order-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .price-summary {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .price-summary-value {
        font-size: 1.3rem;
    }

    .order-form .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .order-info {
        padding: 20px;
        background: white;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-soft);
    }

    .order-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .info-item {
        margin-bottom: 12px;
    }

    .info-item span:first-child {
        font-size: 1.2rem;
    }

    .info-item strong {
        font-size: 0.95rem;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    /* Future Section */
    .future-section {
        padding: 60px 0;
    }

    .future-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        margin-bottom: 10px;
    }

    .footer-links {
        margin-bottom: 0;
    }

    .whatsapp-btn {
        display: inline-flex;
    }

    /* Sticky CTA */
    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-feature {
        justify-content: center;
    }

    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Devices */
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .device-card {
        max-width: 250px;
        margin: 0 auto;
    }

    /* Extreme */
    .extreme-card {
        padding: 25px 15px;
    }

    .extreme-title {
        font-size: 1.4rem;
    }

    .extreme-feature {
        font-size: 0.9rem;
        text-align: left;
    }

    /* Languages */
    .lang-card {
        padding: 12px 20px;
    }

    .lang-card span {
        font-size: 1.5rem;
    }

    /* Features */
    .feature-card {
        padding: 20px;
    }

    /* Pricing */
    .pricing-card {
        padding: 25px 20px;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 15px;
    }

    .price-new .amount {
        font-size: 2.2rem;
    }

    .pricing-feature {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    /* Order */
    .order-form {
        padding: 20px 15px;
    }

    .price-summary {
        padding: 15px;
    }

    .price-summary-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .price-summary-row.main {
        padding: 12px 0;
    }

    /* Footer */
    .footer-bottom p {
        font-size: 0.85rem;
    }

    .summary-tagline {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .extreme-title {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-header h4 {
        font-size: 1.2rem;
    }

    .price-new .amount {
        font-size: 2rem;
    }
}

/* Landscape Mode on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-visual {
        max-width: 350px;
    }

    .video-placeholder {
        aspect-ratio: 16/9;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .feature-card:hover,
    .pricing-card:hover,
    .device-card:hover,
    .sample-card:hover,
    .lang-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .nav-links a:hover::after {
        width: 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .gradient-orb {
        filter: blur(100px);
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gradient-orb {
        animation: none;
    }

    .btn-glow {
        animation: none;
    }

    .progress-fill {
        animation: none;
        width: 70%;
    }

    .file-item.processing {
        animation: none;
    }

    .extreme-badge span {
        animation: none;
    }
}

/* Combined Row Layout for Extreme & Languages */  .combined-row  {
          display:  grid;
          grid-template-columns:  1fr 1fr;
          gap:  30px;
          margin-top:  40px;
      
}

    /* Extreme Card Compact */  .extreme-card-compact  {
          position:  relative;
          background:  white;
          border-radius:  var(--radius-lg);
          padding:  30px;
          box-shadow:  var(--shadow-card);
          border:  1px solid var(--border-subtle);
      
}

    .extreme-glow  {
          position:  absolute;
          inset:  -2px;
          background:  var(--gradient-primary);
          border-radius:  var(--radius-lg);
          opacity:  0.1;
          z-index:  0;
      
}

    .extreme-content  {
          position:  relative;
          z-index:  1;
      
}

    .extreme-title  {
          font-size:  1.8rem;
          font-weight:  700;
          margin-bottom:  10px;
          color:  var(--text-primary);
      
}

    .extreme-subtitle  {
          color:  var(--text-secondary);
          margin-bottom:  20px;
      
}

    .extreme-features-compact  {
          display:  flex;
          flex-direction:  column;
          gap:  8px;
          margin-bottom:  20px;
      
}

    .extreme-feature  {
          display:  flex;
          align-items:  flex-start;
          gap:  10px;
          font-size:  0.9rem;
      
}

    .green-tick  {
          color:  #10b981;
          font-weight:  700;
          font-size:  1.1rem;
          flex-shrink:  0;
      
}

    .extreme-quote  {
          font-style:  italic;
          color:  var(--accent-purple);
          border-left:  3px solid var(--accent-purple);
          padding-left:  15px;
          margin:  20px 0 0 0;
          font-size:  0.95rem;
      
}

    /* Languages Card Compact */  .languages-card-compact  {
          background:  white;
          border-radius:  var(--radius-lg);
          padding:  30px;
          box-shadow:  var(--shadow-card);
          border:  1px solid var(--border-subtle);
      
}

    .languages-title  {
          font-size:  1.5rem;
          font-weight:  700;
          margin-bottom:  8px;
          color:  var(--text-primary);
      
}

    .languages-subtitle  {
          font-size:  1.1rem;
          font-weight:  600;
          color:  var(--accent-purple);
          margin-bottom:  5px;
      
}

    .languages-desc  {
          color:  var(--text-secondary);
          font-size:  0.9rem;
          margin-bottom:  20px;
      
}

    .languages-grid-compact  {
          display:  flex;
          flex-wrap:  wrap;
          gap:  8px;
          margin-top:  15px;
      
}

    .lang-tag  {
          background:  rgba(99,  102,  241,  0.08);
          border:  1px solid rgba(99,  102,  241,  0.2);
          padding:  5px 12px;
          border-radius:  var(--radius-xl);
          font-size:  0.8rem;
          color:  var(--text-primary);
          transition:  var(--transition-fast);
      
}

    .lang-tag:hover  {
          background:  rgba(99,  102,  241,  0.15);
          border-color:  var(--accent-purple);
      
}

    /* Extreme Badge */  .extreme-badge  {
          text-align:  center;
          margin-bottom:  30px;
      
}

    .extreme-badge span  {
          display:  inline-block;
          background:  var(--gradient-primary);
          color:  white;
          padding:  12px 30px;
          border-radius:  var(--radius-xl);
          font-weight:  700;
          font-size:  1rem;
          box-shadow:  var(--shadow-glow);
      
}

    /* Mobile Responsive */  @media (max-width: 768px)  {
          .combined-row  {
                  grid-template-columns:  1fr;
                  gap:  20px;
              
    }

            .extreme-card-compact,
          .languages-card-compact  {
                  padding:  20px;
              
    }

            .extreme-title  {
                  font-size:  1.4rem;
              
    }

            .languages-title  {
                  font-size:  1.2rem;
              
    }

      
}

  /* Mobile Hero Reordering */  @media (max-width: 768px)  {
          .hero .container  {
                  display:  flex;
                  flex-direction:  column;
              
    }

            .hero-content  {
                  order:  1;
              
    }

            .hero-visual  {
                  order:  2;
                  display:  flex;
                  flex-direction:  column;
              
    }

            .reel-showcase  {
                  order:  1;
              
    }

            .app-ui-showcase  {
                  order:  2;
              
    }

      
}

  /* Fix Hero Section Order on Mobile */  .hero .container  {
          display:  grid;
          grid-template-columns:  1fr 1fr;
          gap:  60px;
          align-items:  center;
      
}

    @media (max-width: 768px)  {
          .hero .container  {
                  display:  flex;
                  flex-direction:  column;
                  gap:  30px;
              
    }

            .hero-content  {
                  order:  1  !important;
              
    }

            .hero-visual  {
                  order:  2  !important;
              
    }

      
}

  /* Performance Optimizations & Sticky Order Section */    /* Reduce animations on mobile for better performance */  @media (max-width: 768px)  {

            /* Disable heavy animations on mobile */      *,
          *::before,
          *::after  {
                  animation-duration:  0.3s  !important;
                  transition-duration:  0.2s  !important;
              
    }

            /* Disable parallax and complex animations */      .gradient-orb,
          .bg-animation  {
                  animation:  none  !important;
                  will-change:  auto  !important;
              
    }

            /* Simplify glow effects */      .btn-glow,
          .highlight-feature  {
                  animation:  none  !important;
                  box-shadow:  0 4px 15px rgba(99,  102,  241,  0.3)  !important;
              
    }

      
}

    /* Sticky Order Section */  .order-section  {
          position:  sticky;
          top:  0;
          z-index:  100;
          background:  linear-gradient(135deg,  #f8fafc 0%,  #e0e7ff 100%);
      
}

    /* When order section reaches its natural position,
 unstick it */  @media (min-width: 769px)  {
          .order-section  {
                  position:  relative;
              
    }

      
}

    /* Optimize rendering */  .order-form,
  .pricing-card,
  .feature-card  {
          will-change:  auto;
          transform:  translateZ(0);
          backface-visibility:  hidden;
      
}

    /* Reduce motion for users who prefer it */  @media (prefers-reduced-motion: reduce)  {

            *,
          *::before,
          *::after  {
                  animation-duration:  0.01ms  !important;
                  animation-iteration-count:  1  !important;
                  transition-duration:  0.01ms  !important;
              
    }

      
}

  /* Aggressive Mobile Performance Optimizations */    @media (max-width: 768px)  {

            /* Completely disable ALL animations on mobile */      *,
          *::before,
          *::after  {
                  animation:  none  !important;
                  transition:  none  !important;
              
    }

            /* Remove all background animations */      .bg-animation,
          .gradient-orb  {
                  display:  none  !important;
              
    }

            /* Smaller buttons to reduce rendering */      .btn  {
                  padding:  12px 24px  !important;
                  font-size:  0.9rem  !important;
              
    }

            .btn-primary,
          .btn-secondary  {
                  box-shadow:  none  !important;
              
    }

            /* Remove glow effects */      .btn-glow  {
                  box-shadow:  none  !important;
                  animation:  none  !important;
              
    }

            /* Simplify highlight features */      .highlight-feature  {
                  animation:  none  !important;
                  box-shadow:  none  !important;
                  padding:  8px 16px  !important;
                  font-size:  0.85rem  !important;
              
    }

            /* Disable fire icon animations */      .fire-icon  {
                  width:  16px  !important;
                  height:  16px  !important;
              
    }

            /* Remove all hover effects on mobile */      *:hover  {
                  transform:  none  !important;
                  box-shadow:  none  !important;
              
    }

            /* Disable sticky order section on mobile - causes lag */      .order-section  {
                  position:  relative  !important;
                  top:  auto  !important;
              
    }

            /* Optimize images */      img  {
                  image-rendering:  auto;
                  will-change:  auto;
              
    }

            /* Remove shadows from cards */      .feature-card,
          .pricing-card,
          .device-card  {
                  box-shadow:  0 2px 8px rgba(0,  0,  0,  0.1)  !important;
              
    }

            /* Simplify gradients */      .gradient-text  {
                  background:  #6366f1  !important;
                  -webkit-background-clip:  text  !important;
                  -webkit-text-fill-color:  transparent  !important;
              
    }

            /* Remove pulse animations */      .badge-pulse  {
                  display:  none  !important;
              
    }

            /* Optimize hero features */      .hero-features  {
                  gap:  8px  !important;
              
    }

            .hero-feature  {
                  padding:  8px 10px  !important;
                  font-size:  0.75rem  !important;
              
    }

      
}

    /* Force GPU acceleration only where needed */  .hero-title,
  .section-title  {
          transform:  translateZ(0);
          backface-visibility:  hidden;
      
}

  /* Ultra Aggressive Mobile Optimizations - Target Highlight Buttons */    @media (max-width: 768px)  {
            /* Make highlight feature buttons MUCH smaller */      .highlight-feature  {
                  padding:  6px 12px  !important;
                  font-size:  0.7rem  !important;
                  margin:  4px 0  !important;
                  border-radius:  20px  !important;
                  animation:  none  !important;
                  background:  linear-gradient(135deg,  #ff6b35 0%,  #f7931e 100%)  !important;
                  box-shadow:  none  !important;
                  border:  none  !important;
                  display:  inline-flex  !important;
                  align-items:  center  !important;
                  gap:  4px  !important;
              
    }

            /* Smaller fire/image icons */      .highlight-feature .fire-icon  {
                  width:  12px  !important;
                  height:  12px  !important;
                  min-width:  12px  !important;
              
    }

            /* Smaller hero subtitle text */      .hero-subtitle  {
                  font-size:  0.85rem  !important;
                  line-height:  1.4  !important;
              
    }

            .hero-subtitle strong  {
                  font-size:  0.9rem  !important;
              
    }

            /* Make hero title smaller */      .hero-title  {
                  font-size:  1.8rem  !important;
                  line-height:  1.1  !important;
              
    }

            /* Smaller hero badge */      .hero-badge  {
                  padding:  6px 12px  !important;
                  font-size:  0.7rem  !important;
              
    }

            .badge-logo  {
                  width:  16px  !important;
                  height:  16px  !important;
              
    }

            /* Remove all gradient backgrounds - use solid colors */      .highlight-feature[style*="10b981" ]  {
                  background:  #10b981  !important;
              
    }

            .highlight-feature[style*="8b5cf6" ]  {
                  background:  #8b5cf6  !important;
              
    }

            /* Smaller CTA buttons */      .hero-ctas .btn  {
                  padding:  10px 20px  !important;
                  font-size:  0.85rem  !important;
              
    }

            /* Smaller hero features grid */      .hero-feature span:first-child  {
                  font-size:  0.7rem  !important;
              
    }

            .hero-feature span:last-child  {
                  font-size:  0.7rem  !important;
              
    }

      
}

/* ==========================================================================
   PSO & Regulated Banking Compliance UI & Cart System
   ========================================================================== */

/* SKU & Stock Badges */
.sku-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    font-family: monospace;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Tier Actions (Add to cart & Buy now) */
.tier-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.btn-add-cart {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-add-cart:hover {
    background: var(--accent-purple);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Cart Slide-Over Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    justify-content: flex-end;
}

.cart-drawer {
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-tertiary);
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
}

.cart-item-remove:hover {
    text-decoration: underline;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.cart-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cart-delivery-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-cart-checkout {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cart-checkout:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* Compliance Checkout Agreement */
.checkout-compliance-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: 16px 0;
    text-align: left;
}

.compliance-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.compliance-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    accent-color: var(--accent-purple);
    cursor: pointer;
}

.compliance-checkbox-label a {
    color: var(--accent-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* Demo Credentials Banner */
.demo-credentials-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 40px auto;
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.demo-cred-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-cred-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.demo-cred-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.demo-pill {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-primary);
}

.demo-pill strong {
    color: var(--accent-purple);
}

/* Payment & Regulatory Badges in Footer */
.payment-trust-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pay-badge-item {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-soft);
}

.security-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   INFISOFT User Auth, Dashboard & Support Chat Styles
   ========================================================================== */

/* Navbar Auth Slot & User Dropdown */
.nav-actions-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-auth-slot {
    display: inline-flex;
    align-items: center;
}

.btn-nav-login {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(99, 102, 241, 0.08) !important;
    color: #4f46e5 !important;
    border: 1.5px solid rgba(99, 102, 241, 0.4) !important;
    padding: 8px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 24px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.08) !important;
}

.btn-nav-login:hover {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3) !important;
}

.nav-user-dropdown {
    position: relative;
    display: inline-block;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 5px 14px 5px 6px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.nav-user-btn:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-user-avatar-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-user-name {
    font-size: 0.88rem;
    font-weight: 600;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-dropdown-arrow {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.nav-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    padding: 10px 0;
    display: none;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.nav-user-menu.show {
    display: block;
}

.user-menu-header {
    padding: 10px 18px 8px;
    display: flex;
    flex-direction: column;
}

.user-menu-header strong {
    font-size: 0.92rem;
    color: var(--text-primary);
}

.user-menu-header small {
    font-size: 0.78rem;
    color: var(--text-secondary);
    word-break: break-all;
}

.user-menu-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 8px 0;
}

.user-menu-item {
    display: block;
    padding: 9px 18px;
    font-size: 0.86rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.15s ease;
    font-weight: 500;
}

.user-menu-item:hover {
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-purple);
}

.user-menu-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

/* Auth Modal Styles */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.auth-modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    width: 100%;
    max-width: 440px;
    padding: 32px 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    position: relative;
    animation: slideUp 0.3s ease;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.06);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.auth-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.auth-notice-banner {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--accent-purple);
    margin-bottom: 18px;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
}

.btn-google-auth {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.btn-google-auth:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.auth-divider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.auth-divider-row::before,
.auth-divider-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.auth-tabs-toggle {
    display: flex;
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 18px;
}

.auth-tab-btn {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab-btn.active {
    background: var(--bg-secondary);
    color: var(--text-primary);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.auth-form-group {
    margin-bottom: 14px;
    text-align: left;
}

.auth-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.auth-input-field {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 0.9rem;
    box-sizing: border-box;
}

.auth-input-field:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.btn-auth-submit {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.auth-status-msg {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    margin-top: 14px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.auth-status-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.auth-status-msg.info {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(99, 102, 241, 0.25);
}

/* Purchases & Licenses Dashboard Modal */
.purchases-modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
    animation: slideUp 0.3s ease;
}

.purchases-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.purchases-modal-body {
    padding: 24px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purchase-item-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.purchase-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.purchase-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.badge-status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.license-key-container {
    background: rgba(0,0,0,0.04);
    border: 1px dashed var(--accent-purple);
    border-radius: 10px;
    padding: 14px 16px;
}

.license-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    display: block;
    margin-bottom: 6px;
}

.license-key-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.license-key-box code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    background: rgba(0,0,0,0.08);
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.btn-copy-key {
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-key:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.download-links-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.download-buttons-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-download-tool {
    padding: 9px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-download-tool:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}

.btn-verify-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-verify-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

/* Live Support Chat Modal */
.chat-modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    height: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    position: relative;
    animation: slideUp 0.3s ease;
}

.chat-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages-box {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.chat-me {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-admin {
    align-self: flex-start;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-bottom-left-radius: 2px;
}

.chat-bubble-author {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 2px;
}

.chat-bubble-time {
    font-size: 0.68rem;
    opacity: 0.7;
    margin-top: 4px;
    align-self: flex-end;
}

.chat-input-row {
    padding: 14px 18px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 10px;
}

.chat-input-text {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 0.88rem;
    outline: none;
}

.chat-input-text:focus {
    border-color: var(--accent-purple);
}

.btn-chat-send {
    padding: 10px 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

/* Toast */
.infisoft-toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1e1b4b;
    color: #ffffff;
    border: 1px solid var(--accent-purple);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.infisoft-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Dedicated Customer Dashboard Styles (dashboard.html)
   ========================================================================== */
.dashboard-wrapper {
    padding: 40px 0 80px;
    min-height: calc(100vh - 350px);
}

.dashboard-user-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.dashboard-profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-avatar-wrap {
    position: relative;
}

.dashboard-large-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.dashboard-large-avatar-init {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.dashboard-profile-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dashboard-profile-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.dashboard-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-purple);
}

.dashboard-stat-icon {
    font-size: 2.2rem;
}

.dashboard-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dashboard-stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.dashboard-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.dashboard-tab-btn {
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
}

.dashboard-tab-btn:hover {
    color: var(--accent-purple);
    background: rgba(99, 102, 241, 0.04);
}

.dashboard-tab-btn.active {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
    background: rgba(99, 102, 241, 0.06);
}

.dashboard-auth-guard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    max-width: 550px;
    margin: 40px auto;
    box-shadow: var(--shadow-card);
}
