/* Root Variables */
:root {
    --bg-dark: #090D16;
    --bg-card: #111625;
    --border-color: #20293d;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --color-green: #00C853;
    --color-purple: #AB47BC;
    --color-blue: #2563eb;
    --color-orange: #f97316;
    --color-teal: #0d9488;
    --color-red: #ef4444;
    --color-yellow: #eab308;
    --font-outfit: 'Outfit', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-jakarta);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Typography & Utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.text-purple { color: var(--color-purple); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-sm {
    font-size: 13px;
    padding: 6px 14px;
}

.btn-lg {
    font-size: 16px;
    padding: 14px 28px;
}

.btn-primary {
    background: linear-gradient(135deg, #120e2e 0%, var(--color-purple) 100%);
    color: white;
    border: 1px solid rgba(171, 71, 188, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(171, 71, 188, 0.3);
}

.btn-primary.btn-glow {
    animation: pulseGlow 3s infinite alternate;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-purple {
    background: var(--color-purple);
    color: white;
}

.btn-purple:hover {
    background: #9c27b0;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(171, 71, 188, 0.2); }
    100% { box-shadow: 0 0 25px rgba(171, 71, 188, 0.5); }
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-outfit);
}

.logo-icon {
    color: var(--color-purple);
    width: 24px;
    height: 24px;
}

.logo span span {
    color: var(--color-green);
}

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

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: white;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    padding: 24px;
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-drawer.active {
    right: 0;
}

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

.drawer-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.drawer-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 10px 0;
}

.drawer-btn {
    width: 100%;
}

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

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(171, 71, 188, 0.15) 0%, rgba(0, 200, 83, 0.05) 50%, rgba(9, 13, 22, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(171, 71, 188, 0.08);
    border: 1px solid rgba(171, 71, 188, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.stat-item p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.floating-card {
    position: absolute;
    background: rgba(17, 22, 37, 0.7);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.card-top-left {
    top: 60px;
    left: -40px;
    animation: float1 4s ease-in-out infinite alternate;
}

.card-bottom-right {
    bottom: 60px;
    right: -40px;
    animation: float2 4s ease-in-out infinite alternate;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green {
    background: rgba(0, 200, 83, 0.1);
    color: var(--color-green);
}

.icon-purple {
    background: rgba(171, 71, 188, 0.1);
    color: var(--color-purple);
}

.floating-card h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 11px;
    color: var(--text-secondary);
}

@keyframes float1 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

@keyframes float2 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(12px); }
}

.phone-mockup {
    background: #000;
    border: 12px solid #27272a;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 9 / 18;
    width: 280px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-dark);
}

.mock-status-bar {
    height: 24px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-secondary);
    z-index: 10;
    background: rgba(0,0,0,0.3);
}

.mock-icons {
    display: flex;
    gap: 4px;
}

.sm-icon {
    width: 10px;
    height: 10px;
}

.mock-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mock-video-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mock-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stream-badge {
    background: var(--color-red);
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.stream-time {
    font-family: monospace;
    font-size: 10px;
    color: white;
}

.camera-info {
    color: white;
}

.cam-name {
    font-size: 11px;
    font-weight: 700;
}

.cam-status {
    font-size: 9px;
    color: #cbd5e1;
}

.mock-telemetry-panel {
    background: #0f172a;
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
}

.tel-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sections Global */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.icon-blue { background: rgba(37, 99, 235, 0.1); color: var(--color-blue); }
.icon-orange { background: rgba(249, 115, 22, 0.1); color: var(--color-orange); }
.icon-teal { background: rgba(13, 148, 136, 0.1); color: var(--color-teal); }
.icon-red { background: rgba(239, 68, 68, 0.1); color: var(--color-red); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

/* Demo Section styling */
.demo-section {
    background: radial-gradient(circle at 10% 20%, rgba(171, 71, 188, 0.03) 0%, rgba(0, 200, 83, 0.02) 60%, rgba(9, 13, 22, 0) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.demo-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-outfit);
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.demo-tab-btn:hover {
    color: white;
    border-color: rgba(255,255,255,0.1);
}

.demo-tab-btn.active {
    color: white;
}

#btnShowCamera.active {
    background: rgba(0, 200, 83, 0.08);
    border-color: var(--color-green);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.2);
}

#btnShowViewer.active {
    background: rgba(171, 71, 188, 0.08);
    border-color: var(--color-purple);
    box-shadow: 0 0 15px rgba(171, 71, 188, 0.2);
}

.demo-display-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.demo-mode-content {
    display: none;
}

.demo-mode-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-info-side h3 {
    font-size: 32px;
    margin: 16px 0 20px;
}

.demo-info-side p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.mode-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
}

.badge-green { background: rgba(0, 200, 83, 0.1); color: var(--color-green); }
.badge-purple { background: rgba(171, 71, 188, 0.1); color: var(--color-purple); }

.demo-list {
    list-style: none;
    margin-bottom: 32px;
}

.demo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.demo-list li i {
    width: 18px;
    height: 18px;
}

.interactive-control-panel {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
}

.interactive-control-panel h4 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sim-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sim-status-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    gap: 8px;
}

.status-indicator {
    font-weight: 700;
    color: var(--text-secondary);
}

