/* Premium Design System - Luxury Through Restraint */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #fafafa;
    --accent-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-muted: #86868b;
    --accent-color: #0066cc;
    --accent-blue: #0096ff;
    --accent-subtle: #f0f7ff;
    --accent-green: #16a34a;
    --accent-red: #ef4444;
    --success-color: #1d4ed8;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 10px 30px rgba(102, 126, 234, 0.3);
    --warning-color: #d69e2e;
    --warning-bg: #fefcbf;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-section: 80px;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation - Luxury Simplicity */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smart scroll behavior - More opaque when scrolled */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: var(--text-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: var(--font-serif);
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(0, 102, 204, 0.04);
}

.nav-links a:active {
    transform: translateY(1px);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.25rem;
        margin: 1rem 0;
        color: var(--text-primary);
        font-weight: 500;
    }
    
    .nav-menu .nav-cta {
        margin-top: 2rem;
        padding: 1rem 2rem;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 102, 204, 0.04);
}

.nav-link:active {
    transform: translateY(1px);
}

.nav-cta {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--accent-color);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.nav-cta:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 102, 204, 0.04);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Premium Simplicity with Financial Animation */
.hero {
    background: var(--primary-bg);
    padding: calc(64px + var(--spacing-section)) 0 var(--spacing-section);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}





.hero-background,
.hero-grid,
.hero-chart,
.particles-container,
.particle {
    display: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.hero-text {
    /* All content is now in one centered block */
}

.hero-visual {
    display: none; /* Remove the visual element for pure simplicity */
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--accent-subtle);
    border-radius: var(--border-radius);
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
}

.badge-pulse {
    display: none;
}

.badge-icon {
    display: none;
}

/* Remove feature pills */
.hero-features {
    display: none;
}

.feature-pill {
    display: none;
}

.pill-icon {
    display: none;
}

/* Remove enhanced button effects */
.pulse-on-hover {
    position: static;
    overflow: visible;
}

.btn-shine {
    display: none;
}

/* Simplify trust indicators */
.trust-indicators {
    margin-top: 2rem;
    text-align: center;
}

.trust-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 400;
    background: none;
    border: none;
    padding: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.gradient-text {
    color: var(--text-primary);
    /* Remove all gradient effects for sophistication */
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-section);
}

.btn-primary {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--accent-color);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: var(--border-radius);
    color: var(--accent-color) !important;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-arrow,
.play-icon {
    display: none; /* Remove icons for cleaner look */
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Trading Interface Visual */
.trading-interface {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 300px;
}

.trading-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.interface-title {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--accent-green);
    font-weight: 400;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseGreen 2s ease-in-out infinite;
}

.interface-chart {
    margin-bottom: 1.5rem;
}

.chart-area {
    height: 100px;
    display: flex;
    align-items: end;
    padding: 1rem 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.02) 0%, transparent 100%);
    border-radius: var(--border-radius);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    min-height: 20%;
    animation: barGrow 2s ease-out;
    animation-fill-mode: both;
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }
.bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes barGrow {
    0% { height: 0; }
    100% { height: var(--final-height, 60%); }
}

.interface-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 0.75rem;
    background: var(--accent-bg);
    border-radius: var(--border-radius);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.metric-value {
    font-weight: 500;
    font-size: 1rem;
}

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

/* Section Styling - Clean Apple Style */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-bg);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.005em;
}

.section-description {
    font-size: 1.3125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.38;
    font-weight: 400;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--background-primary);
}

