*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: #07070a;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.menu-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    cursor: pointer;
    font: inherit;
    background: none;
    border: none;
    color: inherit;
}
img, svg {
    display: block;
    max-width: 100%;
}
ul, ol {
    list-style: none;
}
input, select, textarea {
    font: inherit;
    color: inherit;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-md {
    max-width: 900px;
}
.container-lg {
    max-width: 1100px;
}
.announcement {
    display: none;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header.hidden {
    transform: translateY(-100%);
}
.header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 8px;
    position: relative;
    overflow: hidden;
}
.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.logo:hover .logo-icon::after {
    opacity: 1;
}
.logo-shape {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.logo:hover .logo-shape:nth-child(1) { transform: scale(1.1); }
.logo:hover .logo-shape:nth-child(2) { transform: scale(0.9); }
.logo:hover .logo-shape:nth-child(3) { transform: scale(0.9); }
.logo:hover .logo-shape:nth-child(4) { transform: scale(1.1); }
.logo-shape:nth-child(2) { opacity: 0.7; }
.logo-shape:nth-child(3) { opacity: 0.5; }
.logo-shape:nth-child(4) { opacity: 0.3; }
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.logo-tag {
    font-size: 11px;
    color: #71717a;
    font-weight: 500;
}
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
    border-radius: 100px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, 0.15);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
}
.nav-item:hover::before {
    transform: scale(1);
}
.nav-item:hover {
    color: #ffffff;
}
.nav-item.active {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.15);
}
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}
.nav-item:hover .nav-icon svg {
    transform: scale(1.15);
}
.nav-item span:last-child {
    position: relative;
    z-index: 1;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}
.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 13px;
}
.menu-toggle span::before { top: 15px; }
.menu-toggle span::after { bottom: 15px; }
body.menu-open .menu-toggle span {
    background: transparent;
}
body.menu-open .menu-toggle span::before {
    top: 21px;
    transform: rotate(45deg);
}
body.menu-open .menu-toggle span::after {
    bottom: 21px;
    transform: rotate(-45deg);
}
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #07070a;
    z-index: 999;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
}
body.menu-open .mobile-menu {
    display: flex;
    animation: mobileMenuIn 0.3s ease forwards;
}
@keyframes mobileMenuIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-item {
    display: block;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #a1a1aa;
    border-radius: 12px;
    transition: all 0.25s ease;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}
.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.btn:hover svg {
    transform: translateX(3px);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-glow {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
.btn-white {
    background: #ffffff;
    color: #07070a;
}
.btn-white:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.25);
}
.btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    color: #52525b;
    cursor: not-allowed;
    pointer-events: none;
}
.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
}
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
}
.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}
.btn-icon.edit:hover { background: rgba(59, 130, 246, 0.2); }
.btn-icon.del:hover { background: rgba(239, 68, 68, 0.2); }
.main {
    min-height: 100vh;
    padding-top: 0;
}

.hero {
    padding-top: 140px;
}
.hero > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 40%, rgba(6, 182, 212, 0.1), transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: heroFloat 20s ease-in-out infinite;
    will-change: transform;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.2);
    top: -20%;
    left: -15%;
}
.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.15);
    bottom: 0%;
    right: -10%;
    animation-delay: -10s;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(30px, 30px) scale(1.02); }
}
.hero-content {
    max-width: 600px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}
.badge-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    margin-bottom: 24px;
}
.title-line {
    display: block;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.title-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #06b6d4 50%, #8b5cf6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
.hero-desc {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}
.hero-stat:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}
.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat:hover .stat-value {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
}
.stat-label {
    font-size: 13px;
    color: #71717a;
    transition: color 0.3s ease;
}
.hero-stat:hover .stat-label {
    color: #a1a1aa;
}
/* ============================================
   HERO VISUAL - TRUST CARD
   ============================================ */

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

