/* ============================================
   ValueHound Landing Page - Based on Reference Design
   Clean, Modern, Professional
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --accent-green: #00d4aa;
    --accent-green-dim: rgba(0, 212, 170, 0.1);
    --accent-blue: #4f8cff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(135deg, #00d4aa 0%, #4f8cff 100%);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --accent-green: #10b981;
    --accent-green-dim: rgba(16, 185, 129, 0.1);
    --accent-blue: #667eea;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 0, 0, 0.1);
    --gradient-main: linear-gradient(135deg, #10b981 0%, #667eea 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.landing-page {
    position: relative;
    min-height: 100vh;
}

/* Animated background grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .bg-grid {
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
}

.bg-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(79, 140, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .bg-glow {
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(102, 126, 234, 0.04) 0%, transparent 40%);
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-content {
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.nav-content > .logo {
    flex-shrink: 0;
    z-index: 101;
}

.nav-content > .mobile-menu-toggle {
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 1rem;
    z-index: 101;
}

.nav-content > .nav-actions {
    flex-shrink: 0;
    margin-left: auto;
    z-index: 101;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
}

/* Logo text only shown in footer */
.footer-brand .logo-text {
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

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

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

/* Beta Badge */
.beta-badge-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.25rem 0.75rem;
    background: var(--accent-green-dim);
    border: 1.5px solid var(--accent-green);
    border-radius: 20px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.beta-badge i {
    font-size: 0.7rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.beta-badge-link:hover .beta-badge {
    background: var(--accent-green);
    color: var(--bg-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

[data-theme="light"] .beta-badge-link:hover .beta-badge {
    color: white;
}

/* Pen/Circle highlight effect */
.beta-badge::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px dashed var(--accent-green);
    border-radius: 22px;
    opacity: 0.5;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-btn-secondary {
    color: var(--text-primary);
    border-color: var(--border-color);
    background: transparent;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-green);
    text-decoration: none;
}

[data-theme="light"] .nav-btn-secondary:hover {
    background: var(--bg-secondary);
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-green);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: var(--bg-secondary);
}

.nav-cta {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .nav-cta {
    color: white;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-green-dim);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 2rem auto 2rem auto;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.hero-badge:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
    text-decoration: none;
}


.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    opacity: 0.977775;
    transform: scale(0.994444);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.977775;
        transform: scale(0.994444);
    }
    25% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

[data-theme="light"] .hero-badge {
    background: var(--accent-green-dim);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

[data-theme="light"] .btn-primary {
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--bg-secondary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .dashboard-preview {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.stock-ticker {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-symbol {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.ticker-name {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-badge {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

[data-theme="light"] .rating-badge {
    background: var(--accent-green-dim);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .metric-card {
    background: var(--bg-secondary);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.metric-value.positive {
    color: var(--accent-green);
}

.confidence-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

[data-theme="light"] .confidence-bar {
    background: rgba(0, 0, 0, 0.1);
}

.confidence-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px;
    width: 78%;
}

.confidence-label {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.confidence-label span:first-child {
    color: var(--text-muted);
}

.confidence-label span:last-child {
    color: var(--accent-green);
    font-weight: 600;
}

/* Section Styling */
.section {
    padding: 6rem 4rem;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    background: var(--accent-green-dim);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Problem Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .problem-card:hover {
    border-color: var(--accent-green);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

[data-theme="light"] .problem-icon {
    background: rgba(239, 68, 68, 0.1);
}

.problem-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.roadmap-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.exchange-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    align-items: stretch;
}

.exchange-coverage-grid .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exchange-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.exchange-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.coming-soon-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: left;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.feature-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--accent-green);
    opacity: 0.6;
}

[data-theme="light"] .feature-number {
    color: var(--accent-green);
    opacity: 0.55;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

/* Differentiators Section */
.differentiators-container {
    max-width: 1000px;
    margin: 0 auto;
}

.differentiator-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.differentiator-item:last-child {
    margin-bottom: 0;
}

.differentiator-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    color: var(--accent-green);
    opacity: 0.6;
}

[data-theme="light"] .differentiator-number {
    color: var(--accent-green);
    opacity: 0.55;
}

.differentiator-content {
    flex: 1;
}

.differentiator-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.differentiator-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.differentiator-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.segment-list {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .segment-list {
    background: var(--bg-secondary);
}

.segment-list strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.segment-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.segment-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.segment-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.confidence-components {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confidence-component {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

[data-theme="light"] .confidence-component {
    background: var(--bg-secondary);
}

.confidence-component strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0 2rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.process-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-item.active {
    border-color: var(--accent-green);
    background: rgba(0, 212, 170, 0.05);
}

[data-theme="light"] .faq-item.active {
    background: var(--accent-green-dim);
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 1.5rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="light"] .cta-box::before {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.waitlist-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

[data-theme="light"] .waitlist-form input {
    background: var(--bg-secondary);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-form input:focus {
    border-color: var(--accent-green);
}

.waitlist-form button {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

[data-theme="light"] .waitlist-form button {
    color: white;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.4);
    text-decoration: none;
}

.waitlist-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

#waitlistMessage {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
    position: relative;
    z-index: 1;
}

#waitlistMessage.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
}

#waitlistMessage.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Footer */
.landing-footer {
    padding: 4rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: left;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column li {
    margin-bottom: 0.75rem;
    width: 100%;
    text-align: left;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

[data-theme="light"] .disclaimer {
    background: var(--bg-secondary);
}

.disclaimer strong {
    color: var(--text-primary);
}

/* ============================================
   Mobile Menu Toggle Button
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Nav Actions - Hidden on Desktop */
.mobile-nav-actions-wrapper {
    display: none !important;
}

/* Always hide mobile nav actions wrapper on desktop */
@media (min-width: 1025px) {
    .nav-links .mobile-nav-actions-wrapper {
        display: none !important;
    }
    
    .mobile-nav-actions-wrapper {
        display: none !important;
    }
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 40px;
    border: 1px solid transparent;
    cursor: pointer;
    width: 100%;
}

.mobile-nav-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-btn-secondary:hover,
.mobile-nav-btn-secondary:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .mobile-nav-btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mobile-nav-btn-secondary:hover,
[data-theme="light"] .mobile-nav-btn-secondary:active {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

.mobile-nav-cta {
    background: var(--gradient-main);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.mobile-nav-cta:hover,
.mobile-nav-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

[data-theme="light"] .mobile-nav-cta {
    color: white;
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    min-height: 40px;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-theme-toggle:active {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(0.98);
}

[data-theme="light"] .mobile-theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mobile-theme-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-theme-toggle:active {
    background: rgba(0, 0, 0, 0.12);
}

.mobile-theme-toggle i {
    font-size: 0.875rem;
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

[data-theme="light"] .nav-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile Bottom CTA Bar */
.mobile-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    z-index: 90;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.mobile-bottom-cta .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
}

/* ============================================
   Native Mobile App Enhancements
   ============================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Prevent horizontal scroll.
   Only set overflow-x on html — browsers propagate it to the viewport.
   Setting overflow-x: hidden on body as well causes Chrome (Blink) to
   promote body to an independent scroll container, which combined with
   overscroll-behavior-y: contain prevents Chrome desktop from scrolling. */
html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent overscroll bounce / pull-to-refresh on touch devices only.
   On desktop, overscroll-behavior-y: contain on body can interact with
   Chrome's scroll-container promotion (triggered by overflow-x: hidden
   on body) and lock vertical scrolling entirely. */
@media (pointer: coarse) {
    body {
        overscroll-behavior-y: contain;
    }
}

/* Touch Feedback for Mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:active,
    .btn-secondary:active,
    .feature-card:active,
    .problem-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
        box-shadow: none;
    }
    
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Safe Area Insets Support */
@supports (padding: env(safe-area-inset-bottom)) {
    .landing-nav {
        padding-top: env(safe-area-inset-top);
    }
    
    .mobile-bottom-cta {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    
    .landing-footer {
        padding-bottom: calc(4rem + env(safe-area-inset-bottom));
    }
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Desktop Baseline - Section Padding */
.section {
    padding: 6rem 4rem;
}

/* Tablet Landscape and Mobile Navigation (max-width: 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 3rem;
    }
    
    /* Navigation - Mobile Drawer (applies to tablets and phones in all orientations) */
    .nav-content {
        padding: 1rem 1.5rem;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 70px;
    }
    
    .nav-content > .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        flex-shrink: 0;
    }
    
    .nav-content > .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        z-index: 2;
        flex-shrink: 0;
    }
    
    /* Hide desktop nav-actions completely on mobile/tablet */
    .nav-content > .nav-actions {
        display: none;
    }
    
    /* Ensure mobile nav actions are hidden in regular nav-links on desktop */
    .nav-links:not(.active) .mobile-nav-actions-wrapper {
        display: none !important;
    }

    /* Hide nav-links from header - only show in drawer when active */
    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: min(320px, 85vw) !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(26, 26, 36, 0.85) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        margin: 0 !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3) !important;
        z-index: 100 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .nav-links.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-links.active .mobile-menu-close {
        display: flex !important;
        position: sticky;
        top: 0;
        align-self: flex-end;
        margin: 1rem 1.5rem 0.5rem auto;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 2;
        flex-shrink: 0;
    }
    
    .nav-links.active .mobile-menu-close:hover,
    .nav-links.active .mobile-menu-close:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.95);
    }
    
    .nav-links.active .mobile-menu-close svg {
        width: 18px;
        height: 18px;
    }

    .nav-links li {
        width: 100% !important;
        display: block !important;
    }
    
    /* Padding for content after sticky close button */
    .nav-links.active > li:first-of-type {
        margin-top: 0.5rem;
    }

    .nav-links a {
        display: flex !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        min-height: 48px !important;
        align-items: center !important;
        height: auto !important;
        color: var(--text-primary) !important;
        width: 100% !important;
        transition: all 0.2s ease !important;
    }
    
    .nav-links a::after {
        display: none !important;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        color: var(--accent-green) !important;
        background: rgba(var(--accent-green-rgb, 34, 197, 94), 0.1) !important;
        padding-left: 1.75rem !important;
    }
    
    /* Mobile Menu Actions - Inside drawer */
    .mobile-nav-actions-wrapper {
        margin-top: auto !important;
        padding: 1.5rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100% !important;
        display: none;
        background: rgba(26, 26, 36, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .nav-links.active .mobile-nav-actions-wrapper {
        display: block !important;
    }
    
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    /* Mobile Bottom CTA */
    .mobile-bottom-cta {
        display: block;
    }
    
    .landing-page {
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .roadmap-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .process-steps::before {
        display: none;
    }

    .differentiator-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .differentiator-number {
        font-size: 3rem;
    }

    .segment-list ul {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Light Theme Mobile Navigation Styles */
    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.9) !important;
        border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15) !important;
    }
    
    [data-theme="light"] .nav-links.active .mobile-menu-close {
        background: rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.15);
    }
    
    [data-theme="light"] .nav-links.active .mobile-menu-close:hover,
    [data-theme="light"] .nav-links.active .mobile-menu-close:active {
        background: rgba(0, 0, 0, 0.12);
    }
    
    [data-theme="light"] .nav-links a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    [data-theme="light"] .nav-links a:hover,
    [data-theme="light"] .nav-links a:active {
        background: rgba(16, 185, 129, 0.08) !important;
    }
    
    [data-theme="light"] .mobile-nav-actions-wrapper {
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        background: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .section {
        padding: 4rem 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

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

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .stat {
        text-align: center;
    }

    .stat-value {
        font-size: 2rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Footer */
    .landing-footer {
        padding: 3rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        order: -1;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-column a {
        display: inline-block;
        padding: 0.5rem 0;
    }

    .disclaimer {
        font-size: 0.75rem;
        padding: 1rem;
    }
}

/* Mobile Large (max-width: 576px) */
@media (max-width: 576px) {
    .section {
        padding: 3.5rem 1.25rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-features-grid,
    .roadmap-features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }
    
    /* CTA Box */
    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* Mobile Standard (max-width: 480px) */
@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 2.5rem;
    }
    
    .hero-text h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .problem-card {
        padding: 1.25rem;
    }
    
    .cta-box {
        padding: 2rem 1.25rem;
    }
    
    .nav-links {
        width: 85%;
        max-width: 320px;
    }
    
    /* Process Steps - Vertical Layout */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        max-width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        font-size: 1.25rem;
        margin: 0;
    }
    
    .process-step h4 {
        margin-bottom: 0.25rem;
    }
    
    .process-step p {
        max-width: 100%;
        margin: 0;
    }
}

/* Mobile Small (max-width: 375px) */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Landscape Orientation Fixes for Mobile/Tablet */
@media (max-width: 1024px) and (orientation: landscape) {
    .nav-content {
        padding: 0.75rem 1.5rem;
        min-height: 60px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .hero {
        padding: 4rem 1.5rem 2rem;
    }
    
    .nav-links {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }
}
