/* ============================================ */
/* ROOT VARIABLES */
/* ============================================ */
:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #8e44ad;
    --accent: #f39c12;
    --dark: #0a0c10;
    --dark-light: #141820;
    --dark-card: #1a1d28;
    --text: #e0e6ed;
    --text-muted: #8892a4;
    --gradient-1: linear-gradient(135deg, #ff6b35, #f39c12);
    --gradient-2: linear-gradient(135deg, #8e44ad, #3498db);
    --gradient-3: linear-gradient(135deg, #ff6b35, #e74c3c);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --border: rgba(255, 255, 255, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 60px 20px;
    --section-padding-desktop: 100px 30px;
}

/* ============================================ */
/* RESET & BASE */
/* ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-logo {
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo .logo-icon {
    font-size: clamp(40px, 8vw, 60px);
    display: block;
    margin-bottom: 15px;
}

.preloader-logo h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
}

.preloader-bar {
    width: min(200px, 60vw);
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* ============================================ */
/* MOCKUP WINDOW ACTIONS */
/* ============================================ */
.mockup-actions {
    display: flex;
    gap: 8px;
    color: #555;
    font-size: 12px;
    flex-shrink: 0;
    align-items: center;
}

.mockup-action {
    cursor: pointer;
    transition: color 0.2s;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 3px;
}

.mockup-action:hover {
    color: #fff;
}

.mockup-action.minimize:hover {
    color: #ffbd2e;
}

.mockup-action.maximize:hover {
    color: #28ca41;
}

.mockup-action.close:hover {
    color: #ff5f57;
}


/* ============================================ */
/* VIDEO CONTROLS BAR - CUSTOM */
/* ============================================ */
.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 25px 10px 8px;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mockup-screen:hover .video-controls-bar {
    opacity: 1;
}

/* Progress Slider */
.video-progress-container {
    position: relative;
    width: 100%;
    height: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.video-progress-container:hover {
    height: 8px;
}

.video-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.video-progress-thumb {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255,107,53,0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.video-progress-container:hover .video-progress-thumb {
    opacity: 1;
}

/* Control Row */
.video-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ctrl-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s;
}

.ctrl-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--primary);
}

.time-display {
    color: #aaa;
    font-size: 11px;
    font-family: 'Consolas', monospace;
    margin-left: 4px;
}

/* Center Play Button */
.center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 16;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(255,107,53,0.5);
}

.mockup-screen:hover .center-play-btn,
.mockup-screen.paused .center-play-btn {
    opacity: 1;
}

.center-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff5722;
}

.mockup-screen.playing .center-play-btn {
    opacity: 0;
}

/* Fullscreen exit button */
.fullscreen-exit-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.fullscreen-exit-btn:hover {
    background: rgba(231,76,60,0.6);
    border-color: #e74c3c;
}

/* ============================================ */
/* VIDEO FULLSCREEN OVERLAY */
/* ============================================ */
.video-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.video-fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Fullscreen Border Frame */
.fullscreen-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    pointer-events: none;
    animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% { border-color: rgba(255, 107, 53, 0.2); }
    50% { border-color: rgba(255, 107, 53, 0.5); }
}

/* Close Button */
.fullscreen-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    color: #fff;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.fullscreen-close:hover {
    background: rgba(231, 76, 60, 0.8);
    border-color: #e74c3c;
    transform: rotate(90deg);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
}

/* Video Container */
.fullscreen-video-container {
    width: 90%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 0 8px rgba(0, 0, 0, 0.5),
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(255, 107, 53, 0.15);
    animation: video-appear 0.5s ease-out;
}

