/* ========================================
   White Wine VPN — Landing Page Styles
   Premium Dark Glassmorphism Design
   ======================================== */

/* === CSS Variables === */
:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-tertiary: rgba(255, 255, 255, 0.3);
    --accent: #a78bfa;
    --accent-dim: rgba(167, 139, 250, 0.15);
    --accent-glow: rgba(167, 139, 250, 0.3);
    --gradient-start: #a78bfa;
    --gradient-end: #6C5CE7;
    --gradient-blue: #60a5fa;
    --success: #34d399;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Animated Background === */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatGlow 20s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent 70%);
    bottom: 20%;
    left: -150px;
    animation: floatGlow 25s ease-in-out infinite reverse;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08), transparent 70%);
    top: 50%;
    right: 10%;
    animation: floatGlow 18s ease-in-out infinite 5s;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    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: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 18, 0.7);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border);
    background: rgba(10, 10, 18, 0.9);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text .accent {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--accent);
    padding: 8px 20px;
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
    background: var(--accent-dim);
    transition: var(--transition);
}

.nav-link-cta:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.nav-link-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    position: relative;
    z-index: 1;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-ghost {
    color: var(--text-secondary);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

.btn-big {
    font-size: 17px;
    font-weight: 700;
}

/* === Platform Download Grid (Hero) === */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 480px;
}

.btn-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-platform .btn-text {
    flex: 1;
}

.btn-platform .btn-small {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-tertiary);
}

.btn-platform .btn-big {
    font-size: 14px;
    font-weight: 700;
}

.btn-platform:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

/* Android - Active/Available */
.btn-android {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(108, 92, 231, 0.06));
    border-color: rgba(167, 139, 250, 0.25);
}

.btn-android:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Windows */
.btn-windows svg {
    color: #00a4ef;
}

/* iOS */
.btn-ios svg {
    color: var(--text-primary);
}

/* macOS */
.btn-macos svg {
    color: var(--text-secondary);
}

/* Linux */
.btn-linux svg {
    color: #f5a900;
}

/* Chrome Extension */
.btn-chrome svg {
    color: #4285F4;
}

/* Coming Soon Badge */
.coming-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.4;
}

/* === CTA Platform Grid === */
.cta-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 24px;
}

.cta-platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    cursor: default;
}

.cta-platform-btn.cta-available {
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.1), rgba(108, 92, 231, 0.05));
    border: 1px solid rgba(167, 139, 250, 0.25);
    cursor: pointer;
}

.cta-platform-btn.cta-available:hover {
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.18), rgba(108, 92, 231, 0.1));
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.cta-platform-btn.cta-coming {
    background: var(--bg-card);
    border: 1px solid var(--border);
    opacity: 0.7;
}

.cta-platform-btn.cta-coming:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.cta-platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 8px;
}

.cta-available .cta-platform-icon {
    background: var(--accent-dim);
    color: var(--accent);
}

.cta-available .cta-platform-icon svg {
    color: var(--accent);
    fill: var(--accent);
}

.cta-coming .cta-platform-icon {
    color: var(--text-tertiary);
}

.cta-coming .cta-platform-icon svg {
    fill: var(--text-tertiary);
}

.cta-platform-name {
    font-size: 15px;
    font-weight: 700;
}

