/* ============================================
   ANTIBOTS7 SHOP - TERMINAL/TECH DESIGN
   ============================================ */

:root {
    /* Terminal Colors */
    --term-green: #00ff88;
    --term-blue: #00d4ff;
    --term-purple: #bf5af2;
    --term-orange: #ff9f0a;
    --term-red: #ff453a;
    --term-yellow: #ffd60a;
    
    /* Legacy mappings */
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #bf5af2;
    
    /* Backgrounds */
    --dark: #0a0a0a;
    --dark-light: #111111;
    --dark-lighter: #161616;
    --term-border: #222222;
    --term-card: #0d0d0d;
    
    /* Text */
    --text: #e5e5e5;
    --text-muted: #666666;
    
    /* Status */
    --danger: #ff453a;
    --success: #32d74b;
    --warning: #ffd60a;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #bf5af2 0%, #ff453a 100%);
    --gradient-3: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.font-mono {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid Background */
.grid-bg {
    background-image: 
        linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: -1;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,255,136,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

.matrix-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scan Line Animation */
@keyframes scanLine {
    0% { top: -5%; }
    100% { top: 105%; }
}

/* Blink Animation for Terminal Cursor */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Status Dot Pulse */
@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0,255,136,0); }
}

/* Pulse animation for status indicators */
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--term-green); }
    50% { opacity: 0.7; box-shadow: 0 0 15px var(--term-green); }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--term-green);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

/* ============================================
   NAVIGATION - TERMINAL STYLE
   ============================================ */

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--term-border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 120px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-logo .logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
    max-width: 150px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--term-green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.logo-text .accent {
    color: var(--term-green);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '>';
    position: absolute;
    left: 0;
    opacity: 0;
    color: var(--term-green);
    transition: all 0.3s;
    transform: translateX(-5px);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    color: var(--term-green);
    padding-left: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Status indicator in nav */
.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--term-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS - TERMINAL STYLE
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--term-green);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

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

.btn-outline:hover {
    background: var(--term-green);
    color: #000;
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--dark-lighter);
    color: var(--text);
    border: 1px solid var(--term-border);
}

.btn-secondary:hover {
    background: var(--dark-light);
    border-color: var(--term-green);
    color: var(--term-green);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ============================================
   HERO SECTION - TERMINAL STYLE
   ============================================ */

.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: visible;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--term-green);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-stat span:first-child {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--term-green);
}

.hero-stat span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--term-green);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Visual - Terminal Window */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Terminal Window in Hero */
.terminal-window {
    width: 100%;
    max-width: 480px;
    background: #0a0a0a;
    border: 1px solid var(--term-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.15),
        0 0 100px rgba(0, 255, 136, 0.05);
    position: relative;
    z-index: 10;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.25rem;
    background: #111;
    border-bottom: 1px solid var(--term-border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 2;
    min-height: 200px;
}

.terminal-line {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.terminal-line.success {
    color: var(--term-green);
}

.terminal-line.error {
    color: var(--term-red);
}

.terminal-line.command {
    color: var(--term-blue);
}

.terminal-line.blink {
    color: var(--term-green);
    display: inline-block;
}

.terminal-line.blink::after {
    content: '█';
    animation: blink 1s step-start infinite;
}

/* Terminal Stats Row */
.terminal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--term-border);
}

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

.terminal-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--term-green);
    display: block;
}

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

/* ============================================
   SECTION HEADERS - TERMINAL STYLE
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(191, 90, 242, 0.1);
    border: 1px solid rgba(191, 90, 242, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--term-purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label::before {
    content: '#';
    color: var(--term-purple);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES & PRODUCTS SECTIONS
   ============================================ */

.services-section,
.products-section,
.features-section {
    padding: 6rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--term-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--term-green);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--term-green);
    margin-bottom: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    transition: opacity 0.3s ease;
}