@keyframes video-appear {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Fullscreen Controls */
.fullscreen-controls {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    z-index: 10001;
    transition: opacity 0.3s;
}

.fullscreen-controls:hover {
    opacity: 1;
}

.fullscreen-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.fullscreen-play-btn:hover {
    background: #ff5722;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.fullscreen-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Esc Hint */
.fullscreen-hint {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 10001;
    pointer-events: none;
    animation: hint-fade 3s ease-in-out forwards;
}

@keyframes hint-fade {
    0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* Keyboard shortcut indicator */
.keyboard-shortcut {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin: 0 3px;
}

/* ============================================ */
/* RESPONSIVE FULLSCREEN */
/* ============================================ */
@media (max-width: 768px) {
    .fullscreen-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .fullscreen-video-container {
        width: 95%;
    }
    
    .fullscreen-controls {
        bottom: 30px;
        padding: 8px 20px;
        gap: 15px;
    }
    
    .fullscreen-play-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .fullscreen-label {
        font-size: 12px;
    }
    
    .fullscreen-border {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .fullscreen-video-container {
        width: 100%;
        border-radius: 0;
        aspect-ratio: 4 / 3;
    }
    
    .fullscreen-controls {
        bottom: 20px;
        padding: 6px 15px;
        gap: 10px;
    }
    
    .fullscreen-label {
        display: none;
    }
}

/* ============================================ */
/* NAVIGATION - MOBILE FIRST */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 900;
    position: relative;
    z-index: 1001;
}

.logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    filter: blur(25px);
    opacity: 0.3;
    border-radius: 50%;
    top: -8px;
    left: -8px;
}

.logo-text {
    position: relative;
    z-index: 1;
}

.accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 15px;
    min-height: 50px;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-gradient {
    background: var(--gradient-1);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:active {
    border-color: var(--primary);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================ */
/* HERO SECTION - SPLIT LAYOUT WITH FRAMED VIDEO */
/* ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 16px 60px;
    background: var(--dark);
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(142, 68, 173, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 12, 16, 0.95) 0%, var(--dark) 100%);
    z-index: 0;
    animation: bg-shift 20s ease-in-out infinite;
}

@keyframes bg-shift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(1%, -1%); }
    66% { transform: translate(-1%, 1%); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 6s infinite;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Hero Container - Split Layout */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1.1fr;
        gap: 60px;
    }
}

/* Left Text Content */
.hero-text-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: clamp(11px, 1.5vw, 13px);
    color: var(--primary);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(36px, 4.5vw, 52px);
    }
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    color: var(--primary);
    border-right: 3px solid var(--primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin: 0 0 30px;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
        gap: 30px;
    }
}

.stat-item {
    text-align: center;
    min-width: 65px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: clamp(10px, 1.3vw, 12px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================ */
/* VIDEO FRAME MOCKUP - Software Demo Style */
/* ============================================ */
.hero-video-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-mockup {
    width: 100%;
    max-width: 560px;
    background: #1a1d28;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #2a2d38;
    box-shadow: 
        0 0 0 4px #0a0c10,
        0 0 0 6px #1a1d28,
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 107, 53, 0.1);
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.video-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Mockup Title Bar */
.mockup-titlebar {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #141820;
    border-bottom: 1px solid #2a2d38;
    gap: 10px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #8892a4;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-actions {
    display: flex;
    gap: 8px;
    color: #555;
    font-size: 12px;
    flex-shrink: 0;
}

/* Mockup Screen */
.mockup-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0a0c10;
    overflow: hidden;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.mockup-screen:hover .video-controls {
    opacity: 1;
}

.video-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Screen Glow */
.screen-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, transparent 50%, rgba(142, 68, 173, 0.03) 100%);
}

/* Mockup Status Bar */
.mockup-statusbar {
    display: flex;
    justify-content: space-between;
    padding: 8px 14px;
    background: #141820;
    border-top: 1px solid #2a2d38;
    font-size: 10px;
    color: #666;
}

.mockup-statusbar span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================ */
/* FLOATING BADGES */
/* ============================================ */
.floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(26, 29, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: float-badge 4s ease-in-out infinite;
    display: none;
}

@media (min-width: 1024px) {
    .floating-badge {
        display: flex;
        align-items: center;
        gap: 6px;
    }
}

.floating-badge i {
    color: var(--primary);
    font-size: 14px;
}

