/* ==========================================
   CYBERPUNK STYLE FOR BLACKSPRUT
   ========================================== */

/* CSS Variables for Cyber Theme */
:root {
    /* Colors */
    --cyber-black: #0a0a0f;
    --cyber-dark: #12121a;
    --cyber-gray: #1a1a24;
    --cyber-light: #242432;
    
    /* Neon Colors */
    --neon-green: #00ff88;
    --neon-blue: #0088ff;
    --neon-purple: #aa00ff;
    --neon-pink: #ff0088;
    --neon-cyan: #00ffff;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #707080;
    
    /* Effects */
    --glow-green: 0 0 10px rgba(0, 255, 136, 0.5);
    --glow-blue: 0 0 10px rgba(0, 136, 255, 0.5);
    --glow-purple: 0 0 10px rgba(170, 0, 255, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--cyber-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.cyber-header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

/* Logo */
.cyber-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.cyber-logo:hover {
    filter: drop-shadow(var(--glow-green));
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.cyber-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--neon-green);
}

.link-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition-medium);
}

.nav-link:hover .link-line {
    width: 100%;
}

.nav-link.highlight {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.nav-link.highlight:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: var(--glow-green);
}

/* Hero Section */
.cyber-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--neon-green);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-green);
    box-shadow: var(--glow-green);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 40px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cyber-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    overflow: hidden;
}

.cyber-button.primary {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 136, 255, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--neon-green);
}

.cyber-button.primary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 136, 255, 0.3));
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.cyber-button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.cyber-button.secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
}

.cyber-button:hover .btn-glow {
    opacity: 1;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Hero Visual */
.hero-visual {
    margin-top: 60px;
}

.cyber-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.card-header {
    background: rgba(26, 26, 36, 0.9);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.card-content {
    padding: 30px;
}

.terminal-window {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.terminal-line {
    margin-bottom: 10px;
}

.prompt {
    color: var(--neon-green);
    margin-right: 10px;
}

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

.output {
    color: var(--text-secondary);
    margin-left: 20px;
}

.output.success {
    color: var(--neon-green);
}

/* Sections */
.cyber-section {
    padding: 100px 0;
}

.cyber-section.dark {
    background: rgba(18, 18, 26, 0.5);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.label-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 600;
}

.label-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    line-height: 1.2;
}

.title-regular {
    color: var(--text-primary);
}

.title-accent {
    color: var(--neon-green);
    display: block;
    margin-top: 10px;
}

/* About Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition-medium);
}

.about-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.card-icon {
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 255, 136, 0.2);
    line-height: 1;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Sellers Grid */
.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.seller-benefit {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition-medium);
}

.seller-benefit:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: var(--glow-green);
}

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

.benefit-icon {
    color: var(--neon-green);
    font-size: 20px;
    font-weight: bold;
}

.benefit-title {
    font-size: 18px;
    color: var(--text-primary);
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Security Features */
.security-features {
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-visual {
    flex-shrink: 0;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Access Steps */
.access-steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.access-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.access-step .step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    flex: 1;
    transition: var(--transition-medium);
}

.step-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: var(--glow-green);
}

.step-title {
    font-size: 18px;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.step-text {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--neon-green);
}

.tip-icon {
    color: var(--neon-green);
    font-weight: bold;
}

.tip-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Security Warning */
.security-warning {
    background: rgba(255, 136, 0, 0.1);
    border: 1px solid rgba(255, 136, 0, 0.3);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    color: #ff8800;
    font-size: 24px;
    font-weight: bold;
    background: rgba(255, 136, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 18px;
    color: #ff8800;
    margin-bottom: 10px;
}

.warning-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Advantages */
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition-medium);
}

.advantage:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

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

.advantage-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 600;
}

.advantage-title {
    font-size: 18px;
    color: var(--text-primary);
}

.advantage-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.cyber-footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 60px 0 30px;
}

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

.footer-brand {
    max-width: 300px;
}

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

.footer-logo svg {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--neon-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--neon-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--neon-green); }
    50% { box-shadow: 0 0 20px var(--neon-green); }
}

/* Responsive */
@media (max-width: 992px) {
    .cyber-nav .nav-links {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cyber-nav {
        display: none;
    }
    
    .cyber-menu-btn {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-steps .step,
    .access-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .security-features .feature {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-button {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   STYLES FOR ADDED PHOTOS
   ========================================== */

/* Platform Preview in Hero */
.platform-preview {
    margin-top: 25px;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8), transparent);
    padding: 15px;
    z-index: 2;
}

.overlay-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--neon-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.platform-preview:hover .preview-image {
    transform: scale(1.02);
}

.preview-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(10, 10, 15, 0.9);
    padding: 15px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.grid-item {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    padding: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.grid-item:last-child {
    border-right: none;
}

.grid-item.active {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

/* Security Feature with Image */
.feature-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
}

.feature-image-container {
    position: relative;
}

.image-frame {
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(26, 26, 36, 0.5);
    padding: 3px;
}

.security-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    filter: grayscale(20%) contrast(110%);
    transition: var(--transition-medium);
}

.image-frame:hover .security-image {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.01);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    padding: 20px 15px 10px;
}

.caption-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.caption-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--neon-green);
    margin-top: 5px;
}

.security-layers {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.layer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.layer-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.layer:nth-child(1) .layer-dot { --i: 0; }
.layer:nth-child(2) .layer-dot { --i: 1; }
.layer:nth-child(3) .layer-dot { --i: 2; }

/* Advantage with Image */
.advantage-with-image {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(26, 26, 36, 0.8);
    border-color: rgba(0, 255, 136, 0.2);
}

.advantage-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.5);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-bubble {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.bubble-value {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-green);
}

.bubble-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.advantage-content {
    padding-right: 20px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Responsive adjustments for images */
@media (max-width: 992px) {
    .feature-with-image,
    .advantage-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-with-image {
        grid-column: span 1;
    }
    
    .feature-image-container,
    .advantage-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .preview-grid {
        flex-direction: column;
        gap: 10px;
    }
    
    .grid-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px;
    }
    
    .grid-item:last-child {
        border-bottom: none;
    }
    
    .image-stats {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
        padding: 0 20px;
    }
    
    .stat-bubble {
        flex: 1;
        max-width: 120px;
    }
}
/* ===== Reviews Section ===== */

#reviews {
    padding: 100px 0;
    background: #0c0f12;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.review-card {
    background: rgba(20, 24, 28, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(6px);
}

/* Неоновая рамка при наведении */
.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
}

.review-text {
    color: #d3f7e1;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

/* Украшение слева от текста */
.review-text::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
    background: linear-gradient(180deg, #00ff88, #009f55);
    opacity: 0.8;
}

.review-author {
    margin-top: 18px;
    color: #00ff88;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Легкая пульсация неона */
@keyframes neonPulse {
    0% { box-shadow: 0 0 10px rgba(0,255,136,0.15); }
    50% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }
    100% { box-shadow: 0 0 10px rgba(0,255,136,0.15); }
}

.review-card:hover {
    animation: neonPulse 1.8s infinite ease-in-out;
}
