/* ==========================================================================
   PlayContraGame & CS2 Helper Pro Modern Cyberpunk Stylesheet
   ========================================================================== */

:root {
    --bg-dark: #0B0E14;
    --bg-surface: #121620;
    --bg-surface-elevated: #181E2C;
    --bg-surface-glass: rgba(24, 30, 44, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 229, 255, 0.25);
    
    --primary: #00E5FF;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --primary-dark: #0099CC;
    
    --accent-orange: #FF9900;
    --accent-orange-glow: rgba(255, 153, 0, 0.4);
    --accent-cs2: #FF6D00;
    --accent-cs2-glow: rgba(255, 109, 0, 0.45);
    --accent-green: #00FF88;
    --accent-green-glow: rgba(0, 255, 136, 0.4);
    --accent-purple: #B388FF;
    --accent-red: #FF5252;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Space Grotesk', 'Outfit', sans-serif;
    --font-mono: 'Consolas', 'Courier New', monospace;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Ambient Glow Spheres */
.glow-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00E5FF, transparent 70%);
    top: -100px;
    left: -100px;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FF9900, transparent 70%);
    top: 35%;
    right: -150px;
}

.sphere-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #7C4DFF, transparent 70%);
    bottom: -100px;
    left: 20%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.max-w-narrow {
    max-width: 900px;
}