/* Value Proposition Hero */
.value-prop-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.value-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.value-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.value-details {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.risk-warning {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-align: center;
}

.risk-warning strong {
    color: #d97706;
}

/* Steps Container */
.steps-container {
    margin-top: 4rem;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.625rem;
}

.step-emoji {
    font-size: 1.5rem;
    color: white;
}

.step-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

/* Step Arrows */
.step-arrow {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

/* Setup Footer */
.setup-footer {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.badge-text strong {
    font-weight: 600;
}

/* Legacy styles for backwards compatibility */
.setup-note {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 150, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-content h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-story {
    max-width: 600px;
}

.story-paragraph {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.value-item h4 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    font-weight: 400;
}

/* Comparison Page Styles */
.comparison-hero {
    padding: 8rem 0 6rem;
    background: var(--primary-bg);
    text-align: center;
    position: relative;
}

.comparison-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.comparison-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Comparison Table */
.quick-comparison {
    padding: 6rem 0;
    background: var(--accent-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.feature-column {
    width: 25%;
    font-weight: 600;
}

.neural-column {
    width: 20%;
    background: rgba(34, 197, 94, 0.05);
    color: #059669;
}

.competitor-column {
    width: 18.33%;
}

.feature-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.neural-cell {
    background: rgba(34, 197, 94, 0.03);
    color: var(--text-primary);
}

.competitor-cell {
    color: var(--text-secondary);
}

.check-icon {
    color: #059669;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cross-icon {
    color: #dc2626;
    font-weight: bold;
    margin-right: 0.5rem;
}

.warning-icon {
    color: #d97706;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Detailed Comparison */
.detailed-comparison {
    padding: 6rem 0;
    background: var(--primary-bg);
}

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

.platform-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.platform-price {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.platform-pros h4,
.platform-cons h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.platform-pros h4 {
    color: #059669;
}

.platform-cons h4 {
    color: #dc2626;
}

.platform-pros ul,
.platform-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.platform-pros li,
.platform-cons li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.platform-pros li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    margin-right: 0.5rem;
}

.platform-cons li::before {
    content: "✗";
    color: #dc2626;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Why Others Fail */
.why-others-fail {
    padding: 6rem 0;
    background: var(--accent-bg);
}

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

.failure-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.failure-card:hover {
    transform: translateY(-4px);
}

.failure-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.failure-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.failure-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Neural Advantages */
.neural-advantages {
    padding: 6rem 0;
    background: var(--primary-bg);
}

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

.advantage-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Comparison CTA */
.comparison-cta {
    padding: 6rem 0;
    background: var(--accent-bg);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Risk Warning Styles */
.risk-warning {
    margin-top: 1rem;
    padding: 0.4rem 0.75rem;
    background: #fffbeb; /* Very light yellow */
    border: 1px solid #fde68a; /* Light yellow border */
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem; /* Smaller text */
    line-height: 1.3;
    color: #92400e; /* Darker yellow-brown text */
    max-width: 500px; /* Smaller frame */
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.warning-icon {
    font-size: 0.7rem; /* Smaller icon */
    flex-shrink: 0;
}

.warning-text {
    font-weight: 400; /* Less bold */
    letter-spacing: 0.005em;
}

@media (max-width: 768px) {
    .risk-warning {
        font-size: 0.6rem; /* Even smaller on mobile */
        padding: 0.3rem 0.6rem;
        margin-top: 0.75rem;
        max-width: 400px;
    }
    
    .warning-icon {
        font-size: 0.65rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 2rem -1rem 0;
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-hero-title {
        font-size: 2.5rem;
    }
}

/* Problems Section Styles */
.problems-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ef4444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reality-note {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.solution-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}

.solution-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.solution-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}


/* Trading Comparison Section */
.trading-comparison {
    padding: 8rem 0;
    background: var(--background-primary);
    position: relative;
}

.charts-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.chart-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.chart-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-info {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.chart-info h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.chart-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.info-badge.standard {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.info-badge.enhanced {
    background: linear-gradient(135deg, var(--accent-blue), #0ea5e9);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.25);
}

.ai-icon {
    font-size: 0.875rem;
}

.chart-frame {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 380px;
    min-height: 380px;
}

.standard-side .chart-frame {
    border-left: 4px solid #e5e7eb;
}

.enhanced-side .chart-frame {
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 150, 255, 0.1), 0 10px 10px -5px rgba(0, 150, 255, 0.05);
}

.chart-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.enhanced-side .chart-frame:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 150, 255, 0.15);
}

/* Signal Indicators */
.signals-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 150, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 255, 0.08);
}

.signal-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.buy-signal .signal-dot {
    background: #16a34a;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

.sell-signal .signal-dot {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .charts-comparison-grid {
        gap: 3rem;
    }
    
    .chart-frame {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trading-comparison {
        padding: 6rem 0;
    }
    
    .charts-comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .chart-info h3 {
        font-size: 1.5rem;
    }
    
    .signals-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Trading Dashboard */
.trading-dashboard {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stock-symbol {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(0, 150, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
}

.stock-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.stock-change {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.stock-change.positive {
    color: var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

.stock-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.trading-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.live {
    box-shadow: 0 0 10px var(--accent-green);
}

.status-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.candlestick-svg {
    width: 100%;
    height: 100%;
    background: transparent;
    display: block;
}

.candlestick-body {
    stroke-width: 1;
    rx: 1;
}

.candlestick-body.bullish {
    fill: var(--accent-green);
    stroke: var(--accent-green);
}

.candlestick-body.bearish {
    fill: var(--accent-red);
    stroke: var(--accent-red);
}

.candlestick-wick {
    stroke-width: 1;
    stroke-linecap: round;
}

.candlestick-wick.bullish {
    stroke: var(--accent-green);
}

.candlestick-wick.bearish {
    stroke: var(--accent-red);
}

/* Standard chart - normal green/red colors like real platforms */
.standard-side .candlestick-body.bullish {
    fill: #10b981;
    stroke: #10b981;
}

.standard-side .candlestick-body.bearish {
    fill: #ef4444;
    stroke: #ef4444;
}

.standard-side .candlestick-wick.bullish {
    stroke: #10b981;
    stroke-width: 1.5;
}

.standard-side .candlestick-wick.bearish {
    stroke: #ef4444;
    stroke-width: 1.5;
}

/* Enhanced chart - vibrant colors for light background */
.enhanced-side .candlestick-body.bullish {
    fill: #16a34a;
    stroke: #16a34a;
}

.enhanced-side .candlestick-body.bearish {
    fill: #dc2626;
    stroke: #dc2626;
}

.enhanced-side .candlestick-wick.bullish {
    stroke: #16a34a;
    stroke-width: 1.5;
}

.enhanced-side .candlestick-wick.bearish {
    stroke: #dc2626;
    stroke-width: 1.5;
}



.trading-signals {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.signal-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.buy-signal-indicator {
    border-left: 3px solid var(--accent-green);
}

.sell-signal-indicator {
    border-left: 3px solid #ef4444;
}

.signal-icon {
    font-size: 1.25rem;
}

.signal-text {
    font-weight: 500;
    color: var(--text-primary);
}

.signal-price {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Chart animation keyframes */
@keyframes candleGrow {
    from { 
        height: 0;
        opacity: 0;
    }
    to { 
        height: attr(data-height);
        opacity: 1;
    }
}

@keyframes signalPulse {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.8;
    }
}

/* Responsive Design for Trading Chart */
@media (max-width: 768px) {
    .trading-chart-section {
        min-height: 40vh;
        padding: 3rem 0;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stock-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .trading-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
    .candlestick-svg {
        height: 250px;
    }
}

.chart-container {
    position: relative;
    height: 150px;
    background: var(--accent-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gradient-secondary);
    transform: translateY(-50%);
    animation: chartGlow 2s ease-in-out infinite alternate;
}

@keyframes chartGlow {
    0% { box-shadow: 0 0 5px var(--accent-green); }
    100% { box-shadow: 0 0 20px var(--accent-green); }
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.point {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pointPulse 3s ease-in-out infinite;
}

.point.buy {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    animation-delay: 0s;
}

.point.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation-delay: 1s;
}

.point.hold {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
    animation-delay: 2s;
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1.1rem;
}

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



.stat-highlight {
    text-align: center;
}

.stat-highlight .stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-highlight .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* System Requirements Section */
.system-requirements {
    padding: 8rem 0;
    background: var(--background-primary);
}

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

.requirement-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requirement-card.primary {
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.1);
}

.requirement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.req-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.requirement-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.req-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.req-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.req-value {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.platform-roadmap {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 150, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 255, 0.1);
    text-align: center;
}

.platform-roadmap h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.roadmap-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.roadmap-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.roadmap-item .platform {
    font-weight: 600;
    color: var(--text-primary);
}

.roadmap-item .timeline {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Technology Section */
.technology {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-visual {
    display: flex;
    justify-content: center;
}

.chart-analysis {
    position: relative;
    width: 320px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-display {
    position: relative;
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: rgba(229, 231, 235, 0.8);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.horizontal:nth-child(1) { top: 25%; }
.grid-line.horizontal:nth-child(2) { top: 50%; }
.grid-line.horizontal:nth-child(3) { top: 75%; }

.grid-line.vertical {
    height: 100%;
    width: 1px;
}

.grid-line.vertical:nth-child(4) { left: 25%; }
.grid-line.vertical:nth-child(5) { left: 50%; }
.grid-line.vertical:nth-child(6) { left: 75%; }

.price-line {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    border-radius: 2px;
    animation: priceFlow 3s ease-in-out infinite;
}

@keyframes priceFlow {
    0% { transform: translateX(-20px) scaleX(0.8); opacity: 0.6; }
    50% { transform: translateX(10px) scaleX(1.1); opacity: 1; }
    100% { transform: translateX(0) scaleX(1); opacity: 0.8; }
}

.signal-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    animation: signalPulse 2s ease-in-out infinite;
}

.buy-dot {
    top: 28%;
    left: 35%;
    background: #10b981;
    animation-delay: 0.5s;
}

.sell-dot {
    top: 32%;
    right: 25%;
    background: #ef4444;
    animation-delay: 1.5s;
}

@keyframes signalPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; }
    50% { transform: scale(1.2); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); }
}

.pattern-highlight {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: rgba(59, 130, 246, 0.05);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    animation: patternScan 4s ease-in-out infinite;
}

@keyframes patternScan {
    0%, 100% { opacity: 0; transform: scale(0.9); }
    25%, 75% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.data-stream {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.data-point {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: dataFlow 2s ease-in-out infinite;
}

.data-point:nth-child(1) { animation-delay: 0s; }
.data-point:nth-child(2) { animation-delay: 0.2s; }
.data-point:nth-child(3) { animation-delay: 0.4s; }
.data-point:nth-child(4) { animation-delay: 0.6s; }

@keyframes dataFlow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 1; }
}



.tech-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}



    /* FAQ Section */
    .faq {
        padding: 8rem 0;
    }

    .faq-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        cursor: pointer;
        transition: var(--transition);
        user-select: none;
    }

    .faq-question:hover {
        background: rgba(59, 130, 246, 0.05);
    }

    .faq-question h3 {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-primary);
        margin: 0;
    }

    .faq-toggle {
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--accent-blue);
        transition: var(--transition);
        min-width: 20px;
        text-align: center;
    }

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

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

    .faq-item.active .faq-answer {
        max-height: 200px;
    }

    .faq-answer p {
        padding: 0 2rem 1.5rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
    }

/* Reservation Section */
.reservation {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reservation-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.reservation-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reservation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

/* Form Styling */
.reservation-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.form {
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit {
    width: 100% !important;
    padding: 1rem 2rem !important;
    /* Multiple fallbacks to ensure visibility */
    background: #667eea !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
    min-height: 50px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
}

.form-submit span {
    color: white !important;
    font-weight: 600 !important;
}

.submit-icon {
    transition: all 0.3s ease !important;
    color: white !important;
    font-weight: bold !important;
}

.form-submit:hover .submit-icon {
    transform: translateX(4px) !important;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-blue);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Luxury Preserved */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-links {
        gap: var(--spacing-md); /* Reduce gap between nav items */
    }
    
    .nav-links a {
        font-size: 0.9375rem; /* Slightly smaller text */
        padding: var(--spacing-xs) var(--spacing-sm); /* Reduce padding */
    }
    
    .nav-cta {
        font-size: 0.9375rem; /* Smaller CTA button text */
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media (max-width: 1024px) {
    .nav-logo {
        font-size: 1.375rem; /* Smaller logo text */
        gap: var(--spacing-xs);
    }
    
    .logo-icon {
        width: 24px; /* Smaller icon */
        height: 24px;
        font-size: 0.75rem;
    }
    
    .nav-links {
        gap: var(--spacing-sm); /* Tighter gap */
    }
    
    .nav-links a {
        font-size: 0.875rem; /* Smaller text */
        padding: var(--spacing-xs) var(--spacing-xs); /* Minimal padding */
    }
    
    .nav-cta {
        font-size: 0.875rem;
        padding: var(--spacing-xs) var(--spacing-xs);
    }
    
    .tech-grid,
    .reservation-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-section);
    }
    
    .chart-background {
        width: 30%;  /* Bigger on tablets */
        right: 10%;
        max-width: 400px;
    }
}

@media (max-width: 1000px) {
    .nav-logo {
        font-size: 1.25rem; /* Smaller logo text for medium screens */
        gap: 6px;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .nav-links {
        gap: 12px; /* Tight spacing */
    }
    
    .nav-links a {
        font-size: 0.8125rem;
        padding: 6px 8px;
    }
    
    .nav-cta {
        font-size: 0.8125rem;
        padding: 6px 10px;
    }
}

@media (max-width: 900px) {
    .nav-logo {
        font-size: 1.125rem; /* Very small logo text */
        gap: 4px; /* Minimal gap between icon and text */
    }
    
    .logo-icon {
        width: 18px; /* Very small icon */
        height: 18px;
        font-size: 0.625rem;
    }
    
    .nav-links {
        gap: 8px; /* Very tight gap */
    }
    
    .nav-links a {
        font-size: 0.75rem; /* Very small text */
        padding: 4px 6px; /* Minimal padding */
    }
    
    .nav-cta {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: calc(64px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    }
    
    .chart-background {
        display: none; /* Hide background chart on mobile */
    }

    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.75rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--spacing-xxl);
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
        justify-content: space-around;
    }
    

    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-story {
        max-width: 100%;
    }
    
    .story-paragraph {
        font-size: 1.0625rem;
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
        height: 64px;
    }
    
    .hero {
        padding: calc(64px + var(--spacing-xl)) 0 var(--spacing-xl);
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: var(--spacing-xs) var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    

    
    .section-header {
        margin-bottom: var(--spacing-xxl);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .about,
    .features,
    .technology,
    .stats,
    .reservation {
        padding: var(--spacing-xxl) 0;
    }
    
    .value-item,
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .form {
        padding: var(--spacing-lg);
    }
    
    /* New sections responsive rules */
    .value-prop-hero {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .value-subtitle {
        font-size: 1.1rem;
    }
    
    .value-details {
        font-size: 0.9rem;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .step-card {
        max-width: 100%;
        min-width: auto;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-emoji {
        font-size: 1.25rem;
    }
    
    .step-svg {
        width: 30px;
        height: 30px;
    }
    
    .security-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .badge-text {
        font-size: 0.875rem;
    }
    
    .setup-note {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    

    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .req-icon {
        width: 40px;
        height: 40px;
    }
    
    .roadmap-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .roadmap-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Company Info Section */
.company-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.company-story h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

.team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.member-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #0077cc);
    border-radius: 50%;
}

.member-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border-left: 4px solid var(--accent-color);
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
}

/* Legal Pages & Pricing */
.legal-page, .pricing-hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content p, .legal-content li {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.risk-section {
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.risk-section h3 {
    color: #dc2626;
    margin-top: 0;
}

.privacy-highlight {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-highlight h3 {
    color: #2563eb;
    margin-top: 0;
}

.privacy-commitment {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.privacy-commitment h3 {
    color: var(--accent-color);
    margin-top: 0;
}

/* Pricing Styles */
.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.risk-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.pricing-plans {
    padding: 4rem 0;
}

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

.plans-grid.single-plan {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 3rem auto 0;
    justify-items: center;
}

.plan-card.centered {
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Remove max-width to let it use the original plan-card sizing */
}

.plan-card.centered .plan-badge {
    text-align: center;
    margin: 0 auto 1rem auto;
    display: block;
}

.plan-card.centered .plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card.centered .plan-header h3 {
    text-align: center;
    margin: 0 auto 1rem auto;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.plan-card.centered .plan-features {
    text-align: center;
    width: 100%;
}

.plan-card.centered .feature {
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.plan-card.centered .plan-button {
    margin: 1.5rem auto 0;
    display: block;
    text-align: center;
    align-self: center;
}

.plan-card.centered .plan-guarantee {
    text-align: center;
    margin: 1rem auto 0;
    display: block;
    width: 100%;
}

.plan-card.centered .plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.plan-card.centered .plan-price .currency,
.plan-card.centered .plan-price .amount,
.plan-card.centered .plan-price .period {
    text-align: center;
}

.plan-card.centered .plan-price .amount {
    font-size: 2.5rem;
}

.plan-card.centered .plan-description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    display: block;
}

/* Ensure every text element is perfectly centered */
.plan-card.centered * {
    text-align: center !important;
}

.plan-card.centered .feature {
    justify-content: center !important;
    text-align: center !important;
}

.plan-card.centered .feature-icon,
.plan-card.centered .feature span {
    text-align: center !important;
}

.plan-button.large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.plan-guarantee {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

.plan-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-icon {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.75rem;
    width: 20px;
}

.plan-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

/* FAQ Styles */
.pricing-faq {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing-faq h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Risk Disclosure */
.risk-disclosure {
    padding: 3rem 0;
    background: rgba(220, 38, 38, 0.05);
}

.risk-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.risk-content h2 {
    font-family: var(--font-serif);
    color: #dc2626;
    margin-bottom: 1rem;
}

.risk-content ul {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
}

.risk-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


 