/* ==========================================================================
   AZIZVPN MODERN CORPORATE STYLESHEET WITH RICH MICRO-ANIMATIONS
   Clean, Sleek, Professional SaaS / Enterprise Dark Aesthetic
   ========================================================================== */

:root {
    --bg-main: #050811;
    --bg-surface: #0D1322;
    --bg-surface-elevated: #131B30;
    --bg-glass: rgba(18, 26, 46, 0.7);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(0, 245, 212, 0.45);
    --border-specular: rgba(255, 255, 255, 0.14);

    --primary: #00F5D4;
    --primary-glow: rgba(0, 245, 212, 0.3);
    --accent-blue: #3B82F6;
    --accent-indigo: #6366F1;
    --accent-emerald: #10B981;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-main);
}

/* ================= 1. SCROLL PROGRESS BAR ================= */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #00F5D4, #10B981);
    width: 0%;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.6);
    transition: width 0.1s ease-out;
}

/* ================= 2. AMBIENT MESH ORBS WITH MICRO-DRIFT ================= */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 80%);
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
}

.orb-1 {
    width: 650px;
    height: 650px;
    background: #00F5D4;
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: #3B82F6;
    top: 35%;
    left: -150px;
}

.orb-3 {
    width: 480px;
    height: 480px;
    background: #6366F1;
    bottom: -100px;
    right: 15%;
}

.floating-slow { animation: orbFloatSlow 18s ease-in-out infinite alternate; }
.floating-medium { animation: orbFloatMedium 14s ease-in-out infinite alternate; }
.floating-fast { animation: orbFloatFast 10s ease-in-out infinite alternate; }

@keyframes orbFloatSlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.1); }
}

@keyframes orbFloatMedium {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, -50px) scale(1.15); }
}

@keyframes orbFloatFast {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -60px) scale(1.08); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= 3. SPOTLIGHT HOVER EFFECT ================= */
.spotlight-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -1000px);
    left: var(--mouse-x, -1000px);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

.spotlight-card:hover {
    border-color: var(--border-focus);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 245, 212, 0.06);
}

/* ================= 4. NAVBAR ================= */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(5, 8, 17, 0.78);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    background: rgba(5, 8, 17, 0.92);
    border-bottom-color: var(--border-specular);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFF;
    transition: transform 0.25s ease;
}

.brand-logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.25), rgba(59, 130, 246, 0.25));
    border: 1px solid var(--border-specular);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon svg {
    transform: rotate(6deg) scale(1.1);
}

.logo-sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: sparkleSweep 4s infinite;
}

@keyframes sparkleSweep {
    0%, 70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link-hover {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-hover:hover {
    color: #FFF;
}

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

/* ================= 5. BUTTONS & MICRO-SHEEN ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-primary {
    background: var(--primary);
    color: #050811;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-sheen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: btnSweep 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes btnSweep {
    0%, 75% { left: -60%; }
    100% { left: 160%; }
}

.btn-primary:hover {
    transform: translateY(-2.5px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 245, 212, 0.5);
    background: #1DF8DE;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: var(--bg-surface);
    color: #FFF;
    border: 1px solid var(--border-specular);
}

.btn-secondary:hover {
    background: var(--bg-surface-elevated);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2.5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-arrow-right {
    transition: transform 0.25s ease;
}

.btn-secondary:hover .btn-arrow-right {
    transform: translateX(4px);
}

.icon-bounce {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover .icon-bounce {
    transform: translateY(-3px);
}

.btn-subtext {
    font-size: 11px;
    opacity: 0.75;
    margin-left: 4px;
    font-weight: 500;
}

/* ================= 6. HERO SECTION ================= */
.hero-section {
    padding-top: 140px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(0, 245, 212, 0.08);
    border: 1px solid rgba(0, 245, 212, 0.25);
    border-radius: 100px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.status-indicator-radar {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-center {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.radar-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    animation: radarPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.6); opacity: 0; }
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: -1.6px;
    margin-bottom: 22px;
}

/* ================= INTERACTIVE SCRAMBLE & CIPHER WORDS ================= */
.interactive-word {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), letter-spacing 0.25s ease, color 0.2s ease, text-shadow 0.25s ease;
    will-change: transform, letter-spacing;
}

.interactive-word:hover {
    transform: translateY(-2px) scale(1.03);
    letter-spacing: 0.8px;
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    color: #FFF;
}

.word-freedom {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), letter-spacing 0.3s ease, filter 0.3s ease;
}

.word-freedom:hover {
    letter-spacing: 2px !important;
    transform: translateY(-3px) scale(1.06) !important;
    filter: drop-shadow(0 0 24px rgba(0, 245, 212, 0.9));
}

.cipher-word {
    font-family: var(--font-mono);
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(0, 245, 212, 0.08);
    border: 1px dashed rgba(0, 245, 212, 0.35);
    color: var(--primary);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
    user-select: none;
}