.cta-platform-status {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

.cta-platform-status.available {
    color: var(--success);
    background: rgba(52, 211, 153, 0.12);
}

.cta-platform-status.coming {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* === Phone Mockup === */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.phones-stack {
    position: relative;
    width: 380px;
    height: 580px;
}

.phone-mockup {
    position: relative;
}

/* Back phone (Red Wine) */
.phone-back {
    position: absolute;
    top: -20px;
    left: 70px;
    z-index: 1;
    transform: rotate(6deg) scale(0.92);
    opacity: 0.85;
    filter: brightness(0.85);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.phones-stack:hover .phone-back {
    transform: rotate(8deg) scale(0.92) translateX(15px);
    opacity: 0.9;
}

/* Front phone (White Wine) */
.phone-front {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
    transform: rotate(-2deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.phones-stack:hover .phone-front {
    transform: rotate(-4deg) translateX(-10px);
}

/* Red Wine VPN phone frame variant */
.phone-frame-red {
    border-color: rgba(239, 68, 68, 0.15) !important;
    box-shadow:
        0 0 0 1px rgba(239, 68, 68, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(239, 68, 68, 0.1) !important;
}

.phone-screen-red {
    background: linear-gradient(180deg, #1a0a0a 0%, #0f0808 100%) !important;
}

.app-header-red span {
    color: #fca5a5;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: #0a0a12;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 12px;
}

.phone-screen {
    background: linear-gradient(180deg, #1a1a1a, #121212);
    border-radius: 28px;
    height: calc(100% - 36px);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Real App Header */
.app-header-real {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0 8px;
}

.header-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    width: 28px;
    text-align: center;
    cursor: pointer;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-appname {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    margin-top: 8px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4AF37;
}

.pill-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #D4AF37;
}

/* Neumorphic Connect Button */
.connect-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 140px;
}

.connect-btn-neu {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        -6px -6px 12px rgba(255, 255, 255, 0.04),
        6px 6px 12px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

.connect-btn-neu.connected-gold {
    box-shadow:
        -6px -6px 12px rgba(255, 255, 255, 0.04),
        6px 6px 12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.connect-btn-neu.connected-red {
    box-shadow:
        -6px -6px 12px rgba(255, 255, 255, 0.04),
        6px 6px 12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(239, 68, 68, 0.2);
}

/* Connection Timer */
.connection-timer {
    font-family: 'JetBrains Mono', 'Inconsolata', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin: 4px 0;
}

/* Stats Card */
.stats-card-real {
    width: 100%;
    background: #2c2c2c;
    border-radius: 16px;
    padding: 14px;
    margin-top: 4px;
}

.speed-row-real {
    display: flex;
    align-items: center;
}

.speed-col {
    flex: 1;
    text-align: center;
}

.speed-value-real {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.speed-label-real {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.speed-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}

.stats-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 10px 0;
}

.stats-mini-row {
    display: flex;
    justify-content: space-around;
}

.mini-stat {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* App Footer */
.app-footer-real {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: auto;
    padding-top: 6px;
}

/* === App Drawer UI === */
.app-drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: #1a1a1a;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.5);
    border-radius: 28px 0 0 28px;
}

.app-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 30px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.drawer-icon-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 8px;
    font-size: 16px;
}

.drawer-user-tier {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tier-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #fff;
    width: fit-content;
}

.tier-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.drawer-menu {
    padding: 12px 0;
    flex: 1;
    overflow-y: auto;
}

/* Custom Scrollbar for App UI to make it look real */
.drawer-menu::-webkit-scrollbar,
.settings-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-menu::-webkit-scrollbar-track,
.settings-body::-webkit-scrollbar-track {
    background: transparent;
}

.drawer-menu::-webkit-scrollbar-thumb,
.settings-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.drawer-menu::-webkit-scrollbar-thumb:hover,
.settings-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.drawer-item {
    padding: 12px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.drawer-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.drawer-item.active {
    color: #D4AF37;
    font-weight: 600;
}

.d-icon {
    font-size: 14px;
    opacity: 0.8;
}

.drawer-premium-card {
    margin: 16px;
    padding: 12px;
    background: #2c2c2c;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.p-icon {
    color: #f59e0b;
}

.p-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
}

/* === App Settings UI === */
.app-settings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
}

.app-settings.open {
    transform: translateX(0);
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.s-back-btn {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0 8px;
}

.s-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.settings-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.s-sub-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), #D4AF37);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.s-sub-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.s-sub-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    color: #fff;
}

.s-sub-plan {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.s-sub-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

.s-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin: 16px 0 8px 4px;
}

.s-item {
    background: #1e1e1e;
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.s-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.s-item-text {
    flex: 1;
}

.s-title-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.s-sub-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.s-toggle {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

.s-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.s-toggle.active {
    background: #D4AF37;
}

.s-toggle.active::after {
    transform: translateX(16px);
}

/* App Overlay */
.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.app-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Keep old classes for backward compat */
.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.app-logo-small {
    font-size: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: auto;
}

.status-dot.connected {
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: pulse-dot 2s infinite;
}

.vpn-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 0;
}

.shield-anim {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
}

.ring-1 {
    width: 80px;
    height: 80px;
    opacity: 0.15;
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 64px;
    height: 64px;
    opacity: 0.25;
    animation: ring-pulse 3s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 48px;
    height: 48px;
    opacity: 0.4;
    animation: ring-pulse 3s ease-in-out infinite 1s;
}

@keyframes ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.shield-icon {
    font-size: 28px;
    z-index: 1;
}

.status-text {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.connected-text {
    color: var(--success);
}

.status-sub {
    font-size: 11px;
    color: var(--text-tertiary);
}

.speed-display {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.speed-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.speed-arrow {
    font-size: 14px;
    font-weight: 700;
}

.speed-arrow.down {
    color: var(--success);
}

.speed-arrow.up {
    color: var(--gradient-blue);
}

.server-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-top: auto;
}

.server-flag {
    font-size: 24px;
}

.server-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.server-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.server-ping {
    font-size: 11px;
    color: var(--success);
    font-family: 'JetBrains Mono', monospace;
}

.server-signal {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.signal-bar {
    width: 3px;
    background: var(--success);
    border-radius: 2px;
}

.signal-bar:nth-child(1) {
    height: 4px;
}

.signal-bar:nth-child(2) {
    height: 7px;
}

.signal-bar:nth-child(3) {
    height: 10px;
}

.signal-bar:nth-child(4) {
    height: 14px;
}

.phone-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    filter: blur(30px);
}

/* === Section Common === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* === Global Network Section === */
.global-network {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
}

.globe-container {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    margin-top: 20px;
    position: relative;
}

.globe-container:active {
    cursor: grabbing;
}

/* Fix for Globe.gl tooltip pointer events */
.scene-tooltip {
    pointer-events: none;
    z-index: 100 !important;
}

/* === Data Tunnel Section === */
.data-tunnel-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

/* Perspective Grid */
.tunnel-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(167, 139, 250, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 400px;
    transform-style: preserve-3d;
    animation: gridScroll 8s linear infinite;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

@keyframes gridScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 60px;
    }
}

/* Binary Rain */
.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 20%, black 50%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 20%, black 50%, transparent 85%);
}

.binary-col {
    position: absolute;
    top: -100%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    color: rgba(167, 139, 250, 0.25);
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.15);
    animation: binaryFall linear infinite;
    user-select: none;
    pointer-events: none;
}

@keyframes binaryFall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(250%);
        opacity: 0;
    }
}

/* Center Glow */
.tunnel-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.12) 0%, rgba(108, 92, 231, 0.05) 40%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.tunnel-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.tunnel-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tunnel-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}