.product-card {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--term-green);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--dark);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--term-green);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--term-green);
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--term-green);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FEATURES GRID - TERMINAL STYLE
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--term-green);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--term-green);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION - TERMINAL STYLE
   ============================================ */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(191, 90, 242, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-top: 1px solid var(--term-border);
    border-bottom: 1px solid var(--term-border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

/* ============================================
   FOOTER - TERMINAL STYLE
   ============================================ */

.main-footer {
    background: #050505;
    border-top: 1px solid var(--term-border);
    padding: 4rem 0 2rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,255,136,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    font-size: 1.25rem;
    color: var(--term-green);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4::before {
    content: '#';
    color: var(--term-green);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a::before {
    content: '→';
    color: var(--term-border);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--term-green);
}

.footer-col ul li a:hover::before {
    color: var(--term-green);
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--term-border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom span.green {
    color: var(--term-green);
}

/* ============================================
   FORMS - TERMINAL STYLE
   ============================================ */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark);
    border: 1px solid var(--term-border);
    color: var(--text);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--term-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Auth Pages */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-box {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header .logo {
    display: inline-flex;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--term-border);
}

.text-link {
    color: var(--term-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--term-blue);
}

/* ============================================
   PAGE HERO - TERMINAL STYLE
   ============================================ */

.page-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: var(--dark);
    border-bottom: 1px solid var(--term-border);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,255,136,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    position: relative;
}

/* ============================================
   PRODUCTS PAGE - TERMINAL STYLE
   ============================================ */

.products-page {
    padding: 4rem 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.filter-section h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section h3::before {
    content: '#';
    color: var(--term-green);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.25rem;
}

.category-list a {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a::before {
    content: '>';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--term-green);
}

.category-list a:hover::before,
.category-list a.active::before {
    opacity: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.products-sort select {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ============================================
   SERVICES PAGE - TERMINAL STYLE
   ============================================ */

.services-page {
    padding: 4rem 0;
}

.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-full {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--term-green);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-full:hover {
    border-color: var(--term-green);
    transform: translateX(10px);
}

.service-card-full:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-card-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.service-card-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--term-green);
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
}

.service-features li svg {
    color: var(--term-green);
    flex-shrink: 0;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--term-border);
}

.service-pricing {
    display: flex;
    flex-direction: column;
}

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

.price-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--term-green);
}

/* ============================================
   CART PAGE - TERMINAL STYLE
   ============================================ */

.cart-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
}

.empty-cart .empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-cart h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.cart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--term-green);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.cart-item:hover {
    border-color: var(--term-green);
}

.cart-item:hover::before {
    height: 60%;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--term-border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.item-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--dark);
    border: 1px solid var(--term-border);
    border-radius: 8px;
    padding: 0.25rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--term-border);
    border-radius: 6px;
    color: var(--term-green);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--term-green);
    color: var(--dark);
    border-color: var(--term-green);
}

.cart-item-quantity input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--term-green);
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: var(--danger);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

.cart-summary {
    position: sticky;
    top: 100px;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 1.75rem;
    height: fit-content;
}

.cart-summary h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-summary h2::before {
    content: '#';
    color: var(--term-green);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--term-border);
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: none;
    padding-top: 1.25rem;
}

.summary-row.total span:last-child {
    color: var(--term-green);
}

.cart-summary .btn {
    margin-top: 1.25rem;
}

.cart-summary .btn:last-child {
    margin-top: 0.75rem;
}

/* ============================================
   ALERTS - TERMINAL STYLE
   ============================================ */

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