.cipher-word:hover {
    background: rgba(0, 245, 212, 0.2);
    border-style: solid;
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 245, 212, 0.35);
}

.cipher-word.cipher-lock {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.35);
    color: #FCA5A5;
}

.cipher-word.cipher-lock:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: #10B981;
    color: #6EE7B7;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.gradient-text {
    background: linear-gradient(135deg, #00F5D4 0%, #3B82F6 50%, #6366F1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-animated {
    animation: gradientShift 6s ease infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 530px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.interactive-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: default;
}

.interactive-chip:hover {
    background: rgba(0, 245, 212, 0.08);
    border-color: rgba(0, 245, 212, 0.3);
    color: #FFF;
    transform: translateY(-2px);
}

.chip-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald);
}

/* ================= 7. 3D TILT & FLOATING GLASS BADGES ================= */
.hero-visual {
    perspective: 1200px;
    position: relative;
}

.tilt-container {
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.floating-badge {
    position: absolute;
    background: rgba(14, 20, 36, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-specular);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 245, 212, 0.1);
    z-index: 10;
}

.badge-top-right {
    top: -20px;
    right: -20px;
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
}

.float-anim-1 { animation: floatKey1 4s ease-in-out infinite alternate; }
.float-anim-2 { animation: floatKey2 5s ease-in-out infinite alternate; }

@keyframes floatKey1 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes floatKey2 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(10px) rotate(-1.5deg); }
}

.badge-icon-wrap { font-size: 16px; }
.badge-title { font-size: 11px; font-weight: 800; color: #FFF; }
.badge-sub { font-size: 9px; color: var(--primary); font-family: var(--font-mono); }

/* ================= 8. APP WINDOW MOCKUP & LIVE CANVAS GRAPH ================= */
.app-window-frame {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-specular);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 245, 212, 0.08);
}

.window-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.dot:hover { transform: scale(1.2); }
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.window-title {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-live-beacon {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald);
    animation: beaconFlash 1.5s infinite;
}

@keyframes beaconFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.window-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 245, 212, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: var(--font-mono);
}

.window-body {
    padding: 24px;
}

.mock-status-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-specular);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.mock-ip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mock-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

.mock-ping {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-emerald);
    font-family: var(--font-mono);
}

.mock-ip-val {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tag-secure {
    font-size: 9px;
    font-weight: 800;
    color: #050811;
    background: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
}

.mock-loc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-bottom: 18px;
}

.mock-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mock-power-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00F5D4, #3B82F6);
    color: #050811;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 30px var(--primary-glow);
    transition: var(--transition-bounce);
}

.mock-power-btn:hover {
    transform: scale(1.08);
}

.pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringWave 2s infinite;
}

.ring-2 {
    width: 100%;
    height: 100%;
    animation: ringWave 2s infinite 0.7s;
}

@keyframes ringWave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.mock-state-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* Real-time HTML5 Canvas Waveform */
.canvas-chart-wrap {
    background: #090E1A;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 14px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.chart-title {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

.chart-live-tag {
    font-size: 9px;
    font-weight: 800;
    color: #EF4444;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 4px;
}

.rec-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #EF4444;
    animation: beaconFlash 1s infinite;
}

#liveSpeedCanvas {
    width: 100%;
    height: 60px;
    display: block;
}

.mock-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.stat-box {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--border-specular);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
}

.stat-value {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: #FFF;
    margin-top: 2px;
}

.stat-value .unit {
    font-size: 10px;
    color: var(--text-muted);
}

.stat-value.highlight {
    color: var(--accent-emerald);
}