.sim-select {
    background: #0f172a;
    color: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font-jakarta);
}

/* UI Mockup Display */
.ui-mockup {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 9 / 18.5;
    background: #0a0e17;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockups-overlap-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 540px;
    margin: 0 auto;
}

.mockup-main {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: var(--transition);
}

.mockup-overlap {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 2;
    transition: var(--transition);
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.6);
}

.mockups-overlap-container:hover .mockup-main {
    transform: translate(-15px, -15px) rotate(-1deg);
}

.mockups-overlap-container:hover .mockup-overlap {
    transform: translate(15px, 15px) rotate(1deg);
}

.frame-green { border: 4px solid var(--color-green); }
.frame-purple { border: 4px solid var(--color-purple); }

.mockup-header {
    height: 48px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d121f;
}

.mockup-logo {
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-outfit);
}

.mockup-tier {
    background: rgba(255,255,255,0.08);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.live-clock {
    font-family: monospace;
    font-size: 11px;
    color: white;
}

.mockup-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
}

.mockup-body.padding-zero {
    padding: 0;
    gap: 0;
}

/* Camera specific mockup details */
.pairing-box-mock {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}

.pairing-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pairing-code {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 26px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.countdown-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.countdown-fill {
    height: 100%;
    background: var(--color-green);
    width: 100%;
    transition: width 1s linear;
}

.countdown-text {
    font-size: 9px;
    color: var(--text-secondary);
}

.mockup-preview-screen {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-lens-focus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px dashed rgba(0, 200, 83, 0.6);
    border-radius: 50%;
    animation: pulseFocus 2s infinite;
}

@keyframes pulseFocus {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
}

.torch-overlay-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.torch-overlay-effect.active {
    opacity: 1;
}

.preview-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
}

.live-pill {
    background: var(--color-green);
    color: black;
    font-weight: 800;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pulse-dot {
    width: 4px;
    height: 4px;
    background: black;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.mockup-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.detail-row span {
    color: var(--text-secondary);
}

/* Viewer specific mockup details */
.viewer-video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: black;
}

.viewer-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viewer-torch-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.viewer-torch-glow.active {
    opacity: 1;
}

.video-overlay-ctrl {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-badge {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
}

.overlay-quality {
    background: var(--color-purple);
    color: white;
    font-weight: 800;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 3px;
}

.circular-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-color);
    background: #0d121f;
}

.circle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.circle-btn i {
    width: 14px;
    height: 14px;
}

.circle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.circle-btn.active {
    background: var(--color-purple);
    border-color: var(--color-purple);
    box-shadow: 0 0 10px rgba(171, 71, 188, 0.5);
}

.telemetry-cards {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    background: #0a0e17;
}

.telemetry-card-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.telemetry-card-item i {
    width: 16px;
    height: 16px;
}

.tel-info {
    display: flex;
    flex-direction: column;
}

.tel-label {
    font-size: 8px;
    color: var(--text-secondary);
}

.tel-value {
    font-size: 10px;
    font-weight: 700;
    color: white;
}

/* How It Works Workflow */
.workflow-section {
    border-bottom: 1px solid var(--border-color);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    position: relative;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.step-num {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 48px;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

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

/* Pricing Cards */
.pricing-section {
    background: radial-gradient(circle at 90% 80%, rgba(171, 71, 188, 0.02) 0%, rgba(9, 13, 22, 0) 60%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--color-purple);
    box-shadow: 0 20px 40px rgba(171, 71, 188, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-purple);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    letter-spacing: 0.5px;
}

.price-header {
    margin-bottom: 32px;
    text-align: center;
}

.price-header h3 {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price-val {
    font-family: var(--font-outfit);
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.price-period {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.price-features li.disabled {
    color: rgba(255,255,255,0.25);
}

.price-features li i {
    width: 18px;
    height: 18px;
}

/* Download Section */
.download-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0c1d 100%);
    border-top: 1px solid var(--border-color);
}

.download-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.download-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.download-note {
    font-size: 12px !important;
    color: rgba(255,255,255,0.3) !important;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--border-color);
    background: #060910;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 320px;
}

.footer h4 {
    font-size: 14px;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .demo-info-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .demo-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .demo-display-box {
        padding: 24px;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 450px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Pricing Extension Banner */
.pricing-ext-banner {
    background: linear-gradient(135deg, rgba(21, 27, 44, 0.6) 0%, rgba(17, 22, 37, 0.8) 100%);
    border: 1px dashed var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-ext-content {
    flex: 1;
}
.pricing-ext-content h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-ext-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
.pricing-ext-badge {
    background: rgba(171, 71, 188, 0.1);
    border: 1px solid var(--color-purple);
    color: var(--color-purple);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}
.pricing-ext-rates {
    display: flex;
    gap: 20px;
}
.pricing-ext-rate-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    min-width: 160px;
}
.pricing-ext-rate-box .ext-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.pricing-ext-rate-box .ext-val {
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-family: var(--font-outfit);
}
.pricing-ext-rate-box .ext-period {
    font-size: 11px;
    color: var(--color-purple);
    margin-top: 2px;
}

@media (max-width: 992px) {
    .pricing-ext-banner {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
    }
    .pricing-ext-rates {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
