@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
    --bg-dark: #030611;
    --bg-card: rgba(13, 19, 39, 0.45);
    --bg-card-hover: rgba(22, 32, 66, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 242, 254, 0.4);
    
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.4);
    --accent: #00f2fe;
    --accent-glow: rgba(0, 242, 254, 0.35);
    --secondary: #9d4edd;
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-inverse: #020617;
    
    --font-primary: 'Outfit', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Custom Cursor */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    a, button, select, input, .interactive {
        cursor: none !important;
    }
    #custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        background-color: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
        transition: width 0.2s, height 0.2s;
    }
    #custom-cursor.hover {
        width: 25px;
        height: 25px;
        background-color: transparent;
        border: 2px solid var(--accent);
        box-shadow: 0 0 15px var(--accent-glow);
    }
    #cursor-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 99998;
    }
}

/* Background Plane Elements & Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.08) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    z-index: -2;
    pointer-events: none;
}

.clouds-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.45;
}

/* Floating SVG Planes in BG */
.bg-plane {
    position: absolute;
    fill: none;
    stroke: rgba(0, 242, 254, 0.15);
    stroke-width: 1.5;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.2));
}

.plane-path-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: -150px;
    animation: flightPath1 25s linear infinite;
}

.plane-path-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: -100px;
    animation: flightPath2 35s linear infinite;
    animation-delay: 5s;
    transform: scaleX(-1); /* fly right to left */
}

@keyframes flightPath1 {
    0% {
        transform: translate(0, 0) rotate(15deg);
        left: -150px;
    }
    50% {
        transform: translate(50vw, -30px) rotate(5deg);
    }
    100% {
        transform: translate(110vw, -100px) rotate(-10deg);
        left: 100%;
    }
}

@keyframes flightPath2 {
    0% {
        transform: scaleX(-1) translate(0, 0) rotate(-15deg);
        right: -100px;
    }
    50% {
        transform: scaleX(-1) translate(-50vw, 50px) rotate(-5deg);
    }
    100% {
        transform: scaleX(-1) translate(-110vw, 150px) rotate(10deg);
        right: 100%;
    }
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(3, 6, 17, 0.7);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(3, 6, 17, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(15deg) translate(2px, -2px);
}

.logo span {
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--accent-glow);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.badge svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

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

/* Floating 3D Plane Mockup in Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plane-container {
    width: 320px;
    height: 320px;
    position: relative;
    animation: hoverPlane 6s ease-in-out infinite;
}

.plane-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 242, 254, 0.25));
}

.plane-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(10px);
}

@keyframes hoverPlane {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 242, 254, 0.2);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Pricing Search Widget & List */
.pricing-section {
    padding: 100px 0;
    background: rgba(5, 8, 22, 0.5);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    max-width: 900px;
    margin: 0 auto;
}

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

.pricing-widget-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.widget-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media(max-width: 768px) {
    .widget-controls {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
}

.control-group label span {
    color: var(--accent);
}

.slider-wrapper {
    position: relative;
    padding: 0.5rem 0;
}

/* Futuristic Slider Styles */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.cycle-selector {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 50px;
}

.cycle-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem;
    border-radius: 50px;
    transition: var(--transition);
}

.cycle-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Dynamic Pricing Results Card (Changed Format - Horizontal Premium Board) */
.pricing-result-display {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(0, 242, 254, 0.25);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.pricing-result-display:hover {
    border-color: var(--accent);
    background: rgba(0, 242, 254, 0.02);
}

.plan-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-info h4::before {
    content: '✈';
    color: var(--accent);
}

.plan-features {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.plan-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

/* Beautiful custom format for price */
.price-tag-custom {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-tag-custom span.currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-tag-custom span.period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    text-shadow: none;
}

.pricing-result-display .btn {
    padding: 0.85rem 2rem;
}

@media(max-width: 768px) {
    .pricing-result-display {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.5rem;
    }
    .plan-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .plan-price-box {
        align-items: center;
        text-align: center;
    }
}

/* Article Sections */
.articles-section {
    padding: 100px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.05);
}

.article-img {
    height: 180px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Abstract aviation wireframes as artwork for articles */
.article-img svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: rgba(0, 242, 254, 0.3);
    stroke-width: 1.5;
    transition: var(--transition);
}

.article-card:hover .article-img svg {
    transform: scale(1.1) rotate(5deg);
    stroke: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.article-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-body h3 a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.article-body h3 a:hover {
    color: var(--accent);
}

.article-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--text-main);
    gap: 8px;
}

/* Article Template Styles (for single article pages) */
.article-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta a {
    color: var(--accent);
    text-decoration: none;
}

.article-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
}

@media(max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.article-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

@media(max-width: 768px) {
    .article-content {
        padding: 2rem 1.5rem;
    }
}

.article-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    border-left: 4px solid var(--accent);
    padding-left: 0.75rem;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--accent);
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content a:hover {
    color: #fff;
}

/* Sidebar widget in article pages */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
}

.sidebar-widget h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--accent);
}

/* Testimonials / User Reviews */
.testimonials {
    padding: 100px 0;
    background: rgba(5, 8, 22, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.05);
}

.rating {
    color: #f59e0b;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.user-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    fill: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer & PBN Links Section */
footer {
    background-color: #02040b;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.footer-links-row {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links-row a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-row a:hover {
    color: var(--accent);
}

/* PBN Friendly Links - low key, styled to merge beautifully */
.friend-links-area {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.friend-links-area span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pbn-link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}

.pbn-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    opacity: 0.8;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 1.5rem;
}

/* Mobile Responsiveness Updates */
@media(max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(3, 6, 17, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-btn {
        display: flex;
    }
    
    /* Hamburger Menu Animation */
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .plane-container {
        width: 200px;
        height: 200px;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 1rem;
    }
}
