/* KU.STORE - Stylesheet */
:root {
    /* Premium Cyber-Electric Blue & Space Cyan Color Palette */
    --main-blue: #005cff;
    /* Electric Blue primary */
    --main-blue-hover: #004ecc;
    /* Deep solid blue */
    --main-blue-glow: rgba(0, 92, 255, 0.4);
    --main-blue-glow-weak: rgba(0, 92, 255, 0.08);

    --main-purple: #00d2ff;
    /* Neon Space Cyan highlight */
    --main-purple-hover: #00b4db;
    --main-purple-glow: rgba(0, 210, 255, 0.4);

    --main-teal: #10b981;
    /* Mint green for status/success */
    --main-teal-glow: rgba(16, 185, 129, 0.25);

    --main-bg: #04060a;
    /* Deep obsidian dark space */
    --secondary-bg: #0b0f19;
    /* Rich slate navy */
    --card-bg: #111827;
    /* Premium glass slate */

    --text-primary: #FFFFFF;
    --text-secondary: #c0c6d4;
    /* Soft slate blue */
    --text-muted: #7d859b;
    /* Muted slate */

    --border-color: rgba(0, 92, 255, 0.15);
    --border-color-hover: rgba(0, 210, 255, 0.45);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Ultra smooth ease */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--main-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--main-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-blue);
}

/* Disabled Copycat Clichés */
.scanline {
    display: none !important;
}

.cursor-dot {
    display: none !important;
}

/* Dynamic Ambient Glow Orbs */
.bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    opacity: 0.14;
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    top: 5%;
    right: -10%;
    background: radial-gradient(circle, var(--main-blue) 0%, transparent 70%);
    animation: floatOrb1 25s ease-in-out infinite alternate;
}

.orb-2 {
    top: 35%;
    left: -20%;
    background: radial-gradient(circle, var(--main-purple) 0%, transparent 70%);
    animation: floatOrb2 30s ease-in-out infinite alternate;
}

.orb-3 {
    bottom: 10%;
    right: -15%;
    background: radial-gradient(circle, var(--main-blue) 0%, transparent 70%);
    animation: floatOrb1 28s ease-in-out infinite alternate-reverse;
}

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

    50% {
        transform: translate(60px, 80px) scale(1.1);
    }

    100% {
        transform: translate(-40px, -60px) scale(0.9);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    50% {
        transform: translate(-80px, 40px) scale(1.15);
    }

    100% {
        transform: translate(40px, -80px) scale(0.95);
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

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

.loader-logo img {
    height: 90px;
    filter: drop-shadow(0 0 25px var(--main-blue));
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--main-blue);
    border-radius: 2px;
    animation: loaderProgress 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8));
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header & Floating Capsule Navigation */
.header {
    background: rgba(15, 12, 27, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 16px;
    margin: 16px auto;
    width: calc(100% - 32px);
    max-width: 1200px;
    border-radius: 24px;
    z-index: 90;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.header-content {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.logo-fallback {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--main-blue);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--main-blue);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-blue);
    transition: var(--transition);
}

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

.currency-selector {
    background: var(--secondary-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.currency-selector:hover,
.currency-selector:focus {
    border-color: var(--main-blue);
}

.nav-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 140, 255, 0.1);
    color: var(--main-blue) !important;
    border: 1px solid rgba(45, 140, 255, 0.25);
    padding: 8px 16px !important;
    border-radius: 10px;
    font-weight: 600 !important;
}

.nav-highlight:hover {
    background: var(--main-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.25);
    transform: translateY(-1px);
}

.nav-highlight::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--main-blue);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.25);
}

