/* ═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
   FiveM Premium Website — Styles
   Dark theme, cyan/purple accent, glassmorphism, premium feel
   ═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #06060b;
    --bg-secondary: #0c0c14;
    --bg-card: rgba(14, 14, 24, 0.6);
    --bg-card-hover: rgba(20, 20, 35, 0.8);
    --border: rgba(0, 216, 255, 0.12);
    --border-hover: rgba(0, 216, 255, 0.3);
    --text: #e2e2f0;
    --text-dim: #7a7a95;
    --text-muted: #4a4a65;
    --accent: #00d8ff;
    --accent-light: #4df8ff;
    --accent-dark: #00a8cc;
    --accent-glow: rgba(0, 216, 255, 0.15);
    --gradient: linear-gradient(135deg, #00d8ff, #0099ff, #3366ff);
    --gradient-text: linear-gradient(135deg, #4df8ff, #00d8ff, #0099ff);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Cursor Glow ── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s;
}

/* ── Gradient Text ── */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Utilities ── */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 0 24px rgba(0, 216, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 216, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-ghost {
    background: rgba(0, 216, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(0, 216, 255, 0.15);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 28px;
    width: 100%;
    justify-content: center;
}
.btn-outline:hover {
    background: rgba(0, 216, 255, 0.1);
    border-color: var(--accent);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.full-width { width: 100%; justify-content: center; }

/* ── Animations ── */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═════════════════════════════════════════════ NAVBAR ═════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 22px;
}

.logo-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: #fff;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--gradient);
    color: #fff;
    transition: var(--transition);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    font-size: 15px;
    color: var(--text-dim);
    padding: 8px 0;
}
.mobile-cta {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    background: var(--gradient);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

/* ═════════════════════════════════════════════ HERO ═════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 216, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 216, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(0, 216, 255, 0.15);
    top: -10%; right: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(0, 153, 255, 0.12);
    bottom: 10%; left: -5%;
    animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: rgba(51, 102, 255, 0.1);
    top: 40%; left: 30%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 40px); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -30px); } }
@keyframes orbFloat3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, -20px); } }

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    background: var(--accent-glow);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ── Terminal Window ── */
.hero-visual {
    flex: 1;
    max-width: 520px;
}

.terminal-window {
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(0, 216, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.terminal-body {
    padding: 20px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 2;
}

.terminal-line {
    opacity: 0;
    animation: typeLine 0.3s ease forwards;
}
.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 0.8s; }
.terminal-line:nth-child(3) { animation-delay: 1.1s; }
.terminal-line:nth-child(4) { animation-delay: 1.4s; }
.terminal-line:nth-child(5) { animation-delay: 1.7s; }
.terminal-line:nth-child(6) { animation-delay: 2.0s; }
.terminal-line:nth-child(7) { animation-delay: 2.3s; }
.terminal-line:nth-child(8) { animation-delay: 2.6s; }

@keyframes typeLine {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.t-green { color: #22c55e; }
.t-blue { color: #60a5fa; }
.t-cyan { color: var(--accent-light); }
.t-yellow { color: #fbbf24; }
.t-dim { color: var(--text-muted); }

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ── "Coming Soon" Section ── */
.coming-soon {
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.04) 0%, rgba(51, 102, 255, 0.02) 100%);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.coming-soon h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* ═════════════════════════════════════════════ FEATURES ═════════════════════════════════════════════ */
.features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 216, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}
.feature-tags li {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 216, 255, 0.15);
}

/* ═════════════════════════════════════════════ SHOWCASE ═════════════════════════════════════════════ */
.showcase {
    padding: 120px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.showcase-card.wide {
    grid-column: 1 / -1;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.showcase-card:hover {
    border-color: var(--border-hover);
}

.showcase-mockup {
    padding: 32px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-label {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ═════════════════════════════════════════════ PRICING ═════════════════════════════════════════════ */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 700px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}
.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 216, 255, 0.08), var(--bg-card));
    box-shadow: 0 0 50px rgba(0, 216, 255, 0.12);
    transform: scale(1.03);
}
.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.price-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.price-amount {
    padding: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dim);
}
.amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
}
.price-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ═════════════════════════════════════════════ FAQ ═════════════════════════════════════════════ */
.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
}
.faq-item.open .faq-question svg {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ═════════════════════════════════════════════ CTA ═════════════════════════════════════════════ */
.cta-section {
    padding: 80px 0 120px;
}

.cta-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 72px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.12), transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
}
.cta-box p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ═════════════════════════════════════════════ FOOTER ═════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 8px;
}
.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ═════════════════════════════════════════════ PRODUCTS ═════════════════════════════════════════════ */
.products {
    padding: 120px 0 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card.coming-soon {
    opacity: 0.65;
}
.product-card.coming-soon:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 100px;
}
.product-badge.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
.product-badge.soon {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.product-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.product-tags li {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 216, 255, 0.15);
}

/* ═════════════════════════════════════════════ SHOP PAGE ═════════════════════════════════════════════ */
.shop-hero {
    padding: 120px 0 40px;
    text-align: center;
}
.shop-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.shop-hero p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

.shop-grid-section {
    padding: 20px 0 120px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.shop-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.shop-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.shop-card.coming-soon {
    opacity: 0.55;
    pointer-events: none;
}

.shop-card-banner {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.shop-card-banner-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.shop-card-banner-bg.fivem-bg {
    background-image: url('smhub.png');
    background-color: linear-gradient(135deg, rgba(0, 216, 255, 0.25) 0%, rgba(0, 153, 255, 0.2) 50%, rgba(51, 102, 255, 0.15) 100%);
    background-blend-mode: overlay;
}

.shop-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.shop-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
}
.shop-badge.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.shop-badge.pop {
    background: rgba(0, 216, 255, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(0, 216, 255, 0.3);
}
.shop-badge.soon {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.shop-card-body {
    padding: 24px;
}

.shop-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.shop-card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.shop-stars {
    display: flex;
    gap: 2px;
}
.shop-stars svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
}
.shop-stars.dim svg {
    color: var(--text-muted);
    opacity: 0.3;
}

.shop-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.shop-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.shop-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}
.shop-feat svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.shop-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.shop-price {
    font-size: 14px;
    color: var(--text-dim);
}
.shop-price span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}
.shop-price.dim {
    color: var(--text-muted);
    font-size: 14px;
}

.shop-buy-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    transition: var(--transition);
}
.shop-card:hover .shop-buy-btn {
    color: #fff;
}
.shop-buy-btn.disabled {
    color: var(--text-muted);
}

/* ═════════════════════════════════════════════ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
    }
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 480px; width: 100%; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .products-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .shop-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.featured { grid-column: auto; max-width: none; transform: none; }

    .footer-content { flex-direction: column; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .terminal-body { font-size: 11px; padding: 14px; }
    .cta-box { padding: 48px 24px; }
}