.alert::before {
    font-size: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-success::before {
    content: '✓';
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

.alert-error::before {
    content: '✗';
}

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

.alert-warning::before {
    content: '!';
}

/* ============================================
   RESPONSIVE - TERMINAL STYLE
   ============================================ */

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar > div {
        position: static;
    }
    
    .product-modal-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-stat span:first-child {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-price {
        grid-column: 2;
        text-align: left;
        font-size: 1.1rem;
    }
    
    .cart-item-quantity {
        grid-column: 2;
    }
    
    .cart-item-remove {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
    }
    
    .service-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-features ul {
        grid-template-columns: 1fr;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 2.5rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card-full,
    .product-card {
        padding: 1.25rem;
    }
    
    .service-icon-large {
        font-size: 2.25rem;
    }
    
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    .modal-body,
    #productModalContent {
        padding: 1.25rem;
    }
    
    .modal-content::before {
        font-size: 0.7rem;
        padding: 0.6rem 1rem;
    }
    
    .product-modal-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-modal-image img {
        max-height: 250px;
    }
    
    .product-modal-info h2 {
        font-size: 1.35rem;
    }
    
    .product-modal-info .product-price {
        font-size: 1.5rem;
    }
    
    .product-video-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .product-video-section h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .service-detail-layout {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-sidebar > div {
        position: static !important;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cart-item {
        padding: 0.875rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .auth-box {
        padding: 1.5rem;
    }
    
    .product-modal-image img {
        max-height: 200px;
    }
    
    .product-modal-info h2 {
        font-size: 1.25rem;
    }
    
    .product-modal-info .product-price {
        font-size: 1.35rem;
    }
    
    .product-modal-info p {
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICE DETAIL & CONTACT LAYOUTS
   ============================================ */

.service-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-detail-sidebar > div {
    position: sticky;
    top: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
}

.contact-form-wrapper::before {
    content: '● ● ● contact_form.sh';
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--term-border);
}

.contact-form-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-info {
    padding: 2.5rem;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--term-green);
}

.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--term-green);
}

.contact-info-item h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--term-green);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ============================================
   MODAL - TERMINAL STYLE
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--dark-lighter);
    border: 1px solid var(--term-green);
    border-radius: 12px;
    padding: 0;
    width: 100%;
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.1);
    display: flex;
    flex-direction: column;
}

/* Terminal window header for modal */
.modal-content::before {
    content: '● ● ● terminal@antibots7shop:~/product';
    display: block;
    background: var(--dark);
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--term-border);
    flex-shrink: 0;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 50px);
}

/* Direct content inside modal (when no modal-body wrapper) */
.modal-content > div:not(.close):first-of-type,
#productModalContent {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
    background: var(--term-green);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--term-green);
    background: rgba(0, 255, 136, 0.1);
}

.product-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-modal-image {
    position: sticky;
    top: 0;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--term-border);
    display: block;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-modal-info .product-badge {
    position: static;
    display: inline-block;
    width: fit-content;
}

.product-modal-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0.5rem 0;
    color: var(--text);
}

.product-modal-info .product-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--term-green);
    margin: 0.5rem 0 1rem;
}

.product-modal-info p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Video section in modal */
.product-video-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--term-border);
}

.product-video-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--term-border);
    background: var(--dark);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   SPINNER & ANIMATIONS
   ============================================ */

.spinner {
    border: 3px solid var(--term-border);
    border-top: 3px solid var(--term-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.products-grid {
    transition: opacity 0.3s ease;
}

/* ============================================
   FOOTER STATUS & SOCIAL - TERMINAL STYLE
   ============================================ */

.footer-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--term-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--term-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--term-green);
}

.version-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--term-border);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--dark);
    border: 1px solid var(--term-border);
    border-radius: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--term-green);
    border-color: var(--term-green);
    color: var(--dark);
}

.contact-label {
    color: var(--term-green);
    margin-right: 0.25rem;
}

/* Nav Status */
.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--term-green);
    padding: 0.35rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
}

.nav-status .status-dot {
    width: 6px;
    height: 6px;
}

/* Terminal Scan Line Animation */
@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--term-green), transparent);
    opacity: 0.3;
    animation: scan-line 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.1), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        justify-content: center;
    }
    
    .terminal-window {
        max-width: 100%;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar > div {
        position: static;
    }
    
    .product-modal-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-modal-image {
        position: static;
    }
    
    .product-modal-image img {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }
    
    .product-modal-info h2 {
        font-size: 1.5rem;
    }
    
    .product-modal-info .product-price {
        font-size: 1.75rem;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
        margin: 1rem;
    }
    
    #productModalContent {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .terminal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .terminal-stat-value {
        font-size: 1.25rem;
    }
    
    .nav-status {
        display: none;
    }
    
    .footer-status {
        flex-wrap: wrap;
    }
    
    .social-links {
        margin-top: 1.5rem;
    }
}

/* ============================================
   SMART SENDER PRODUCT PAGE
   ============================================ */