.btn-primary:hover {
    background: var(--main-blue-hover);
    box-shadow: 0 6px 20px rgba(45, 140, 255, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Magnetic Wrapper */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hero Section (Asymmetric Split Layout) */
.hero-container {
    padding: 100px 0 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.hero-text-area {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--main-purple);
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--main-blue) 70%, var(--main-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Interactive Dashboard Status Widget */
.hero-dashboard-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dashboard-widget {
    background: linear-gradient(145deg, rgba(20, 16, 38, 0.6) 0%, rgba(15, 12, 27, 0.8) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 28px;
    padding: 24px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.dashboard-widget:hover {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.dashboard-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-title-icon {
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--main-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
}

.dashboard-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--main-teal);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--main-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--main-teal);
    animation: statusPulse 1.8s infinite ease-in-out;
}

@keyframes statusPulse {

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

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: var(--transition);
}

.status-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 92, 255, 0.25);
    transform: translateX(3px);
}

.status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge-undetected {
    background: rgba(16, 185, 129, 0.08);
    color: var(--main-teal);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge-updating {
    background: rgba(0, 92, 255, 0.08);
    color: #4ea8ff;
    border: 1px solid rgba(0, 92, 255, 0.2);
}

.status-badge-testing {
    background: rgba(0, 210, 255, 0.08);
    color: var(--main-purple);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.status-badge-detected {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Dashboard Tab System Controls */
.tabs-section {
    padding: 60px 0 80px 0;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(20, 16, 38, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-purple) 100%);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

/* Catalog Search and Filter Toolbar */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(20, 16, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.search-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px 12px 42px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.search-input:focus {
    border-color: var(--main-blue);
    box-shadow: 0 0 12px var(--main-blue-glow-weak);
    background: rgba(0, 0, 0, 0.4);
}

.search-icon-wrapper {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
}

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

.sort-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sort-select {
    background: rgba(0, 0, 0, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.sort-select:focus,
.sort-select:hover {
    border-color: var(--main-blue);
}

/* Panels */
.tab-panel {
    display: none;
    animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-panel.active-panel {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

/* Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Product Cards */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(168, 85, 247, 0.12),
            transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.12);
    transform: translateY(-4px);
}

.product-status {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.status-undetected {
    background: rgba(16, 185, 129, 0.08);
    color: var(--main-teal);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.product-icon {
    font-size: 1.8rem;
    color: var(--main-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    z-index: 2;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
    min-height: 42px;
    z-index: 2;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    z-index: 2;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-buy {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-purple) 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison-table-container {
    background: rgba(20, 16, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    overflow-x: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table th.table-highlight,
.comparison-table td.table-highlight {
    color: var(--main-blue);
    font-weight: 600;
}

.check-icon {
    color: #34D399;
    vertical-align: middle;
    margin-right: 4px;
}

.cross-icon {
    color: #F87171;
    vertical-align: middle;
    margin-right: 4px;
}

/* Mobile Responsive Comparison Cards */
.comparison-cards-container {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.comp-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comp-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-card-title.highlight {
    color: var(--main-blue);
}

.comp-feature-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comp-feature-row:last-child {
    border-bottom: none;
}



/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.faq-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--main-blue);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-item.active {
    border-color: var(--border-color-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--main-blue);
}

.faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
    max-height: 160px;
    transition: max-height 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035), padding 0.3s ease;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.bento-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 20px rgba(45, 140, 255, 0.04);
}

.col-span-2 {
    grid-column: span 2;
}

.full-width {
    grid-column: span 3;
}

.bento-icon {
    font-size: 1.6rem;
    color: var(--main-blue);
    margin-bottom: 16px;
    display: flex;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.bento-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(45, 140, 255, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Modals Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 20px;
}

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

.modal-content {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(248, 113, 113, 0.1);
    color: #F87171;
    border-color: rgba(248, 113, 113, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-icon {
    width: 42px;
    height: 42px;
    background: rgba(45, 140, 255, 0.1);
    color: var(--main-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

/* Floating FAB */
.support-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--main-blue);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.35);
    z-index: 99;
    transition: var(--transition);
}

.support-fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 140, 255, 0.5);
}

.support-fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #F87171;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-bg);
}

/* Chatbox */
.chatbox-container {
    position: fixed;
    bottom: 95px;
    right: 24px;
    width: 340px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    z-index: 98;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbox-container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chatbox-header {
    background: var(--main-blue);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    position: relative;
}

.chatbox-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbox-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.chatbox-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.chatbox-close:hover {
    opacity: 1;
}

.chatbox-body {
    padding: 16px;
}

.chatbox-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Forms */
.form-group {
    margin-bottom: 12px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--main-blue);
    box-shadow: 0 0 8px rgba(45, 140, 255, 0.15);
}

.contact-status {
    font-size: 0.75rem;
    margin-top: 8px;
    text-align: center;
}

.contact-status.success {
    color: #34D399;
}

.contact-status.error {
    color: #F87171;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Social Ticker */
.social-ticker {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-ticker.show {
    transform: translateY(0);
    opacity: 1;
}

.ticker-icon {
    color: var(--main-blue);
}

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

.ticker-text strong {
    color: var(--text-primary);
}

/* Trust Badges & Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 260px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-column: span 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--main-blue);
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--main-blue);
}

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

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-text-area {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

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

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

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

    .col-span-2,
    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .header {
        width: calc(100% - 20px);
        top: 8px;
        margin: 8px auto;
        border-radius: 12px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--secondary-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 24px;
        gap: 16px;
        align-items: stretch;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .support-fab {
        bottom: 16px;
        right: 16px;
    }

    .chatbox-container {
        bottom: 80px;
        right: 16px;
        width: calc(100% - 32px);
    }

    .social-ticker {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .comparison-table-container {
        display: none !important;
    }

    .comparison-cards-container {
        display: flex !important;
    }
}

/* Category Filter Pills (Premium Design System) */
.sub-filters-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.sub-filter-pill {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.sub-filter-pill:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.sub-filter-pill.active {
    background: rgba(45, 140, 255, 0.1);
    border-color: rgba(45, 140, 255, 0.3);
    color: var(--main-blue);
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.1);
    text-shadow: 0 0 10px rgba(45, 140, 255, 0.3);
}

/* Payment Selector Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-card {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.payment-method-card img {
    height: 32px;
    object-contain: fit;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.payment-method-card span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.payment-method-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.payment-method-card.active {
    border-color: var(--main-blue);
    background: rgba(45, 140, 255, 0.08);
    box-shadow: 0 0 15px rgba(45, 140, 255, 0.15);
}

.payment-method-card.active span {
    color: var(--main-blue);
}

/* Custom platform tags on cards */
.product-platform-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
}

.product-platform-badge i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Premium custom dropdown styles */
.select-premium {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238d94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 40px 12px 16px;
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.select-premium:hover {
    border-color: var(--border-color-hover);
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 10px rgba(0, 92, 255, 0.1);
}

.select-premium:focus {
    outline: none;
    border-color: var(--main-blue);
    box-shadow: 0 0 12px rgba(0, 92, 255, 0.25);
}

.select-premium option {
    background-color: #111827;
    color: white;
    padding: 12px;
}

/* Modal Highlights Selectable Styles */
.modal-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 92, 255, 0.03);
    border: 1px solid rgba(0, 92, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    user-select: text !important;
    -webkit-user-select: text !important;
    cursor: text;
}

.modal-highlight-item span {
    user-select: text !important;
    -webkit-user-select: text !important;
}

/* Modal Interactive Package Selector Pills */
.package-pills-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.package-pill {
    flex: 1;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.package-pill:hover {
    border-color: var(--border-color-hover);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 92, 255, 0.05);
}

.package-pill.active {
    background: rgba(0, 92, 255, 0.08);
    border-color: var(--main-blue);
    box-shadow: 0 0 15px rgba(0, 92, 255, 0.2);
}

.package-pill-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-align: center;
}

.package-pill.active .package-pill-label {
    color: white;
}

.package-pill-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--main-purple);
    font-family: var(--font-heading);
}

/* Dedicated Checkout Tab Panel Card Styling */
.checkout-content-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}