/* ============================================================
   ORBIT AGENCY - Space/Orbit Theme CSS
   Color: Deep space with electric cyan + amber accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600;700&family=Syne:wght@400;600;700;800&family=Exo+2:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
    --space-black: #03010f;
    --space-deep: #07041a;
    --space-dark: #0a0525;
    --space-navy: #0f0830;
    --space-blue: #150c3a;
    --orbit-cyan: #00e5ff;
    --orbit-cyan-dim: #00b8d4;
    --orbit-glow: rgba(0, 229, 255, 0.15);
    --orbit-pulse: rgba(0, 229, 255, 0.4);
    --amber: #b94fff;
    --amber-dim: #8a2be2;
    --amber-glow: rgba(185, 79, 255, 0.15);
    --nebula-purple: #b94fff;
    --nebula-pink: #ff4dd8;
    --star-white: #e8eaf6;
    --text-primary: #e8eaf6;
    --text-secondary: #9ca3c8;
    --text-muted: #6a6f9a;
    --border: rgba(0, 229, 255, 0.12);
    --border-bright: rgba(0, 229, 255, 0.3);
    --card-bg: rgba(7, 4, 26, 0.8);
    --card-hover: rgba(21, 12, 58, 0.9);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-orbit: 0 0 30px rgba(0, 229, 255, 0.2), 0 0 60px rgba(0, 229, 255, 0.05);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 255, 0.08);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 229, 255, 0.2), 0 0 30px rgba(0, 229, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Stars background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 45%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 25%, rgba(0, 212, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 25% 55%, rgba(0, 212, 255, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 85%, rgba(124, 58, 237, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--orbit-cyan);
    text-decoration: none;
    transition: var(--transition);
}

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

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

ul,
ol {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

.text-cyan {
    color: var(--orbit-cyan) !important;
}

.text-amber {
    color: var(--amber) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

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

.font-mono {
    font-family: var(--font-mono);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-sm {
    padding: 50px 0;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.navbar-brand .orbit-logo {
    width: 40px;
    height: 40px;
    position: relative;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orbit-cyan);
    transition: width 0.3s ease;
}

.navbar-nav a:hover {
    color: var(--orbit-cyan);
}

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

.navbar-nav a.active {
    color: var(--orbit-cyan);
}

.navbar-nav a.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orbit-cyan);
    transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orbit-cyan) 0%, var(--orbit-cyan-dim) 100%);
    color: var(--space-black);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    padding: 10px 60px 10px 10px;
}

.btn-primary:hover {
    color: var(--space-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dim) 100%);
    color: var(--space-black);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
    color: var(--space-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--orbit-cyan);
    border: 1px solid var(--orbit-cyan);
}

.btn-outline:hover {
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.72rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 0.9rem;
}

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

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.card:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--space-navy);
}

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

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

.card-body {
    padding: 20px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

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

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-cyan {
    background: rgba(0, 212, 255, 0.15);
    color: var(--orbit-cyan);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.badge-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-purple {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--amber);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-free {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--success);
    font-weight: 700;
}

/* ============================================================
   STAR RATING
   ============================================================ */
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--amber);
    font-size: 0.85rem;
}

.stars .empty {
    color: var(--text-muted);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 70%),
        var(--space-black);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orbit-cyan);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.05);
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orbit-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--orbit-cyan);
    animation: pulse 2s infinite;
}

.hero-title {
    /* font-size: clamp(2.5rem, 6vw, 3rem); */
    /* line-height: 1.1; */
    margin-bottom: 24px;
    /* background: linear-gradient(135deg, #fff 0%, var(--orbit-cyan) 50%, var(--amber) 100%); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.hero-subtitle {
    /* color: var(--text-secondary); */
    /* font-size: 1.1rem; */
    /* line-height: 1.7; */
    margin-bottom: 40px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orbit-cyan);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ============================================================
   ORBIT ANIMATION (Hero visual)
   ============================================================ */
.orbit-system {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 1100px;
    height: 1100px;
    pointer-events: none;
}

#orbit-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

@keyframes pulse {

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

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

@keyframes float {

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

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

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orbit-cyan);
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

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

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color, var(--orbit-cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--orbit-glow);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orbit-cyan);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.category-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    cursor: pointer;
}

.product-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-type-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(3, 7, 18, 0.9);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--orbit-cyan);
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-excerpt {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

/* ============================================================
   PRICING TABLES
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 1px var(--orbit-cyan), var(--shadow-orbit);
    transform: scale(1.02);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orbit-cyan);
    color: var(--space-black);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-amount span {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: var(--orbit-cyan);
}

.pricing-cycle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-feature::before {
    content: '✓';
    color: var(--orbit-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
}

.product-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 40px 0;
}

.screenshot-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.screenshot-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.screenshot-thumb:hover {
    border-color: var(--orbit-cyan);
}

/* Info sidebar */
.product-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
}

.product-meta-list {
    margin: 20px 0;
}

.product-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.product-meta-label {
    color: var(--text-muted);
}

.product-meta-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orbit-cyan), var(--nebula-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.reviewer-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   REVIEW FORM
   ============================================================ */
.review-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(8, 15, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(0, 212, 255, 0.03);
}

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

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* Star rating input */
.star-input {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.star-input label {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.star-input input {
    display: none;
}

.star-input label:hover,
.star-input label:hover~label,
.star-input input:checked~label {
    color: var(--amber);
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text-secondary);
    cursor: pointer;
}

.share-btn:hover {
    transform: scale(1.15);
}

.share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.share-btn.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.share-btn.copy:hover {
    background: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
    color: var(--space-black);
}

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.demo-credentials {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.demo-credentials strong {
    color: var(--orbit-cyan);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--space-deep);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
    margin-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orbit-cyan), transparent);
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orbit-cyan);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orbit-cyan);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

/* ============================================================
   ALERTS & NOTIFICATIONS
   ============================================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--orbit-cyan);
}

.alert-icon {
    flex-shrink: 0;
    font-weight: 700;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--orbit-cyan);
}

.breadcrumb-sep {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-chip:hover {
    border-color: var(--orbit-cyan);
    color: var(--orbit-cyan);
}

.filter-chip.active {
    border-color: var(--orbit-cyan);
    background: var(--orbit-glow);
    color: var(--orbit-cyan);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
    position: relative;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 48px;
    background: rgba(8, 15, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.search-input:focus {
    border-color: var(--orbit-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.page-btn:hover {
    border-color: var(--orbit-cyan);
    color: var(--orbit-cyan);
}

.page-btn.active {
    background: var(--orbit-cyan);
    border-color: var(--orbit-cyan);
    color: var(--space-black);
    font-weight: 700;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--space-black);
}

::-webkit-scrollbar-thumb {
    background: var(--space-blue);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orbit-cyan-dim);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.sticky-top {
    position: sticky;
    top: 90px;
}

.w-full {
    width: 100%;
}

.rounded {
    border-radius: var(--radius);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .orbit-system {
        display: none;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .navbar-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(3, 7, 18, 0.98);
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .section {
        padding: 60px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .product-screenshots {
        grid-template-columns: 1fr 1fr;
    }

    .screenshot-main {
        grid-column: 1 / -1;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-xl {
        padding: 14px 28px;
    }

    .filter-bar {
        padding: 14px 16px;
    }
}