/* Highlighted nav link */
.nav-link-highlight {
    color: var(--term-green) !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* ── Hero ── */
.ss-hero {
    padding: 7rem 0 5rem;
    position: relative;
}

.ss-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ss-hero-content {
    z-index: 2;
}

.ss-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ── Video Section ── */
.ss-video-section {
    padding: 5rem 0;
}

.ss-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ss-video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.ss-video-placeholder:hover {
    border-color: var(--term-green);
}

.ss-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}

.ss-video-placeholder iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.ss-video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--term-green);
    transition: all 0.3s;
    z-index: 1;
}

.ss-video-placeholder:hover .ss-video-play-btn {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: scale(1.1);
}

.ss-video-caption {
    margin-top: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 1;
}

/* ── Features Section ── */
.ss-features-section {
    padding: 5rem 0;
}

.ss-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ss-feature-card {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ss-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
}

.ss-feature-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ss-feature-card:hover::before {
    opacity: 1;
}

.ss-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ss-feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.ss-feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── Pricing Section ── */
.ss-pricing-section {
    padding: 5rem 0;
}

.ss-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.ss-pricing-card {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
}

.ss-pricing-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-4px);
}

.ss-pricing-featured {
    border-color: var(--term-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
    transform: scale(1.02);
}

.ss-pricing-featured:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--term-green);
}

.ss-pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    background: var(--term-orange);
    color: #000;
    margin-bottom: 1rem;
}

.ss-pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ss-pricing-price {
    margin-bottom: 2rem;
}

.ss-price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--term-green);
}

.ss-price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.ss-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.ss-pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ss-pricing-features li:last-child {
    border-bottom: none;
}

.ss-pricing-features .check {
    color: var(--term-green);
    font-weight: 700;
}

.ss-pricing-features .x {
    color: var(--text-muted);
}

.ss-pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ── Showcase/Screenshots ── */
.ss-showcase-section {
    padding: 5rem 0;
}

.ss-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ss-showcase-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--term-border);
    transition: all 0.3s;
}

.ss-showcase-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.ss-showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ss-showcase-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--dark-lighter);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.ss-showcase-placeholder span {
    font-size: 3rem;
}

.ss-showcase-placeholder p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Specs ── */
.ss-specs-section {
    padding: 4rem 0;
}

.ss-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ss-spec-card {
    background: var(--dark-lighter);
    border: 1px solid var(--term-border);
    border-radius: 16px;
    padding: 2rem;
}

.ss-spec-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--term-green);
    margin-bottom: 1.25rem;
}

.ss-spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-spec-card li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ss-spec-card li::before {
    content: '›';
    color: var(--term-green);
    font-weight: bold;
}

.ss-spec-card li:last-child {
    border-bottom: none;
}

/* ── Download Box ── */
.ss-download-section {
    padding: 5rem 0;
}

.ss-download-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--dark-lighter);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.ss-download-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.ss-download-content {
    z-index: 1;
}

.ss-download-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ss-download-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ss-download-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ss-download-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--term-green);
}

.ss-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.ss-download-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ss-download-note a {
    color: var(--term-green);
    text-decoration: underline;
}

.ss-download-visual {
    z-index: 1;
}

/* ── FAQ ── */
.ss-faq-section {
    padding: 5rem 0;
}

.ss-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ss-faq-item {
    border: 1px solid var(--term-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ss-faq-item:hover,
.ss-faq-item.open {
    border-color: rgba(0, 255, 136, 0.3);
}

.ss-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--dark-lighter);
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-align: left;
    transition: background 0.2s;
}

.ss-faq-question:hover {
    background: rgba(0, 255, 136, 0.03);
}

.ss-faq-question span {
    color: var(--term-green);
}

.ss-faq-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.ss-faq-item.open .ss-faq-arrow {
    transform: rotate(180deg);
    color: var(--term-green);
}

.ss-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
}

.ss-faq-item.open .ss-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.ss-faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── Responsive: Smart Sender Page ── */
@media (max-width: 1024px) {
    .ss-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ss-hero-cta {
        justify-content: center;
    }
    
    .ss-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-download-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ss-download-meta {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .ss-hero {
        padding: 5rem 0 3rem;
    }
    
    .ss-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ss-pricing-featured {
        transform: none;
    }
    
    .ss-pricing-featured:hover {
        transform: translateY(-4px);
    }
    
    .ss-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-download-box {
        padding: 2rem;
    }
}