.floating-1 {
    top: -5px;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-3 {
    top: 50%;
    right: -30px;
    animation-delay: 3s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================ */
/* SCROLL INDICATOR */
/* ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce-scroll 2s infinite;
}

@media (max-width: 767px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-indicator span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.mouse {
    width: 22px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 7px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================ */
/* SECTION STYLES */
/* ============================================ */
section {
    padding: 60px 16px;
}

@media (min-width: 768px) {
    section {
        padding: 80px 24px;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 30px;
    }
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: clamp(11px, 1.5vw, 12px);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================ */
/* FEATURES - WITH BIG IMAGES */
/* ============================================ */
.features {
    background: var(--dark-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(142, 68, 173, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    touch-action: manipulation;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.1);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
}

@media (min-width: 768px) {
    .feature-image-wrapper {
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .feature-image-wrapper {
        height: 300px;
    }
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(10, 12, 16, 0.7) 80%,
        rgba(10, 12, 16, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image-overlay {
    opacity: 1;
}

.feature-image-overlay i {
    font-size: 40px;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Feature Content */
.feature-content {
    padding: 25px 20px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .feature-content {
        padding: 30px 25px 35px;
    }
}

.feature-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

@media (min-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 16px;
    }
}

.icon-glow {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--primary);
    filter: blur(18px);
    opacity: 0.3;
    border-radius: 50%;
}

.feature-content h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-content p {
    color: var(--text-muted);
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Feature Points List */
.feature-points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.feature-points li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.feature-card:hover .feature-points li {
    color: var(--text);
}

/* ============================================ */
/* RESPONSIVE FEATURES */
/* ============================================ */
@media (max-width: 480px) {
    .feature-image-wrapper {
        height: 200px;
    }
    
    .feature-content {
        padding: 20px 15px 25px;
    }
    
    .feature-content h3 {
        font-size: 16px;
    }
    
    .feature-points li {
        font-size: 12px;
    }
}

/* ============================================ */
/* PROVIDERS */
/* ============================================ */
.providers {
    background: var(--dark);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 480px) {
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
    }
}

.provider-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    touch-action: manipulation;
}

@media (min-width: 768px) {
    .provider-card {
        padding: 30px 20px;
        border-radius: var(--radius);
    }
}

.provider-card:active {
    transform: scale(0.97);
}

.provider-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .provider-logo {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        margin-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .provider-logo {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card h3 {
    font-size: clamp(13px, 2vw, 16px);
    margin-bottom: 3px;
}

.provider-card span {
    font-size: clamp(10px, 1.5vw, 12px);
    color: var(--text-muted);
}

.provider-status {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .provider-status {
        font-size: 11px;
        padding: 4px 12px;
        margin-top: 10px;
    }
}

.provider-status.premium {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

/* ============================================ */
/* HOW IT WORKS */
/* ============================================ */
.how-it-works {
    background: var(--dark-light);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .step {
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
        padding: 30px;
        border-radius: var(--radius);
    }
}

.step:active {
    transform: scale(0.98);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
    line-height: 1;
}

@media (min-width: 768px) {
    .step-number {
        min-width: 80px;
    }
}

.step-content i {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

@media (min-width: 768px) {
    .step-content i {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.step-content h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-muted);
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.6;
}

/* ============================================ */
/* PRICING - UPDATED */
/* ============================================ */
.pricing {
    background: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 40px 30px;
        border-radius: var(--radius);
    }
}

.pricing-card:active {
    transform: scale(0.98);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

@media (max-width: 767px) {
    .pricing-card.popular {
        transform: none;
    }
}

.pricing-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--gradient-1);
    color: #fff;
}

.pricing-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    padding: 0 5px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: clamp(13px, 1.5vw, 14px);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: #2ecc71;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.contact-now-btn {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-now-btn:hover {
    transform: translateY(-2px);
}

.contact-now-btn i {
    font-size: 16px;
}

/* ============================================ */
/* CONTACT POPUP MODAL */
/* ============================================ */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px 30px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 107, 53, 0.1);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
    z-index: 1;
}

.popup-close-btn:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: #e74c3c;
    color: #e74c3c;
    transform: rotate(90deg);
}

/* Popup Header */
.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.popup-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.popup-header .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#popupPlanName {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.popup-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Popup Body */
.popup-body {
    margin-bottom: 20px;
}

.popup-info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.popup-contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.popup-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.telegram-card .popup-card-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.whatsapp-card .popup-card-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.website-card .popup-card-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
}

.popup-card-content {
    flex: 1;
}

.popup-card-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.popup-card-content span {
    font-size: 13px;
    color: var(--text-muted);
}

.popup-card-arrow {
    color: #555;
    font-size: 14px;
    transition: all 0.3s;
}

.popup-contact-card:hover .popup-card-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

/* Popup Footer */
.popup-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.popup-footer p {
    color: var(--text-muted);
    font-size: 12px;
}

.popup-footer i {
    color: var(--primary);
    margin-right: 5px;
}

/* ============================================ */
/* RESPONSIVE POPUP */
/* ============================================ */
@media (max-width: 480px) {
    .contact-popup {
        padding: 30px 20px 25px;
        width: 95%;
        border-radius: 16px;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .popup-header h2 {
        font-size: 18px;
    }
    
    .popup-contact-card {
        padding: 14px 15px;
    }
    
    .popup-card-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .popup-card-content h3 {
        font-size: 14px;
    }
}

/* ============================================ */
/* TESTIMONIALS */
/* ============================================ */
.testimonials {
    background: var(--dark-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 25px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 30px;
        border-radius: var(--radius);
    }
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text);
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================ */
/* CONTACT */
/* ============================================ */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 35px 25px;
        border-radius: var(--radius);
    }
}

.contact-card:active {
    transform: scale(0.97);
}

.contact-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .contact-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }
}