/* Typography Helpers */
.gradient-text {
    background: linear-gradient(135deg, #00E5FF 0%, #FFB300 60%, #FF8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-cs2-text {
    background: linear-gradient(135deg, #FF6D00 0%, #FFA726 50%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--accent-orange);
}

.text-green { color: var(--accent-green); }
.text-cyan { color: var(--primary); }
.text-orange { color: var(--accent-orange); }
.text-purple { color: var(--accent-purple); }
.text-muted { color: var(--text-muted); }
.code-font { font-family: var(--font-mono); font-size: 0.85rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9900 0%, #E65100 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 153, 0, 0.6);
    background: linear-gradient(135deg, #FFA726 0%, #EF6C00 100%);
}

.btn-cs2 {
    background: linear-gradient(135deg, #FF6D00 0%, #D84315 100%);
    box-shadow: 0 4px 20px var(--accent-cs2-glow);
}

.btn-cs2:hover {
    box-shadow: 0 6px 25px rgba(255, 109, 0, 0.65);
    background: linear-gradient(135deg, #FF8A65 0%, #BF360C 100%);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: #FFFFFF;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #222B3E;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-trial {
    background: linear-gradient(135deg, #00E5FF 0%, #00B0FF 50%, #7C4DFF 100%);
    color: #FFFFFF;
    font-weight: 700;
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
    animation: trial-pulse 2.5s infinite alternate ease-in-out;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.6);
    background: linear-gradient(135deg, #18FFFF 0%, #0091EA 50%, #651FFF 100%);
}

@keyframes trial-pulse {
    0% { box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3); }
    100% { box-shadow: 0 4px 25px rgba(124, 77, 255, 0.55); }
}

.btn-large {
    padding: 14px 28px;
    border-radius: var(--radius-lg);
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 400;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 14, 20, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 153, 0, 0.4);
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.35);
}

.version-badge {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

/* Product Top Bar Switcher */
.product-top-bar {
    background: rgba(18, 22, 32, 0.6);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.product-switcher-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.switcher-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.product-pills {
    display: inline-flex;
    background: var(--bg-dark);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    gap: 4px;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pill-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.pill-btn.active {
    background: var(--bg-surface-elevated);
    color: #FFFFFF;
    border-color: rgba(255, 153, 0, 0.4);
    box-shadow: 0 2px 14px rgba(255, 153, 0, 0.25);
}

.pill-btn[data-product="cs2"].active {
    border-color: rgba(255, 109, 0, 0.5);
    box-shadow: 0 2px 14px rgba(255, 109, 0, 0.3);
}

.pill-icon {
    font-size: 1rem;
}

.pill-tag {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 229, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.pill-tag.cs2-tag {
    background: rgba(255, 109, 0, 0.15);
    color: var(--accent-cs2);
    border: 1px solid rgba(255, 109, 0, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 50px 0 40px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-product-view {
    display: none;
    width: 100%;
}

.hero-product-view.active {
    display: block;
    animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.hero-badge.cs2-badge {
    background: rgba(255, 109, 0, 0.08);
    border-color: rgba(255, 109, 0, 0.3);
    color: var(--accent-cs2);
}

.product-highlight-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.product-highlight-badge.cs2-badge-pill {
    background: rgba(255, 109, 0, 0.15);
    border-color: rgba(255, 109, 0, 0.4);
    color: var(--accent-cs2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.hero-main-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.hero-text-block {
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual Artwork */
.hero-visual-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-artwork-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 153, 0, 0.18);
    transition: var(--transition);
}

.logo-artwork-wrapper.cs2-artwork-wrapper {
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.15) 0%, rgba(30, 20, 10, 0.6) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 109, 0, 0.25);
    border-color: rgba(255, 109, 0, 0.3);
}

.logo-artwork-wrapper:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 153, 0, 0.3);
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.artwork-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #FF9900, transparent 70%);
    filter: blur(50px);
    opacity: 0.3;
    z-index: -1;
}

.artwork-glow.cs2-glow {
    background: radial-gradient(circle, #FF6D00, transparent 70%);
    opacity: 0.45;
}

.artwork-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--accent-orange);
}

.artwork-corner.cs2-corner {
    border-color: var(--accent-cs2);
}

.corner-tl { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; border-top-left-radius: 6px; }
.corner-tr { top: -2px; right: -2px; border-top: 2px solid; border-right: 2px solid; border-top-right-radius: 6px; }
.corner-bl { bottom: -2px; left: -2px; border-bottom: 2px solid; border-left: 2px solid; border-bottom-left-radius: 6px; }
.corner-br { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; border-bottom-right-radius: 6px; }

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-color);
}

/* Sections Common */
.section {
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: rgba(14, 18, 26, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Dual Products Overview Grid */
.products-dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 153, 0, 0.1);
}

.featured-cs2-card {
    border-color: rgba(255, 109, 0, 0.4);
    background: linear-gradient(180deg, rgba(255, 109, 0, 0.06) 0%, var(--bg-surface) 100%);
    box-shadow: 0 0 35px rgba(255, 109, 0, 0.15);
}

.featured-cs2-card:hover {
    border-color: rgba(255, 109, 0, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 109, 0, 0.25);
}

.product-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: rgba(0, 229, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

.product-card-badge.cs2-badge-pill {
    background: linear-gradient(135deg, #FF6D00 0%, #D84315 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 109, 0, 0.4);
}

.product-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-card-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.product-card-game {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-price-from {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.product-price-from span {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.15rem;
}

.product-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.55;
}

.product-card-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
    flex-grow: 1;
}

.product-card-features-list li {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Feature & Pricing Tabs */
.features-tabs-wrapper {
    display: inline-flex;
    background: var(--bg-surface-elevated);
    padding: 5px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    margin-top: 24px;
    gap: 6px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #FFFFFF;
}

.tab-btn.active {
    background: linear-gradient(135deg, #FF9900 0%, #E65100 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.tab-btn[data-target="cs2"].active,
.tab-btn[data-pricing-target="cs2"].active {
    background: linear-gradient(135deg, #FF6D00 0%, #D84315 100%);
    box-shadow: 0 4px 15px var(--accent-cs2-glow);
}

.features-product-container,
.pricing-product-container {
    display: none;
}

.features-product-container.active,
.pricing-product-container.active {
    display: block;
    animation: fadeIn 0.35s ease forwards;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.35);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 153, 0, 0.08);
}

.cs2-feature-card:hover {
    border-color: rgba(255, 109, 0, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 109, 0, 0.12);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.feature-header-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.feature-category-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
}

.feature-category-tag.cs2-tag {
    color: var(--accent-cs2);
}

.feature-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-icon-wrapper.cyan { background: rgba(0, 229, 255, 0.12); color: var(--primary); }
.feature-icon-wrapper.green { background: rgba(0, 255, 136, 0.12); color: var(--accent-green); }
.feature-icon-wrapper.orange { background: rgba(255, 153, 0, 0.12); color: var(--accent-orange); }
.feature-icon-wrapper.purple { background: rgba(179, 136, 255, 0.12); color: var(--accent-purple); }
.feature-icon-wrapper.blue { background: rgba(33, 150, 243, 0.12); color: #2196F3; }
.feature-icon-wrapper.red { background: rgba(255, 82, 82, 0.12); color: var(--accent-red); }

.feature-tags-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-tags-list li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.f-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-orange);
    flex-shrink: 0;
}

.f-dot.cs2-dot {
    background-color: var(--accent-cs2);
    box-shadow: 0 0 8px var(--accent-cs2);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    background: linear-gradient(180deg, rgba(255, 153, 0, 0.08) 0%, var(--bg-surface) 100%);
    box-shadow: 0 0 35px rgba(255, 153, 0, 0.15);
}

.pricing-card.cs2-featured-card {
    border-color: var(--accent-cs2);
    background: linear-gradient(180deg, rgba(255, 109, 0, 0.09) 0%, var(--bg-surface) 100%);
    box-shadow: 0 0 35px rgba(255, 109, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF9900 0%, #E65100 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.popular-badge.cs2-badge-grad {
    background: linear-gradient(135deg, #FF6D00 0%, #D84315 100%);
    box-shadow: 0 2px 10px rgba(255, 109, 0, 0.4);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.price-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.price-stars {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.price-stars.cs2-stars {
    color: var(--accent-cs2);
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features .check {
    color: var(--accent-green);
    font-weight: bold;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 153, 0, 0.25);
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-desc code {
    background: rgba(255, 153, 0, 0.1);
    color: var(--accent-orange);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(255, 153, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-orange);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Status Card */
.status-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
}

.status-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.status-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-title-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.status-badge-live {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.status-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-param {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-val {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #080A0E;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 960px) {
    .hero-main-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-block {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual-block {
        margin-top: 10px;
    }
    
    .logo-artwork-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .products-dual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .footer-links-group {
        gap: 30px;
    }
    
    .product-card-actions {
        grid-template-columns: 1fr;
    }
    
    .features-tabs-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}