.tunnel-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* === Features Section === */
.features {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-lg {
    grid-column: span 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--accent-dim);
    color: var(--accent);
    border-radius: 6px;
    letter-spacing: 0.03em;
}

/* === Security Section === */
.security {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.security-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    text-align: center;
}

.security-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.security-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.security-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Languages Section === */
.languages {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.lang-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    min-width: 140px;
}

.lang-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-dim);
    transform: translateY(-4px);
}

.lang-flag {
    font-size: 40px;
}

.lang-name {
    font-size: 15px;
    font-weight: 600;
}

.lang-code {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 2px 10px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
}

/* === Download CTA === */
.download-cta {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.cta-card {
    position: relative;
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.08), rgba(108, 92, 231, 0.04));
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-badge {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === Footer === */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 14px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    background: var(--accent-dim);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 6px;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Scroll Animations (class added by JS) === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .platform-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-lg {
        grid-column: span 1;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .cta-platform-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 340px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .lang-grid {
        gap: 12px;
    }

    .lang-card {
        padding: 20px 24px;
        min-width: 100px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .lang-grid {
        flex-direction: column;
        align-items: center;
    }

    .lang-card {
        width: 100%;
        max-width: 200px;
    }

    .cta-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-platform-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cta-platform-btn {
        padding: 20px 12px;
    }
}

/* ==========================================
   NEW PROFESSIONAL SECTIONS
   ========================================== */

/* === Page Loader === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-shield {
    animation: loader-pulse 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes loader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.loader-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    animation: loader-fill 1.5s ease-in-out forwards;
}

@keyframes loader-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* === How It Works Section === */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    flex: 1;
    max-width: 300px;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.3;
}

.connector-dot {
    position: absolute;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-primary);
}

/* === Testimonials Section === */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, 0.3);
}

.testimonial-card.featured {
    border-color: var(--accent-primary);
    background: rgba(108, 92, 231, 0.05);
    transform: scale(1.03);
}

.testimonial-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.author-source {
    color: var(--text-secondary);
    font-size: 12px;
    opacity: 0.7;
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 750px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(167, 139, 250, 0.3);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-toggle {
    font-size: 22px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}

/* === Footer Social Links === */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

/* === Pricing Section === */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: rgba(108, 92, 231, 0.06);
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.12);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 60px rgba(108, 92, 231, 0.2);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pricing-badge.premium {
    color: var(--accent-primary);
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li.included {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li.excluded {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.free-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
}

.free-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(108, 92, 231, 0.1);
}

.premium-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4);
}

/* === Responsive: New Sections === */
@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        flex-direction: column;
    }

    .connector-line {
        width: 2px;
        height: 100%;
    }

    .connector-dot {
        right: auto;
        bottom: 0;
    }

    .step-card {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-6px);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}