/* Telemetry Stream Chip */
.telemetry-chip {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    display: flex;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.telemetry-prefix {
    color: var(--primary);
    font-weight: bold;
}

/* ================= 9. STATS STRIP ================= */
.stats-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 0;
    margin: 40px 0;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.strip-card {
    padding: 24px;
    text-align: center;
    position: relative;
}

.strip-icon-wrap {
    font-size: 22px;
    margin-bottom: 6px;
}

.strip-number {
    font-size: 34px;
    font-weight: 850;
    color: #FFF;
    font-family: var(--font-mono);
    margin-bottom: 4px;
    background: linear-gradient(135deg, #FFF 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strip-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ================= 10. INTERACTIVE NETWORK MAP VISUALIZER ================= */
.map-interactive-card {
    padding: 24px;
    background: var(--bg-surface);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.map-node-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.node-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.node-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.node-indicator.de { background: #00F5D4; box-shadow: 0 0 6px #00F5D4; }
.node-indicator.nl { background: #F59E0B; box-shadow: 0 0 6px #F59E0B; }
.node-indicator.gb { background: #3B82F6; box-shadow: 0 0 6px #3B82F6; }
.node-indicator.us { background: #EC4899; box-shadow: 0 0 6px #EC4899; }
.node-indicator.jp { background: #EF4444; box-shadow: 0 0 6px #EF4444; }

.node-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFF;
    border-color: var(--border-specular);
}

.node-btn.active {
    background: rgba(0, 245, 212, 0.12);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 14px rgba(0, 245, 212, 0.2);
}

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

.ping-tag {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.map-svg-wrap {
    width: 100%;
    background: #080D1A;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-subtle);
}

.world-svg {
    width: 100%;
    height: auto;
    display: block;
}

.animated-laser-path {
    stroke-dasharray: 8, 4;
    animation: laserDash 1.2s linear infinite;
}

@keyframes laserDash {
    to { stroke-dashoffset: -24; }
}

.radar-ripple {
    animation: rippleRing 2.5s infinite;
}

.radar-ripple-cyan {
    animation: rippleRing 2s infinite;
}

@keyframes rippleRing {
    0% { r: 5; opacity: 0.8; }
    100% { r: 24; opacity: 0; }
}

/* ================= 11. FEATURES GRID ================= */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    position: relative;
}

/* ================= BESPOKE HEADING MICRO-INTERACTIONS ================= */

/* 1. "Neden AzizVPN?" Heading Interactive Brand Badge */
.hover-heading-brand-wrap {
    cursor: default;
}

.hover-heading-brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 12px;
    transition: var(--transition-bounce);
}

.brand-aziz {
    color: #FFF;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand-vpn-badge {
    color: #050811;
    background: var(--primary);
    padding: 1px 8px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 0 14px var(--primary-glow);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.brand-tooltip-pill {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    background: rgba(14, 20, 36, 0.95);
    border: 1px solid var(--border-specular);
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    font-family: var(--font-mono);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
}

.hover-heading-brand:hover {
    background: rgba(0, 245, 212, 0.08);
}

.hover-heading-brand:hover .brand-aziz {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.6);
}

.hover-heading-brand:hover .brand-vpn-badge {
    background: linear-gradient(135deg, #00F5D4, #3B82F6);
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.7);
}

.hover-heading-brand:hover .brand-tooltip-pill {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px) scale(1);
}

/* 2. "Ultra Düşük Gecikmeli Hatlar" (Fiber Laser Underline & Pulse) */
.hover-heading-fiber {
    cursor: pointer;
}

.text-ultra {
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.hover-heading-fiber:hover .text-ultra {
    color: var(--accent-emerald);
    text-shadow: 0 0 18px rgba(16, 185, 129, 0.6);
}

.text-fiber-lines {
    position: relative;
    display: inline-block;
}

.text-fiber-lines::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #00F5D4, #10B981);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-heading-fiber:hover .text-fiber-lines::after {
    width: 100%;
}

/* 3. "Geleneksel VPN'lere Karşı AzizVPN" (VS & Zero-Driver Stamp) */
.hover-heading-vs {
    cursor: default;
}

.legacy-vpn-strike {
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.legacy-vpn-strike::after {
    content: '';
    position: absolute;
    top: 52%;
    left: 0;
    width: 0%;
    height: 2px;
    background: #EF4444;
    transition: width 0.35s ease;
}

.hover-heading-vs:hover .legacy-vpn-strike {
    color: #94A3B8;
}

.hover-heading-vs:hover .legacy-vpn-strike::after {
    width: 100%;
}

.vs-badge {
    font-size: 13px;
    font-weight: 900;
    font-family: var(--font-mono);
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2px 7px;
    border-radius: 6px;
    margin: 0 8px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.hover-heading-vs:hover .vs-badge {
    transform: scale(1.15) rotate(8deg);
    background: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}

.aziz-shield-highlight {
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.stamp-pill {
    font-size: 10px;
    font-weight: 850;
    font-family: var(--font-mono);
    color: #050811;
    background: #10B981;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transform: rotate(-4deg) scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.hover-heading-vs:hover .stamp-pill {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.8);
}

.hover-heading-vs:hover .aziz-shield-highlight {
    color: var(--primary);
    text-shadow: 0 0 16px rgba(0, 245, 212, 0.5);
}

/* 4. "3 Kolay Adımda Bağlanın" (3D Flip Digit & Lightning Pulse) */
.hover-heading-steps {
    cursor: default;
}

.flip-digit-badge {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 42px;
    text-align: center;
    border-radius: 12px;
    background: rgba(0, 245, 212, 0.12);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-mono);
    box-shadow: 0 0 16px rgba(0, 245, 212, 0.25);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    perspective: 600px;
}

.hover-heading-steps:hover .flip-digit-badge {
    transform: rotateY(360deg) scale(1.12);
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.6);
}

.connect-lightning-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.lightning-svg-inline {
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, filter 0.3s ease;
}

.hover-heading-steps:hover .connect-lightning-text {
    color: var(--primary);
}

.hover-heading-steps:hover .lightning-svg-inline {
    transform: scale(1.3) rotate(12deg);
    color: #F59E0B;
    filter: drop-shadow(0 0 10px #F59E0B);
}

/* 5. "Sıkça Sorulan Sorular" (Holographic Oracle Orb) */
.hover-heading-faq {
    cursor: default;
}

.faq-letters-wave {
    display: inline-block;
    transition: color 0.3s ease;
}

.faq-oracle-orb {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25), rgba(59, 130, 246, 0.1));
    border: 1.5px solid #6366F1;
    color: #A5B4FC;
    font-family: var(--font-mono);
    font-size: 20px;
    margin-left: 6px;
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.hover-heading-faq:hover .faq-oracle-orb {
    transform: rotate(360deg) scale(1.18);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 24px rgba(0, 245, 212, 0.6);
}

.hover-heading-faq:hover .faq-letters-wave {
    color: #FFF;
    text-shadow: 0 0 16px rgba(99, 102, 241, 0.5);
}

/* 6. Download Banner Unlocking Padlock Animation */
.banner-heading-unlock {
    font-size: 38px;
    font-weight: 850;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: default;
}

.unlock-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.padlock-svg .shackle {
    transform-origin: 7px 11px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.download-banner:hover .padlock-svg .shackle {
    transform: translateY(-4px) rotate(-22deg);
}

.download-banner:hover .unlock-text {
    color: var(--primary);
    text-shadow: 0 0 24px var(--primary-glow);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(4deg);
}

.icon-glow-cyan { background: rgba(0, 245, 212, 0.12); color: #00F5D4; }
.icon-glow-blue { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
.icon-glow-emerald { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.icon-glow-purple { background: rgba(168, 85, 247, 0.12); color: #A855F7; }

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 750;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.feature-footer {
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.pill-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 245, 212, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ================= 12. COMPARISON TABLE ================= */
.table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-specular);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.comparison-table th, 
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    color: var(--text-secondary);
}

.comparison-table th.highlight-col {
    color: var(--primary);
    background: rgba(0, 245, 212, 0.08);
    border-left: 1px solid rgba(0, 245, 212, 0.2);
    border-right: 1px solid rgba(0, 245, 212, 0.2);
}

.th-badge {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: #050811;
    background: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 4px;
}

.comparison-table td.highlight-col {
    background: rgba(0, 245, 212, 0.03);
    font-weight: 600;
    color: #FFF;
    border-left: 1px solid rgba(0, 245, 212, 0.15);
    border-right: 1px solid rgba(0, 245, 212, 0.15);
}

.table-row-hover {
    transition: background 0.2s ease;
}

.table-row-hover:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-icon {
    color: var(--accent-emerald);
    font-weight: 800;
    margin-right: 6px;
    display: inline-block;
}

.cross-icon {
    color: #EF4444;
    font-weight: 800;
    margin-right: 6px;
    display: inline-block;
}

.bounce-subtle {
    animation: iconBounceSubtle 2s infinite ease-in-out;
}

@keyframes iconBounceSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ================= 13. 3 STEPS ================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 36px 30px;
    position: relative;
}

.step-number-pill {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--primary);
    background: rgba(0, 245, 212, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
}

.step-icon-wrap {
    font-size: 32px;
    margin-bottom: 16px;
    transition: var(--transition-bounce);
}

.step-card:hover .step-icon-wrap {
    transform: scale(1.2) translateY(-4px);
}

.step-card h3 {
    font-size: 19px;
    font-weight: 750;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ================= 14. FAQ ACCORDION ================= */
.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 650;
    font-size: 15px;
    user-select: none;
}

.chevron-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.faq-chevron {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 26px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.faq-item.active {
    border-color: var(--border-specular);
}

.faq-item.active .chevron-wrap {
    background: rgba(0, 245, 212, 0.15);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding-bottom: 22px;
}

/* ================= 15. DOWNLOAD BANNER ================= */
.download-banner {
    position: relative;
    padding: 68px 40px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.banner-mesh-glow {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.banner-content h2 {
    font-size: 38px;
    font-weight: 850;
    margin-bottom: 12px;
}

.banner-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.banner-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.file-info {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================= 16. FOOTER ================= */
.footer-wrapper {
    background: #030509;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 320px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 14px;
}

.footer-link-hover {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.footer-link-hover:hover {
    color: var(--primary);
    transform: translateX(3px);
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
}

.ping-beacon {
    animation: beaconFlash 1.8s infinite;
}

/* ================= 17. SCROLL FADE-IN SYSTEM ================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }

    .hero-title {
        font-size: 42px;
    }

    .features-grid, .steps-grid, .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .features-grid, .steps-grid, .stats-strip-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
