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

:root {
    /* Dark luxurious color palette */
    --primary-color: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --accent-blue: #06b6d4;
    --accent-cyan: #22d3ee;
    
    --bg-primary: #0a0e27;
    --bg-secondary: #111827;
    --bg-tertiary: #1a1f3a;
    --bg-card: #161b33;
    --bg-card-hover: #1e2540;
    
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    
    --border-color: #1f2937;
    --border-light: #374151;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
    
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-icon {
    font-size: 1.75rem;
}

.brand-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
}

.chart-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.chart-mockup {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(59, 130, 246, 0.1) 35px, rgba(59, 130, 246, 0.1) 36px);
    position: relative;
}

.chart-mockup::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(135deg, transparent 30%, rgba(59, 130, 246, 0.3) 50%, rgba(34, 211, 238, 0.2) 70%, transparent 90%);
    clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 50%, 75% 20%, 90% 30%, 100% 10%, 100% 100%, 0 100%);
    filter: blur(1px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}

    .section-header p,
    .section-intro {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.125rem;
        color: var(--text-secondary);
        line-height: 1.8;
    }
    
    /* Intro Section */
    .intro {
        padding: 100px 0;
        background: var(--bg-secondary);
        position: relative;
    }
    
    .intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    }
    
    .intro-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .intro-card {
        position: relative;
        background: var(--bg-card);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        overflow: hidden;
    }
    
    .intro-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .intro-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-glow);
    }
    
    .intro-card:hover::before {
        opacity: 1;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }
    
    .intro-card .icon {
        font-size: 2.5rem;
    }
    
    .intro-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
        font-weight: 700;
        position: relative;
        z-index: 1;
    }
    
    .intro-card p {
        color: var(--text-muted);
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }
    
    .card-glow {
        position: absolute;
        bottom: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    
    .intro-card:hover .card-glow {
        opacity: 1;
    }
    
    /* How It Works Section */
    .how-it-works {
        padding: 100px 0;
        background: var(--bg-primary);
    }
    
    .methodology-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .method-card {
        position: relative;
        background: var(--bg-card);
        padding: 2rem;
        border-radius: var(--radius);
        border-left: 3px solid var(--primary-color);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .method-card:hover {
        background: var(--bg-card-hover);
        border-left-width: 4px;
        transform: translateX(5px);
    }
    
    .method-number {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
        font-weight: 800;
        color: rgba(59, 130, 246, 0.1);
    }
    
    .method-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .method-card p {
        color: var(--text-muted);
        line-height: 1.7;
    }
    
    .scoring-info {
        background: var(--bg-card);
        padding: 3rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }
    
    .scoring-info h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--primary-light);
        font-weight: 700;
    }
    
    .scoring-info p {
        margin-bottom: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.8;
    }
    
    .scoring-info ul {
        list-style: none;
        padding-left: 0;
        margin: 1.5rem 0;
    }
    
    .scoring-info li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
        color: var(--text-secondary);
        line-height: 1.7;
    }
    
    .scoring-info li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .scoring-info strong {
        color: var(--text-primary);
    }
    
    /* Indicators Section */
    .indicators {
        padding: 100px 0;
        background: var(--bg-secondary);
    }
    
    .indicator-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .indicator-item {
        background: var(--bg-card);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .indicator-item:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
    }
    
    .indicator-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .indicator-item h3 {
        font-size: 1.5rem;
        color: var(--primary-light);
        font-weight: 700;
    }
    
    .indicator-badge {
        padding: 0.375rem 0.875rem;
        background: rgba(59, 130, 246, 0.15);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--primary-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .indicator-item p {
        margin-bottom: 1rem;
        color: var(--text-muted);
        line-height: 1.8;
    }
    
    .indicator-item strong {
        color: var(--text-primary);
    }
    
    /* Watchlist Section */
    .watchlist {
        padding: 100px 0;
        background: var(--bg-primary);
    }
    
    .watchlist-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .watchlist-category {
        background: var(--bg-card);
        padding: 2rem;
        border-radius: var(--radius-lg);
        border-top: 3px solid var(--primary-color);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .watchlist-category:hover {
        background: var(--bg-card-hover);
        box-shadow: var(--shadow-md);
    }
    
    .watchlist-category h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .stock-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stock-tag {
        padding: 0.5rem 1rem;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: var(--radius-sm);
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-secondary);
        transition: var(--transition);
        cursor: default;
    }
    
    .stock-tag:hover {
        background: rgba(59, 130, 246, 0.2);
        border-color: var(--primary-color);
        color: var(--primary-light);
        transform: translateY(-2px);
    }
    
    .timeframe-info {
        display: flex;
        justify-content: center;
        gap: 3rem;
        padding: 2.5rem;
        background: var(--bg-card);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        flex-wrap: wrap;
    }
    
    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .info-label {
        font-size: 0.875rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    .info-value {
        font-size: 1.125rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 100px 0;
        background: var(--bg-secondary);
        position: relative;
        overflow: hidden;
    }
    
    .pricing::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
        pointer-events: none;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .pricing-card {
        position: relative;
        background: var(--bg-card);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        overflow: hidden;
        transition: var(--transition);
    }
    
    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        box-shadow: var(--shadow-glow);
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 50px rgba(59, 130, 246, 0.4);
    }
    
    .plan-badge {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
        color: white;
        padding: 0.75rem;
        text-align: center;
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 1.5px;
    }
    
    .plan-header {
        padding: 3rem 2.5rem 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .plan-header h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .price {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.25rem;
        color: var(--primary-light);
    }
    
    .currency {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 0.5rem;
    }
    
    .amount {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1;
    }
    
    .period {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--text-muted);
        align-self: flex-end;
        margin-bottom: 0.75rem;
    }
    
    .plan-features {
        list-style: none;
        padding: 2.5rem;
    }
    
    .plan-features li {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-secondary);
        font-size: 1rem;
    }
    
    .plan-features li:last-child {
        border-bottom: none;
    }
    
    .check-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background: rgba(59, 130, 246, 0.2);
        border-radius: 50%;
        color: var(--primary-light);
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .plan-ideal {
        padding: 0 2.5rem 1.5rem;
        text-align: center;
        font-style: italic;
        color: var(--text-muted);
        font-size: 0.95rem;
    }
    
    .plan-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin: 0 2.5rem 2.5rem;
        padding: 1.125rem 2rem;
        text-align: center;
        border-radius: var(--radius);
        text-decoration: none;
        font-weight: 700;
        font-size: 1.05rem;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    
    .plan-button.primary {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
        color: white;
        box-shadow: var(--shadow-glow);
    }
    
    .plan-button.primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .plan-button.primary:hover::before {
        left: 100%;
    }
    
    .plan-button.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
    
    .plan-button .button-arrow {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .plan-button:hover .button-arrow {
        transform: translateX(5px);
    }
    
    .card-shine {
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
        transform: rotate(45deg);
        pointer-events: none;
    }
    
    /* FAQ Section */
    .faq {
        padding: 100px 0;
        background: var(--bg-primary);
    }
    
    .faq-grid {
        display: grid;
        gap: 1.5rem;
    }
    
    .faq-item {
        background: var(--bg-card);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .faq-item:hover {
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
        background: var(--bg-card-hover);
    }
    
    .faq-item h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--primary-light);
        font-weight: 700;
    }
    
    .faq-item p {
        color: var(--text-muted);
        line-height: 1.8;
    }
    
    /* About Section */
    .about {
        padding: 100px 0;
        background: var(--bg-secondary);
    }
    
    .about-content {
        background: var(--bg-card);
        padding: 4rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }
    
    .about-text h3 {
        font-size: 1.875rem;
        margin: 3rem 0 1.5rem;
        color: var(--primary-light);
        font-weight: 700;
    }
    
    .about-text h3:first-child {
        margin-top: 0;
    }
    
    .about-text p {
        margin-bottom: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.8;
    }
    
    .about-text em {
        color: var(--primary-light);
        font-style: normal;
        font-weight: 600;
    }
    
    .about-text ul {
        margin: 1.5rem 0 2rem 0;
        padding-left: 0;
        list-style: none;
    }
    
    .about-text li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
        color: var(--text-secondary);
        line-height: 1.7;
    }
    
    .about-text li::before {
        content: '▸';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .about-text strong {
        color: var(--text-primary);
    }
    
    .disclaimer-text {
        background: rgba(245, 158, 11, 0.1);
        padding: 2rem;
        border-left: 4px solid var(--warning);
        border-radius: var(--radius);
        font-size: 0.95rem;
        margin-top: 3rem;
        line-height: 1.7;
        color: var(--text-muted);
    }
    
    /* Contact Section */
    .contact {
        padding: 100px 0;
        background: var(--bg-primary);
    }
    
    .contact-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .contact-info h3,
    .contact-form-section h3 {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .contact-info p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .contact-method {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.75rem;
        background: var(--bg-card);
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .contact-method:hover {
        border-color: var(--primary-color);
        background: var(--bg-card-hover);
    }
    
    .contact-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(59, 130, 246, 0.1);
        border-radius: var(--radius-sm);
        flex-shrink: 0;
    }
    
    .contact-method h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .contact-method p,
    .contact-method a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .contact-method a:hover {
        color: var(--primary-light);
    }
    
    /* Contact Form */
    .contact-form {
        background: var(--bg-card);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
    }
    
    .form-group {
        margin-bottom: 1.75rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: var(--bg-tertiary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        font-family: inherit;
        font-size: 1rem;
        color: var(--text-primary);
        transition: var(--transition);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-muted);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        background: var(--bg-secondary);
    }
    
    .submit-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.125rem;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
        color: white;
        border: none;
        border-radius: var(--radius);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-glow);
    }
    
    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    }
    
    .submit-button .button-arrow {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .submit-button:hover .button-arrow {
        transform: translateX(5px);
    }
    
    .form-note {
        margin-top: 1.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        text-align: center;
        line-height: 1.6;
    }
    
    .form-note a {
        color: var(--primary-light);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .form-note a:hover {
        color: var(--accent-cyan);
    }
    
    /* Support Topics */
    .support-topics {
        margin-top: 4rem;
    }
    
    .support-topics h3 {
        text-align: center;
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .topics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .topic-card {
        background: var(--bg-card);
        padding: 2rem;
        border-radius: var(--radius-lg);
        text-align: center;
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }
    
    .topic-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-md);
        background: var(--bg-card-hover);
    }
    
    .topic-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .topic-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .topic-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Footer */
    .footer {
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        padding: 4rem 0 1.5rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
    .footer-brand p {
        color: var(--text-muted);
        line-height: 1.6;
    }
    
    .footer-links h4 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .footer-links ul {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: var(--primary-light);
        transform: translateX(3px);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }
    
    .footer-bottom p {
        color: var(--text-muted);
        margin: 0.5rem 0;
        font-size: 0.95rem;
    }
    
    .footer-disclaimer {
        font-size: 0.875rem;
        opacity: 0.7;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background: rgba(10, 14, 39, 0.98);
            backdrop-filter: blur(20px);
            width: 100%;
            text-align: center;
            transition: left 0.3s ease;
            box-shadow: var(--shadow-lg);
            padding: 2rem 0;
            gap: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
    
        .nav-menu.active {
            left: 0;
        }
    
        .nav-toggle {
            display: flex;
        }
    
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
    
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
    
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
    
        .hero {
            padding: 80px 0 60px;
            min-height: auto;
        }
    
        .hero .container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    
        .hero h1 {
            font-size: 2.25rem;
        }
    
        .hero-subtitle {
            font-size: 1.125rem;
        }
    
        .hero-features {
            flex-direction: column;
            align-items: stretch;
        }
    
        .chart-container {
            height: 350px;
        }
    
        .section-header h2 {
            font-size: 2rem;
        }
    
        .intro,
        .how-it-works,
        .indicators,
        .watchlist,
        .pricing,
        .faq,
        .about,
        .contact {
            padding: 60px 0;
        }
    
        .intro-grid,
        .methodology-grid,
        .watchlist-grid,
        .pricing-grid,
        .topics-grid {
            grid-template-columns: 1fr;
        }
    
        .contact-content {
            grid-template-columns: 1fr;
        }
    
        .about-content {
            padding: 2rem;
        }
    
        .timeframe-info {
            flex-direction: column;
            gap: 1.5rem;
        }
    
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }
    
        .hero {
            padding: 60px 0 40px;
        }
    
        .hero h1 {
            font-size: 1.875rem;
        }
    
        .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;    }

            .intro,
            .how-it-works,
            .indicators,
            .watchlist,
            .pricing,
            .faq,
            .about,
            .contact {
                padding: 50px 0;
            }
        
            .section-header h2 {
                font-size: 1.75rem;
            }
        
            .section-header p,
            .section-intro {
                font-size: 1rem;
            }
        
            .intro-card,
            .method-card,
            .indicator-item,
            .watchlist-category,
            .pricing-card,
            .faq-item {
                padding: 1.75rem;
            }
        
            .price .amount {
                font-size: 3rem;
            }
        
            .about-text h3 {
                font-size: 1.5rem;
            }
        
            .contact-method {
                flex-direction: column;
                text-align: center;
            }
        
            .contact-form {
                padding: 1.75rem;
            }
        
            .chart-container {
                height: 280px;
            }
        
            .card-icon-wrapper {
                width: 60px;
                height: 60px;
            }
        
            .intro-card .icon {
                font-size: 2rem;
            }
        }
        
        /* Accessibility Improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Focus styles for keyboard navigation */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }
        
        a:focus:not(:focus-visible),
        button:focus:not(:focus-visible) {
            outline: none;
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-color: #4b5563;
                --border-light: #6b7280;
            }
        
            .intro-card,
            .method-card,
            .indicator-item,
            .faq-item {
                border-width: 2px;
            }
        }
        
        /* Dark mode (already default, but ensuring consistency) */
        @media (prefers-color-scheme: dark) {
            body {
                background: var(--bg-primary);
                color: var(--text-primary);
            }
        }
        
        /* Print styles */
        @media print {
            .navbar,
            .nav-toggle,
            .cta-button,
            .plan-button,
            .submit-button,
            .footer,
            .hero-image,
            .chart-container {
                display: none;
            }
        
            body {
                font-size: 12pt;
                background: white;
                color: black;
            }
        
            .hero {
                background: none;
                color: black;
            }
        
            .section-header h2,
            .intro-card h3,
            .method-card h3 {
                color: black;
            }
        
            .intro-card,
            .method-card,
            .indicator-item,
            .faq-item {
                border: 1px solid #ccc;
                page-break-inside: avoid;
            }
        }
        
        /* Additional luxury enhancements */
        .intro-card,
        .method-card,
        .indicator-item,
        .pricing-card,
        .faq-item,
        .topic-card {
            backdrop-filter: blur(10px);
        }
        
        /* Scrollbar styling for webkit browsers */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        /* Firefox scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) var(--bg-secondary);
        }
        
        /* Selection styling */
        ::selection {
            background: rgba(59, 130, 246, 0.3);
            color: var(--text-primary);
        }
        
        ::-moz-selection {
            background: rgba(59, 130, 246, 0.3);
            color: var(--text-primary);
        }
        
        /* Loading animation for images (optional) */
        img {
            transition: opacity 0.3s ease;
        }
        
        img:not([src]) {
            opacity: 0;
        }
        
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }
        
        /* Additional hover effects for luxury feel */
        .intro-card:hover .card-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            transition: transform 0.3s ease;
        }
        
        .method-card:hover .method-number {
            color: rgba(59, 130, 246, 0.2);
            transition: color 0.3s ease;
        }
        
        .stock-tag {
            font-family: 'Courier New', monospace;
            letter-spacing: 0.5px;
        }
        
        /* Gradient text for emphasis */
        .gradient-text {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Pulsing animation for CTA buttons */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
            }
            50% {
                box-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
            }
        }
        
        .cta-button,
        .plan-button.primary {
            animation: pulse 3s ease-in-out infinite;
        }
        
        /* Floating animation for hero image */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .hero-image {
            animation: float 6s ease-in-out infinite;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .hero-image {
                animation: none;
            }
        }
        
        /* Shimmer effect for premium badge */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        .plan-badge {
            background-size: 200% auto;
            animation: shimmer 3s linear infinite;
        }
        
        /* Glass morphism effect enhancement */
        .navbar,
        .intro-card,
        .method-card,
        .pricing-card,
        .contact-form {
            background: rgba(22, 27, 51, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        /* Responsive typography scaling */
        @media (min-width: 1920px) {
            html {
                font-size: 18px;
            }
        }
        
        @media (max-width: 1280px) {
            html {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
        }
        
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
        }
        
        /* Utility classes */
        .text-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .glow {
            box-shadow: var(--shadow-glow);
        }
        
        .border-gradient {
            border: 2px solid transparent;
            background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                        linear-gradient(135deg, var(--primary-color), var(--accent-cyan)) border-box;
        }
        
        /* Enhanced card interactions */
        .intro-card,
        .method-card,
        .indicator-item,
        .faq-item,
        .topic-card {
            position: relative;
            overflow: hidden;
        }
        
        .intro-card::after,
        .method-card::after,
        .indicator-item::after,
        .faq-item::after,
        .topic-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .intro-card:hover::after,
        .method-card:hover::after,
        .indicator-item:hover::after,
        .faq-item:hover::after,
        .topic-card:hover::after {
            left: 100%;
        }
        
        /* Luxury accent lines */
        .section-header::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
            margin: 1.5rem auto 0;
            border-radius: 2px;
        }
        
        /* Enhanced button states */
        button,
        .cta-button,
        .plan-button {
            position: relative;
            overflow: hidden;
        }
        
        button:active,
        .cta-button:active,
        .plan-button:active {
            transform: scale(0.98);
        }
        
        /* Tooltip styles (if needed) */
        [data-tooltip] {
            position: relative;
            cursor: help;
        }
        
        [data-tooltip]::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            padding: 0.5rem 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }
        
        [data-tooltip]:hover::before {
            opacity: 1;
        }
        
        /* Skeleton loading animation (for future use) */
        @keyframes skeleton-loading {
            0% {
                background-position: -200px 0;
            }
            100% {
                background-position: calc(200px + 100%) 0;
            }
        }
        
        .skeleton {
            background: linear-gradient(90deg, var(--bg-card) 0px, var(--bg-card-hover) 40px, var(--bg-card) 80px);
            background-size: 200px 100%;
            animation: skeleton-loading 1.5s infinite;
        }