.hero-card-main {
    position: relative;
    background: linear-gradient(165deg, rgba(30, 30, 45, 0.95), rgba(15, 15, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    width: 380px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        margin-bottom: 70px;
        margin-left: 60px;
}

/* Gradient border */
.hero-card-main::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(165deg, rgba(139, 92, 246, 0.5), transparent 40%, transparent 60%, rgba(6, 182, 212, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.platform-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.platform-card:hover .platform-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

/* Platform logos row */
.hcm-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 24px 0;
}

.hcm-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hcm-platform-icon:hover {
    transform: translateY(-4px);
}

.hcm-platform-icon.google {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hcm-platform-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #0d65d9);
}

.hcm-platform-icon.microsoft {
    background: linear-gradient(135deg, #00A4EF, #0078d4);
}

.hcm-platform-icon.tiktok {
    background: linear-gradient(135deg, #000, #25F4EE);
    position: relative;
}

.hcm-platform-more {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.hcm-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 24px 28px;
    gap: 8px;
}

.hcm-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}



.hcm-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.hcm-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.2), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* Top bar */
.hcm-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hcm-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

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

.hcm-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.rating-count {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Main content */
.hcm-main {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 24px;
}

.hcm-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hcm-logo svg {
    filter: drop-shadow(0 4px 12px rgba(66, 133, 244, 0.3));
}

.hcm-info {
    flex: 1;
}

.hcm-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hcm-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Stats */
.hcm-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hcm-stat {
    flex: 1;
    text-align: center;
}

.hcm-stat .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.hcm-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hcm-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Trust badges */
.hcm-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 18px 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item svg {
    color: #10b981;
}

/* CTA */
.hcm-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 20px 20px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.hcm-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

/* Proof */
.hcm-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    border: 2px solid rgba(15, 15, 25, 1);
    margin-left: -8px;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.proof-text strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-visual {
        margin-top: 48px;
    }
    
    .hero-card-main {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-card-main {
        border-radius: 20px;
    }
    
    .hcm-main {
        padding: 24px 20px;
    }
    
    .hcm-logo {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .hcm-logo svg {
        width: 48px;
        height: 48px;
    }
    
    .hcm-title {
        font-size: 18px;
    }
    
    .hcm-trust {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hcm-stat .stat-value {
        font-size: 18px;
    }
}


/* Ambient glow */
.hcm-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.3) 0%, rgba(52, 168, 83, 0.2) 30%, rgba(251, 188, 4, 0.1) 60%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* Logo */
.hcm-logo {
    position: relative;
    z-index: 1;
    animation: logoPulse 4s ease-in-out infinite;
}

.hcm-logo svg {
    filter: drop-shadow(0 10px 30px rgba(66, 133, 244, 0.3));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Badges grid */
.hcm-badges {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hcm-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hcm-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hcm-badge-icon svg {
    width: 20px;
    height: 20px;
}

.hcm-badge-icon span {
    font-size: 12px;
    font-weight: 700;
}

.hcm-badge:hover .hcm-badge-icon {
    transform: translateY(-4px);
}

/* Badge colors */
.hcm-badge-icon.verified {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hcm-badge-icon.secure {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #9ca3af;
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.4);
}

.hcm-badge-icon.rating {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.hcm-badge-icon.support {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #fff;
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.4);
}

.hcm-badge-icon.instant {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hcm-badge-icon.guarantee {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hcm-badge span:last-child {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-visual {
        margin-top: 48px;
    }
    
    .hero-card-main {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .hcm-logo svg {
        width: 90px;
        height: 90px;
    }
    
    .hcm-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-card-main {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .hcm-logo svg {
        width: 70px;
        height: 70px;
    }
    
    .hcm-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .hcm-badge-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .hcm-badge-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .hcm-badge span:last-child {
        font-size: 9px;
    }
}


.hc-glow {
    position: absolute;
    inset: -50%;
    background: var(--gradient);
    opacity: 0;
    filter: blur(60px);
    transition: opacity 0.4s ease;
    z-index: -1;
}
.hero-card:hover .hc-glow {
    opacity: 0.15;
}
.hc-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.hc-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hero-card:hover .hc-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.hc-info {
    flex: 1;
    min-width: 0;
}
.hc-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}
.hero-card:hover .hc-name {
    color: #ffffff;
}
.hc-meta {
    font-size: 13px;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hc-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.hc-price {
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
    white-space: nowrap;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hero-card:hover .hc-price {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.05);
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 13px;
    color: #a1a1aa;
    transition: all 0.3s ease;
    cursor: default;
}
.hf-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}
.hf-item svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.hf-item:hover svg {
    transform: scale(1.2);
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8b5cf6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-desc {
    font-size: 18px;
    color: #a1a1aa;
    max-width: 600px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-tag::before {
    display: none;
}
.section-header .section-desc {
    margin: 0 auto;
}
/* ============================================
   PLATFORM CARDS - CLEAN REDESIGN
   ============================================ */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.platform-card {
    position: relative;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

/* Remove old gradient border effect */
.platform-card::before {
    display: none;
}

/* Subtle glow on hover using the card's gradient color */
.platform-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient, linear-gradient(90deg, #8b5cf6, #06b6d4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-card:hover::after {
    opacity: 1;
}



.platform-card:hover .pc-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Title */
.platform-card .pc-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

/* Description */
.platform-card .pc-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Divider */
.platform-card .pc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

/* Footer */
.platform-card .pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Stock count */
.platform-card .pc-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.platform-card .pc-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Price button */
.platform-card .pc-price {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover .pc-price {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Disable the tilt effect on platform cards - keep it simple */
.platform-card {
    transform-style: flat;
}
.pc-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.platform-card:hover .pc-bg {
    transform: scaleX(1);
}
.pc-content {
    position: relative;
    z-index: 1;
}
.pc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pc-icon svg {
    width: 32px;
    height: 32px;
}

.platform-card:hover .pc-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.pc-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.platform-card:hover .pc-name {
    color: #ffffff;
}
.pc-desc {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 24px;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.platform-card:hover .pc-desc {
    color: #a1a1aa;
}
.pc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease;
}
.platform-card:hover .pc-meta {
    border-color: rgba(255, 255, 255, 0.1);
}
.pc-count {
    font-size: 13px;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pc-count::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}
.pc-price {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.platform-card:hover .pc-price {
    background: var(--gradient);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.platform-card:hover .pc-arrow {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}
.platform-card:hover .pc-arrow svg {
    transform: translate(2px, -2px);
}
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #07070a 0%, #0a0a10 50%, #07070a 100%);
    position: relative;
}
.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.features-section::before { top: 0; }
.features-section::after { bottom: 0; }
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.features-info {
    max-width: 420px;
}
.features-info .section-desc {
    margin-bottom: 32px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 28px;
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(139, 92, 246, 0.05);
}
.fc-icon {
    width: 52px;
    height: 52px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.feature-card:hover .fc-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}
.fc-icon svg {
    width: 24px;
    height: 24px;
    color: #a78bfa;
    transition: all 0.3s ease;
}
.feature-card:hover .fc-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}
.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.feature-card:hover h4 {
    color: #ffffff;
}
.feature-card p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.feature-card:hover p {
    color: #a1a1aa;
}
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    opacity: 0.95;
}
.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
}
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}
.page-hero-sm {
    padding: 100px 0 48px;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.1), transparent 50%),
        linear-gradient(180deg, #0a0a10 0%, #07070a 100%);
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-hero p {
    font-size: 18px;
    color: #a1a1aa;
}
.accounts-section {
    padding: 48px 0 120px;
}
.accounts-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.filters-sidebar {
    position: sticky;
    top: 100px; /* Below the floating header */
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(15, 15, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
    align-self: flex-start; /* This is key! */
}

/* Custom scrollbar for filters */
.filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filters-sidebar:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.filters-sidebar.mobile-open {
    display: block;
}
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.filters-header h3 {
    font-size: 16px;
    font-weight: 600;
}
.filters-clear {
    font-size: 13px;
    color: #8b5cf6;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.2s ease;
}
.filters-clear:hover {
    color: #a78bfa;
    text-decoration: underline;
}
.filter-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.filter-group:last-child {
    border-bottom: none;
}
.filter-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-toggle:hover {
    background: rgba(255, 255, 255, 0.02);
}
.filter-toggle svg {
    width: 16px;
    height: 16px;
    color: #52525b;
    transition: all 0.3s ease;
}
.filter-toggle.open svg {
    transform: rotate(180deg);
    color: #8b5cf6;
}
.filter-content {
    display: none;
    padding: 0 20px 16px;
}
.filter-content.open {
    display: block;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}
.filter-option:hover {
    background: rgba(255, 255, 255, 0.03);
}
.filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    flex-shrink: 0;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.check-box,
.radio-box {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.radio-box {
    border-radius: 50%;
}
.filter-option:hover .check-box,
.filter-option:hover .radio-box {
    border-color: rgba(139, 92, 246, 0.5);
}
.filter-option input:checked + .check-box,
.filter-option input:checked + .radio-box {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: #8b5cf6;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}
.filter-option input:checked + .check-box::after {
    content: '✓';
    font-size: 11px;
    color: white;
    font-weight: 600;
}
.filter-option input:checked + .radio-box::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}
.check-color {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.check-label {
    font-size: 14px;
    color: #a1a1aa;
    flex: 1;
    transition: color 0.2s ease;
}
.filter-option:hover .check-label {
    color: #ffffff;
}
.filter-option input:checked ~ .check-label {
    color: #ffffff;
    font-weight: 500;
}
.check-count {
    font-size: 11px;
    color: #52525b;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 100px;
    transition: all 0.2s ease;
}
.filter-option:hover .check-count {
    background: rgba(255, 255, 255, 0.08);
    color: #71717a;
}
.products-main {
    min-width: 0;
}
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.products-count {
    font-size: 14px;
    color: #71717a;
}
.products-count strong {
    color: #ffffff;
    font-weight: 600;
}
.products-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.filter-mobile-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 14px;
    color: #a1a1aa;
    transition: all 0.2s ease;
}
.filter-mobile-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.filter-mobile-btn svg {
    width: 16px;
    height: 16px;
}
.view-switcher {
    display: flex;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    padding: 4px;
}
.view-btn {
    width: 38px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #52525b;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.view-btn:hover {
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.05);
}
.view-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}
.view-btn svg {
    width: 18px;
    height: 18px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.products-grid.list-view {
    grid-template-columns: 1fr;
}
.product-card {
    position: relative;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(15, 15, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    filter: blur(40px);
    z-index: -1;
    transition: opacity 0.4s ease;
}
.product-card:hover::after {
    opacity: 0.08;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.08);
}
.prod-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    padding-bottom: 0;
}
.prod-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prod-icon svg {
    width: 28px;
    height: 28px;
}
.product-card:hover .prod-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.prod-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.prod-badge.in_stock {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}
.product-card:hover .prod-badge.in_stock {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}
.prod-badge.limited {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.prod-badge.out_of_stock {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.prod-body {
    padding: 24px;
    padding-top: 20px;
}
.prod-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.product-card:hover .prod-title {
    color: #ffffff;
}
.prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.prod-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #71717a;
    transition: color 0.3s ease;
}
.product-card:hover .prod-spec {
    color: #a1a1aa;
}
.prod-spec svg {
    width: 16px;
    height: 16px;
    color: #52525b;
    transition: all 0.3s ease;
}
.product-card:hover .prod-spec svg {
    color: #8b5cf6;
}
.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.product-card:hover .prod-footer {
    background: rgba(255, 255, 255, 0.04);
}
.price-amount {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}
.product-card:hover .price-amount {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
}
.prod-actions {
    display: flex;
    gap: 8px;
}
.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}
.products-grid.list-view .product-card::before {
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    transform: scaleY(0);
    transform-origin: top;
}
.products-grid.list-view .product-card:hover::before {
    transform: scaleY(1);
}
.products-grid.list-view .prod-header {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
}
.products-grid.list-view .prod-body {
    padding: 20px;
}
.products-grid.list-view .prod-specs {
    flex-direction: row;
}
.products-grid.list-view .prod-footer {
    flex-direction: column;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 20px;
}
.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    text-align: center;
}
.no-results-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.no-results-icon svg {
    width: 48px;
    height: 48px;
    color: #52525b;
}
.no-results h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.no-results p {
    color: #71717a;
    margin-bottom: 24px;
}
.detail-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.08;
}
.detail-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, #07070a 100%);
}
.detail-hero > .container {
    position: relative;
    z-index: 1;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #71717a;
    margin-bottom: 32px;
    transition: all 0.2s ease;
    padding: 8px 0;
}
.back-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}
.back-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}
.back-link:hover svg {
    transform: translateX(-4px);
}
.detail-hero-content {
    max-width: 700px;
}
.detail-icon {
    width: 88px;
    height: 88px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.1);
    animation: iconFloat 4s ease-in-out infinite;
}

.detail-icon svg {
    width: 48px;
    height: 48px;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.detail-hero h1 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.detail-hero p {
    font-size: 18px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 36px;
}
.detail-stats {
    display: flex;
    gap: 48px;
}
.ds-item {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ds-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}
.ds-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ds-label {
    font-size: 13px;
    color: #71717a;
}
.detail-content {
    padding: 60px 0 120px;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}
.detail-section {
    margin-bottom: 48px;
}
.detail-section:last-child {
    margin-bottom: 0;
}
.detail-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.fd-card {
    padding: 24px;
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.fd-card:hover {
    background: rgba(22, 22, 31, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.fd-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.fd-card:hover .fd-icon {
    transform: scale(1.1);
}
.fd-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}
.fd-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.fd-card p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.5;
}
.fd-card:hover p {
    color: #a1a1aa;
}
.detail-sidebar {
    position: sticky;
    top: 96px;
}
.detail-sidebar .detail-section {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(15, 15, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
}
.detail-sidebar .detail-section h2 {
    margin-bottom: 24px;
}
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pricing-year-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.pricing-year-group:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.pyg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
}
.pyg-year {
    font-weight: 600;
    font-size: 15px;
}
.pyg-count {
    font-size: 12px;
    color: #52525b;
}
.pyg-items {
    display: flex;
    flex-direction: column;
}
.pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}
.pricing-item:hover {
    background: rgba(255, 255, 255, 0.02);
}
.pricing-item.out_of_stock {
    opacity: 0.4;
}
.pi-info {
    flex: 1;
    min-width: 0;
}
.pi-spent {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}
.pi-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.pi-status.in_stock { color: #22c55e; }
.pi-status.limited { color: #f59e0b; }
.pi-status.out_of_stock { color: #ef4444; }
.pi-price {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-section {
    padding: 48px 0 120px;
}
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding: 8px;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}
.pricing-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #71717a;
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.pricing-tab:hover {
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.03);
}
.pricing-tab.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
.pt-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}
.pt-icon svg {
    width: 20px;
    height: 20px;
}

.pricing-tab:hover .pt-icon,
.pricing-tab.active .pt-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}
.pricing-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 22, 31, 0.8);
}
.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    text-align: left;
}
.pricing-table th {
    background: rgba(255, 255, 255, 0.02);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #52525b;
}
.pricing-table td {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
}
.pricing-table tbody tr {
    transition: all 0.2s ease;
}
.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.pricing-table tr.out_of_stock {
    opacity: 0.4;
}
.table-year {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
}
.table-status {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}
.table-status.in_stock { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.table-status.limited { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.table-status.out_of_stock { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.faq-section {
    padding: 48px 0 120px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.faq-item.active {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.05);
}
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-q {
    flex: 1;
    line-height: 1.4;
}
.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon svg {
    width: 14px;
    height: 14px;
}
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: transparent;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.faq-answer {
    display: none;
    padding: 0 24px 24px;
}
.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.faq-answer p {
    color: #a1a1aa;
    line-height: 1.7;
}
.faq-cta {
    text-align: center;
    padding: 56px;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8), rgba(15, 15, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}
.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}
.faq-cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.faq-cta p {
    color: #71717a;
    margin-bottom: 24px;
}
.contact-section {
    padding: 48px 0 120px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ci-card {
    padding: 28px;
    background: rgba(22, 22, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ci-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}
.ci-icon {
    width: 52px;
    height: 52px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.ci-card:hover .ci-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: transparent;
    transform: scale(1.1);
}
.ci-icon svg {
    width: 24px;
    height: 24px;
    color: #a78bfa;
    transition: color 0.3s ease;
}
.ci-card:hover .ci-icon svg {
    color: #ffffff;
}
.ci-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.ci-card p {
    color: #71717a;
    font-size: 15px;
    transition: color 0.3s ease;
}
.ci-card:hover p {
    color: #a1a1aa;
}
.contact-form {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(15, 15, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #a1a1aa;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.03);
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}
.admin-login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
    padding: 32px;
}
.admin-login-card {
    width: 100%;
    max-width: 420px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(15, 15, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
}
.alc-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}
.alc-icon svg {
    width: 36px;
    height: 36px;
    color: #a78bfa;
}
.admin-login-card h1 {
    font-size: 28px;
    margin-bottom: 28px;
}
.login-error {
    padding: 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}
.admin-login-card .form-group {
    text-align: left;
}
.admin-section {
    padding-bottom: 120px;
}
.admin-topbar {
    background: rgba(22, 22, 31, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    margin-bottom: 32px;
}
.admin-topbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-topbar h1 {
    font-size: 28px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.as-card {
    padding: 28px;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8), rgba(15, 15, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.as-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.as-value {
    display: block;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.as-label {
    font-size: 14px;
    color: #71717a;
}
.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    padding: 6px;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow-x: auto;
}
.admin-tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #71717a;
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.admin-tab:hover {
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.03);
}
.admin-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.admin-panel {
    display: none;
}
.admin-panel.active {
    display: block;
}
.ap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.ap-header h2 {
    font-size: 22px;
}
.table-wrap {
    overflow-x: auto;
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th,
.admin-table td {
    padding: 18px 20px;
    text-align: left;
}
.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #52525b;
    white-space: nowrap;
}
.admin-table td {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
}
.admin-table tbody tr {
    transition: all 0.2s ease;
}
.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}
.status-badge {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.status-badge.in_stock { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.status-badge.limited { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.status-badge.out_of_stock { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
.modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    margin: 24px;
}
.modal-card {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.98), rgba(15, 15, 22, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}
.modal-close svg {
    width: 18px;
    height: 18px;
}
.modal-header {
    padding: 36px;
    padding-bottom: 24px;
    text-align: center;
}
.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}
.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
}
.modal-body {
    padding: 0 36px 36px;
}
.purchase-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}
.pd-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
}
.pd-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pd-row span:first-child {
    color: #71717a;
}
.pd-row strong {
    color: #ffffff;
}
.pd-total {
    padding-top: 16px !important;
    font-size: 16px !important;
}
.pd-total strong {
    font-size: 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.modal-note {
    font-size: 13px;
    color: #52525b;
    text-align: center;
    margin-bottom: 20px;
}
.footer {
    background: linear-gradient(180deg, #07070a 0%, #050507 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 40px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 64px;
}
.footer-brand {
    max-width: 320px;
}
.footer-brand .logo {
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.fl-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}
.fl-col a {
    display: block;
    font-size: 14px;
    color: #52525b;
    padding: 8px 0;
    transition: all 0.2s ease;
}
.fl-col a:hover {
    color: #a1a1aa;
    transform: translateX(4px);
}
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: #3f3f46;
}
@media (max-width: 1024px) {
    .hero > .container {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }
    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        transform: none;
    }
    .features-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .features-info {
        max-width: 100%;
        text-align: center;
    }
    .features-info .section-tag::before {
        display: none;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: static;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    .footer-brand .logo {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .header {
        height: 64px;
    }
    .main {
        padding-top: 64px;
    }
    .mobile-menu {
        top: 64px;
    }
    .nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero {
        min-height: auto;
        padding: 56px 0;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero-stat {
        padding: 12px;
    }
    .accounts-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        border-radius: 0;
        overflow-y: auto;
    }
    .filters-sidebar.mobile-open {
        display: block;
    }
    .filter-mobile-btn {
        display: flex;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }
    .products-grid.list-view .prod-footer {
        flex-direction: row;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.02);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .detail-hero-content {
        text-align: center;
    }
    .detail-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .detail-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .fl-col a:hover {
        transform: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .pricing-tabs {
        flex-direction: column;
        gap: 4px;
    }
    .pricing-tab {
        justify-content: center;
    }
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-container {
        margin: 16px;
    }
    .modal-card {
        border-radius: 20px;
    }
}
@media print {
    .header,
    .footer,
    .modal,
    .filters-sidebar,
    .btn {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    .main {
        padding-top: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
:focus-visible {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   SMOOTH PAGE TRANSITIONS
   ============================================ */

.main {
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.main.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

.main.fade-in {
    opacity: 0;
    transform: translateY(-8px);
}

/* Subtle loader line */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.page-loader.active {
    opacity: 1;
}


/* ============================================
   FLOATING BUBBLE HEADER
   ============================================ */

.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), transparent, rgba(6, 182, 212, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    max-width: none;
}

/* On scroll - shrink slightly and increase blur */
.header.scrolled {
    top: 12px;
    padding: 10px 20px;
    background: rgba(10, 10, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Hide on scroll down */
.header.hidden {
    transform: translateX(-50%) translateY(-120%);
}

/* Logo adjustments for bubble */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-name {
    font-size: 16px;
}

.logo-tag {
    font-size: 10px;
}

/* Nav items - tighter for bubble */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    padding: 8px 14px;
    font-size: 13px;
}

/* CTA button - smaller for bubble */
.header .btn-glow {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 100px;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .header {
        width: calc(100% - 24px);
        padding: 10px 16px;
        border-radius: 20px;
    }
    
    .nav {
        display: none;
    }
    
    .header.menu-open {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 12px;
        width: calc(100% - 16px);
        padding: 10px 14px;
    }
}


/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 0;
    position: relative;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 20px;
}

.services-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.services-section .section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    position: relative;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.service-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 550px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.service-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

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

.price-from {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.price-amount span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #229ED9;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-btn:hover {
    background: #1a8bc7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 158, 217, 0.3);
}

/* Mobile */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .service-desc {
        max-width: none;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .service-action {
        padding-left: 0;
        padding-top: 24px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}
/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon svg {
    width: 18px;
    height: 18px;
    color: #a78bfa;
}

/* Filter Dropdown */
.filter-dropdown {
    position: relative;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.filter-dropdown.open .filter-dropdown-btn {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.filter-dropdown-btn .chevron {
    transition: transform 0.2s ease;
}

.filter-dropdown.open .chevron {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(22, 22, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.filter-dropdown-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.filter-dropdown-option input {
    display: none;
}

.filter-dropdown-option span {
    font-size: 13px;
    color: #a1a1aa;
    transition: color 0.15s ease;
}

.filter-dropdown-option:hover span,
.filter-dropdown-option input:checked + span {
    color: #fff;
}

.filter-dropdown-option input:checked + span::before {
    content: '✓ ';
    color: #8b5cf6;
}


/* === PLATFORMS SECTION === */
.platforms-section {
    padding: 120px 0;
    position: relative;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.platform-card {
    position: relative;
    display: block;
    padding: 32px;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8), rgba(15, 15, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--gradient), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.platform-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--gradient) 60deg,
        transparent 120deg
    );
    opacity: 0;
    animation: none;
    transition: opacity 0.4s ease;
}

.platform-card:hover::after {
    opacity: 0.1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}

.platform-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: transparent;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(139, 92, 246, 0.1);
}

.pc-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover .pc-bg {
    transform: scaleX(1);
}

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

.pc-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.platform-card:hover .pc-name {
    color: #ffffff;
}

.pc-desc {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 24px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.platform-card:hover .pc-desc {
    color: #a1a1aa;
}

.pc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease;
}

.platform-card:hover .pc-meta {
    border-color: rgba(255, 255, 255, 0.1);
}

.pc-count {
    font-size: 13px;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc-count::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.pc-price {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.platform-card:hover .pc-price {
    background: var(--gradient);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pc-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    opacity: 0;
    transform: translate(-10px, 10px) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pc-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.platform-card:hover .pc-arrow {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-card:hover .pc-arrow svg {
    transform: translate(2px, -2px);
}


/* ============================================
   MOBILE-ONLY OPTIMIZATIONS
   Add this at the END of your existing styles.css
   Preserves all desktop styles, enhances mobile only
   ============================================ */

/* === MOBILE BASE IMPROVEMENTS === */
@media (max-width: 1023px) {
    
    /* Safe area support for notched devices */
    body {
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }
    
    /* Use dynamic viewport height */
    body {
        min-height: 100dvh;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .platform-card:hover,
        .product-card:hover,
        .feature-card:hover,
        .faq-item:hover,
        .ci-card:hover,
        .fd-card:hover,
        .pricing-year-group:hover,
        .hero-stat:hover,
        .nav-item:hover,
        .filter-option:hover {
            transform: none;
            box-shadow: inherit;
            background: inherit;
            border-color: inherit;
        }
        
        .platform-card:hover .pc-icon,
        .product-card:hover .prod-icon,
        .feature-card:hover .fc-icon,
        .ci-card:hover .ci-icon {
            transform: none;
            background: inherit;
        }
        
        .platform-card:hover .pc-bg,
        .product-card:hover::before {
            transform: scaleX(0);
        }
        
        .platform-card:hover .pc-price {
            background: rgba(255, 255, 255, 0.05);
            transform: none;
            box-shadow: none;
        }
    }
    
    /* Touch-friendly tap targets */
    a, button, input, select, textarea,
    .filter-option, .faq-trigger, .pricing-tab,
    .nav-item, .mobile-nav-item {
        min-height: 44px;
    }
    
    /* Remove tap highlight */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Active states for touch feedback */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .platform-card:active,
    .product-card:active,
    .feature-card:active {
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:active,
    .mobile-nav-item:active {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .filter-option:active {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* === SMALL TABLETS & LARGE PHONES (768px - 1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    
    .hero > .container {
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-card-main {
        margin: 0;
        width: 100%;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === PHONES (max-width: 767px) === */
@media (max-width: 767px) {
    
    /* === HEADER MOBILE === */
  .header {
        top: 8px;
        width: calc(100% - 16px);
        padding: 8px 12px;
        border-radius: 100px; /* Changed from 16px to match desktop */
    }
    
    .header.scrolled {
        top: 8px;
        padding: 8px 12px;
        border-radius: 100px; /* Keep consistent */
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        padding: 6px;
        border-radius: 8px;
    }
    
    .logo-name {
        font-size: 15px;
    }
    
    .logo-tag {
        display: none;
    }
    
    .logo {
        gap: 8px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .menu-toggle span::before { top: 14px; }
    .menu-toggle span::after { bottom: 14px; }
    
    body.menu-open .menu-toggle span::before { top: 19px; }
    body.menu-open .menu-toggle span::after { bottom: 19px; }
    
    /* === MOBILE MENU ENHANCED === */
    .mobile-menu {
        top: 56px;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
    
    .mobile-menu-content {
        padding: 16px;
    }
    
    .mobile-nav {
        gap: 4px;
    }
    
    .mobile-nav-item {
        padding: 16px;
        font-size: 17px;
        font-weight: 500;
        border-radius: 12px;
        min-height: 56px;
        display: flex;
        align-items: center;
    }
    
    .mobile-nav-item:active {
        background: rgba(139, 92, 246, 0.1);
        transform: scale(0.98);
    }
    
    .mobile-menu-footer {
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
    
    .mobile-menu-footer .btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 52px;
    }
    
    /* === HERO MOBILE === */
    .hero {
        padding-top: 80px;
        padding-bottom: 48px;
    }
    
    .hero > .container {
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .badge-pulse {
        width: 6px;
        height: 6px;
    }
    
    .title-line {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 24px;
        padding: 0 8px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        min-height: 52px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 24px;
    }
    
    .hero-stat {
        padding: 12px 8px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* === HERO CARD MOBILE === */
    .hero-visual {
        padding: 0;
    }
    
    .hero-card-main {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        border-radius: 20px;
    }
    
    .hcm-topbar {
        padding: 10px 14px;
    }
    
    .hcm-live {
        font-size: 11px;
        gap: 5px;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
    
    .hcm-rating {
        font-size: 11px;
        gap: 4px;
    }
    
    .hcm-platforms {
        padding: 20px 14px 0;
        gap: 8px;
    }
    
    .hcm-platform-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .hcm-platform-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .hcm-platform-more {
        width: 42px;
        height: 42px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .hcm-main {
        padding: 18px 14px 20px;
    }
    
    .hcm-title {
        font-size: 18px;
    }
    
    .hcm-desc {
        font-size: 13px;
    }
    
    .hcm-stats {
        padding: 14px;
    }
    
    .hcm-stat .stat-value {
        font-size: 16px;
    }
    
    .hcm-stat .stat-label {
        font-size: 9px;
    }
    
    .hcm-stat-divider {
        height: 28px;
    }
    
    .hcm-trust {
        padding: 12px 14px;
        gap: 12px;
    }
    
    .trust-item {
        font-size: 10px;
        gap: 4px;
    }
    
    .trust-item svg {
        width: 12px;
        height: 12px;
    }
    
    .hcm-proof {
        padding: 12px 14px;
        gap: 8px;
    }
    
    .proof-avatar {
        width: 22px;
        height: 22px;
        font-size: 9px;
        margin-left: -5px;
    }
    
    .proof-text {
        font-size: 11px;
    }
    
    .hcm-glow {
        display: none;
    }
    
    /* === SECTION HEADERS MOBILE === */
    .section-tag {
        font-size: 10px;
        padding-left: 14px;
        margin-bottom: 8px;
    }
    
    .section-tag::before {
        width: 8px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header .section-desc {
        padding: 0 8px;
    }
    
    /* === PLATFORMS SECTION MOBILE === */
    .platforms-section {
        padding: 48px 0;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .platform-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .pc-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    
    .pc-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .pc-name {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .pc-desc {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .pc-meta {
        padding-top: 14px;
    }
    
    .pc-count {
        font-size: 12px;
    }
    
    .pc-price {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .pc-arrow {
        display: none;
    }
    
    /* === SERVICES SECTION MOBILE === */
    .services-section {
        padding: 48px 0;
    }
    
    .section-divider {
        margin-bottom: 32px;
        gap: 12px;
    }
    
    .divider-line {
        max-width: 60px;
    }
    
    .divider-icon {
        width: 32px;
        height: 32px;
    }
    
    .divider-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .services-section .section-title {
        font-size: 22px;
    }
    
    .services-section .section-subtitle {
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .service-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .service-desc {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .service-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    
    .service-feature {
        font-size: 12px;
        justify-content: center;
    }
    
    .service-feature svg {
        width: 12px;
        height: 12px;
    }
    
    .service-action {
        width: 100%;
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .service-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        justify-content: center;
        min-height: 48px;
    }
    
    /* === FEATURES SECTION MOBILE === */
    .features-section {
        padding: 48px 0;
    }
    
    .features-layout {
        gap: 32px;
    }
    
    .features-info {
        max-width: 100%;
        text-align: center;
    }
    
    .features-info .section-tag::before {
        display: none;
    }
    
    .features-info .section-desc {
        margin-bottom: 20px;
    }
    
    .features-info .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    .fc-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    
    .fc-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-card h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* === PAGE HERO MOBILE === */
    .page-hero {
        padding: 80px 0 32px;
    }
    
    .page-hero-sm {
        padding: 72px 0 24px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    /* === ACCOUNTS SECTION MOBILE === */
    .accounts-section {
        padding: 24px 0 64px;
    }
    
    .accounts-layout {
        gap: 16px;
    }
    
    /* Filters as slide-in panel */
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: #07070a;
        border-radius: 0;
        border: none;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 0;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
    
    .filters-sidebar.mobile-open {
        display: block;
        transform: translateX(0);
    }
    
    .filters-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background: #07070a;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .filters-header h3 {
        font-size: 18px;
    }
    
    .filter-group {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .filter-toggle {
        padding: 16px;
        font-size: 15px;
        min-height: 56px;
    }
    
    .filter-content {
        padding: 0 16px 16px;
    }
    
    .filter-option {
        padding: 14px 8px;
        min-height: 52px;
        border-radius: 10px;
        margin: 0 -8px;
    }
    
    .check-box,
    .radio-box {
        width: 22px;
        height: 22px;
    }
    
    .check-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }
    
    .check-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .check-label {
        font-size: 15px;
    }
    
    .check-count {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    /* Products Toolbar Mobile */
    .products-toolbar {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .products-info {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .products-count {
        font-size: 13px;
    }
    
    .products-actions {
        order: 1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 8px;
    }
    
    .filter-mobile-btn {
        display: flex;
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
        min-height: 44px;
        justify-content: center;
    }
    
    .filter-mobile-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .filter-dropdown {
        width: 100%;
    }
    
    .filter-dropdown-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
        min-height: 44px;
        justify-content: center;
    }
    
    .filter-dropdown-menu {
        left: 0;
        right: 0;
        border-radius: 10px;
    }
    
    .filter-dropdown-option {
        padding: 12px;
        min-height: 48px;
    }
    
    .filter-dropdown-option span {
        font-size: 14px;
    }
    
    .view-switcher {
        border-radius: 10px;
    }
    
    .view-btn {
        width: 44px;
        height: 36px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .prod-header {
        padding: 16px;
        padding-bottom: 0;
    }
    
    .prod-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .prod-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .prod-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .prod-body {
        padding: 16px;
        padding-top: 12px;
    }
    
    .prod-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .prod-specs {
        gap: 12px;
    }
    
    .prod-spec {
        font-size: 13px;
    }
    
    .prod-spec svg {
        width: 14px;
        height: 14px;
    }
    
    .prod-footer {
        padding: 14px 16px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .prod-actions {
        gap: 6px;
    }
    
    .prod-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 36px;
    }
    
    /* List View Mobile */
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }
    
    .products-grid.list-view .prod-header {
        flex-direction: row;
        padding: 16px;
    }
    
    .products-grid.list-view .prod-body {
        padding: 0 16px 16px;
    }
    
    .products-grid.list-view .prod-footer {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* No Results */
    .no-results {
        padding: 48px 16px;
    }
    
    .no-results-icon {
        width: 72px;
        height: 72px;
    }
    
    .no-results-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .no-results h3 {
        font-size: 18px;
    }
    
    .no-results p {
        font-size: 14px;
    }
    
    /* === DETAIL PAGE MOBILE === */
    .detail-hero {
        padding: 72px 0 32px;
    }
    
    .back-link {
        margin-bottom: 20px;
        font-size: 13px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .detail-hero-content {
        text-align: center;
    }
    
    .detail-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin: 0 auto 20px;
    }
    
    .detail-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .detail-hero h1 {
        font-size: 26px;
    }
    
    .detail-hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .detail-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .ds-item {
        padding: 12px 16px;
        border-radius: 12px;
    }
    
    .ds-value {
        font-size: 20px;
    }
    
    .ds-label {
        font-size: 11px;
    }
    
    .detail-content {
        padding: 32px 0 64px;
    }
    
    .detail-layout {
        gap: 32px;
    }
    
    .detail-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .features-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .fd-card {
        padding: 18px;
        border-radius: 14px;
    }
    
    .fd-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    
    .fd-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .fd-card h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .fd-card p {
        font-size: 13px;
    }
    
    /* Detail Sidebar Mobile */
    .detail-sidebar .detail-section {
        padding: 20px;
        border-radius: 16px;
    }
    
    .pricing-list {
        gap: 12px;
    }
    
    .pricing-year-group {
        border-radius: 12px;
    }
    
    .pyg-header {
        padding: 12px 14px;
    }
    
    .pyg-year {
        font-size: 14px;
    }
    
    .pyg-count {
        font-size: 11px;
    }
    
    .pricing-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .pi-spent {
        font-size: 13px;
    }
    
    .pi-status {
        font-size: 10px;
    }
    
    .pi-price {
        font-size: 15px;
    }
    
    .pricing-item .btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 32px;
    }
    
    /* === PRICING PAGE MOBILE === */
    .pricing-section {
        padding: 24px 0 64px;
    }
    
    .pricing-tabs {
        gap: 6px;
        padding: 6px;
        margin-bottom: 20px;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .pricing-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-tab {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
        min-height: 44px;
    }
    
    .pt-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }
    
    .pt-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .pricing-table-wrap {
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        min-width: 550px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .pricing-table th {
        font-size: 10px;
    }
    
    .table-year {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .table-status {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    /* === FAQ PAGE MOBILE === */
    .faq-section {
        padding: 24px 0 64px;
    }
    
    .faq-list {
        gap: 8px;
    }
    
    .faq-item {
        border-radius: 14px;
    }
    
    .faq-trigger {
        padding: 18px 16px;
        font-size: 15px;
        gap: 12px;
        min-height: 60px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .faq-answer {
        padding: 0 16px 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 32px 20px;
        border-radius: 16px;
        margin-top: 32px;
    }
    
    .faq-cta h3 {
        font-size: 20px;
    }
    
    .faq-cta p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* === CONTACT PAGE MOBILE === */
    .contact-section {
        padding: 24px 0 64px;
    }
    
    .contact-layout {
        gap: 24px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ci-card {
        padding: 18px;
        border-radius: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        text-align: left;
    }
    
    .ci-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .ci-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ci-card h4 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .ci-card p {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 10px;
        min-height: 52px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form .btn {
        padding: 16px 24px;
        font-size: 15px;
        min-height: 52px;
    }
    
    /* === MODAL MOBILE - BOTTOM SHEET === */
    .modal {
        align-items: flex-end;
    }
    
    .modal-container {
        max-width: 100%;
        margin: 0;
        max-height: 90vh;
        max-height: 90dvh;
    }
    
    .modal-card {
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        padding-bottom: env(safe-area-inset-bottom, 20px);
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
    }
    
    @keyframes modalSlide {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .modal-close svg {
        width: 16px;
        height: 16px;
    }
    
    .modal-header {
        padding: 24px 20px 16px;
    }
    
    .modal-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 14px;
    }
    
    .modal-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 0 20px 20px;
    }
    
    .purchase-details {
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .pd-row {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .pd-total strong {
        font-size: 20px;
    }
    
    .modal-note {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .modal-body .btn {
        padding: 16px 24px;
        font-size: 15px;
        min-height: 52px;
    }
    
    /* === FOOTER MOBILE === */
    .footer {
        padding: 48px 0 32px;
    }
    
    .footer-main {
        gap: 40px;
        margin-bottom: 32px;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand .logo-name {
        font-size: 16px;
    }
    
    .footer-brand p {
        font-size: 13px;
        padding: 0 16px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        text-align: center;
    }
    
    .fl-col h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .fl-col a {
        font-size: 13px;
        padding: 8px 0;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    /* === ADMIN MOBILE === */
    .admin-login-section {
        padding: 20px;
        min-height: calc(100vh - 64px);
        min-height: calc(100dvh - 64px);
    }
    
    .admin-login-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .alc-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 20px;
    }
    
    .alc-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .admin-login-card h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .login-error {
        padding: 12px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .admin-topbar {
        padding: 14px 0;
        margin-bottom: 16px;
    }
    
    .admin-topbar h1 {
        font-size: 20px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .as-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .as-value {
        font-size: 28px;
    }
    
    .as-label {
        font-size: 12px;
    }
    
    .admin-tabs {
        gap: 4px;
        padding: 4px;
        margin-bottom: 16px;
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-tab {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
        min-height: 40px;
    }
    
    .ap-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-bottom: 16px;
    }
    
    .ap-header h2 {
        font-size: 18px;
    }
    
    .ap-header .btn {
        width: 100%;
    }
    
    .table-wrap {
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 650px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .admin-table th {
        font-size: 10px;
    }
    
    .type-badge {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .status-badge {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* === EXTRA SMALL PHONES (max-width: 374px) === */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        width: calc(100% - 12px);
        padding: 6px 10px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .title-line {
        font-size: 26px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .hero-card-main {
        max-width: 100%;
    }
    
    .hcm-platforms {
        gap: 6px;
    }
    
    .hcm-platform-icon {
        width: 36px;
        height: 36px;
    }
    
    .hcm-platform-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .hcm-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .platform-card {
        padding: 16px;
    }
    
    .pc-name {
        font-size: 16px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-dropdown-btn span:not(.chevron) {
        display: none;
    }
    
    .products-actions {
        grid-template-columns: 1fr auto auto;
    }
}

/* === LANDSCAPE PHONES === */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding-top: 72px;
        padding-bottom: 32px;
    }
    
    .hero > .container {
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-visual {
        flex: 0 0 280px;
    }
    
    .hero-card-main {
        max-width: 280px;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-actions .btn {
        width: auto;
        flex: 1;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mobile-menu {
        top: 48px;
    }
    
    .modal-container {
        max-height: 100vh;
        max-height: 100dvh;
    }
    
    .modal-card {
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }
}

/* === iOS SPECIFIC FIXES === */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS bottom bar */
    body {
        min-height: -webkit-fill-available;
    }
    
    .mobile-menu {
        min-height: -webkit-fill-available;
    }
    
    /* Fix for iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
    }
    
    /* Fix for iOS momentum scrolling */
    .filters-sidebar,
    .pricing-tabs,
    .admin-tabs,
    .table-wrap,
    .pricing-table-wrap {
        -webkit-overflow-scrolling: touch;
    }
}

/* === DARK MODE COLOR SCHEME === */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}
@media (max-width: 1023px) {
    .header-actions .btn-glow {
        display: none !important;
    }
}
/* === MOBILE FILTER SIDEBAR CLOSE BUTTON === */
@media (max-width: 1023px) {
    .filters-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        background: #07070a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .filters-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .filters-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .filters-close:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.95);
    }
    
    .filters-close svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide close button on desktop */
@media (min-width: 1024px) {
    .filters-close {
        display: none;
    }
    
    .filters-header-actions {
        display: contents;
    }
}




@media (max-width: 1023px) {
    .hero-bg {
        min-height: 120%;
    }
}

@media (max-width: 767px) {
    .hero-bg {
        min-height: 185%;
    }
}

/* Out of Stock Platform Card */
.platform-card.out-of-stock {
    opacity: 0.7;
    pointer-events: auto;
}

.platform-card.out-of-stock .pc-bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05)) !important;
}

.platform-card.out-of-stock:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.platform-card.out-of-stock::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), transparent) !important;
}

.pc-out-of-stock {
    color: #ef4444 !important;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Out of Stock Platform Card */
.platform-card.out-of-stock {
    opacity: 0.7;
}

.platform-card.out-of-stock .pc-bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05)) !important;
}

.platform-card.out-of-stock:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.pc-count.pc-out-of-stock {
    color: #ef4444 !important;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.15) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Override the green dot/bubble */
.pc-count.pc-out-of-stock::before {
    background: #ef4444 !important;
}
/* Out of Stock Message - Detail Page */
.no-stock-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
}

.no-stock-icon {
    color: #ef4444;
    margin-bottom: 1rem;
}

.no-stock-icon svg {
    opacity: 0.8;
}

.no-stock-message h3 {
    color: #ef4444;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.no-stock-message p {
    color: #a0a0b0;
    font-size: 0.9rem;
    margin: 0 0 1.5rem 0;
}

.no-stock-message .btn {
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.no-stock-message .btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* Filter - Out of Stock */
.filter-option.out-of-stock {
    opacity: 0.6;
}

.filter-option.out-of-stock .check-label {
    color: #6b6b7b;
}

.check-count.check-out-of-stock {
    color: #ef4444;
    font-size: 0.7rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.payment-usd {
    color: #22c55e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}