.contact-card h3 {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 8px;
}

.contact-card a {
    color: #74c0fc;
    text-decoration: none;
    font-size: clamp(13px, 1.8vw, 16px);
    transition: var(--transition);
    word-break: break-all;
}

.contact-card a:active {
    color: var(--primary);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--border);
    padding: 40px 16px 20px;
}

@media (min-width: 768px) {
    .footer {
        padding: 60px 30px 20px;
    }
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 900;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: clamp(13px, 1.5vw, 14px);
    margin-top: 12px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:active {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

/* ============================================ */
/* MOBILE NAVIGATION OVERLAY MENU */
/* ============================================ */
@media (max-width: 1023px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        height: 100dvh;
        background: var(--dark-card);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================ */
/* RESPONSIVE HERO ADJUSTMENTS */
/* ============================================ */
@media (max-width: 1023px) {
    .video-mockup {
        max-width: 100%;
        transform: none;
    }
    
    .video-mockup:hover {
        transform: none;
    }
    
    .mockup-title {
        font-size: 10px;
    }
    
    .mockup-statusbar {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .mockup-titlebar {
        padding: 8px 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .mockup-dots {
        gap: 4px;
    }
    
    .mockup-statusbar {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }
}

/* ============================================ */
/* TOUCH DEVICE OPTIMIZATIONS */
/* ============================================ */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .provider-card:hover,
    .pricing-card:hover,
    .contact-card:hover,
    .step:hover,
    .video-mockup:hover {
        transform: none;
        border-color: var(--border);
        box-shadow: none;
    }
    
    .feature-card:active,
    .provider-card:active,
    .pricing-card:active,
    .contact-card:active {
        transform: scale(0.97);
        border-color: rgba(255, 107, 53, 0.3);
    }
    
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
    
    .btn-primary:active {
        transform: scale(0.95);
    }
}

/* ============================================ */
/* SAFE AREA FOR NOTCHED PHONES */
/* ============================================ */
@supports (padding: max(0px)) {
    .navbar {
        padding-top: max(12px, env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: max(80px, calc(env(safe-area-inset-top) + 60px));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* ============================================ */
/* REDUCED MOTION */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */
@media print {
    .navbar,
    .hero-video-frame,
    .preloader,
    .scroll-indicator,
    .hero-particles,
    .mobile-menu-btn,
    .mobile-menu-overlay,
    .floating-badge {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .hero {
        min-height: auto;
        padding: 20px;
    }
}