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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    border-left-color: #34795;
}

.nav-link {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #34795;
}

.cta-button {
    background: linear-gradient(135deg, #34795, #2d6b7a);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    background-color: rgba(244, 168, 37, 0.15);
    border: 1px solid rgba(244, 168, 37, 0.3);
}

.hamburger:hover {
    background-color: rgba(244, 168, 37, 0.25);
    border-color: rgba(244, 168, 37, 0.5);
}

.bar {
    width: 25px;
    height: 3px;
    background: #F4A825 !important;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #0E172A;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 3rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #34795;
}

.btn-outline {
    background: transparent;
    color: #34795;
    border: 2px solid #34795;
}

.btn-outline:hover {
    background: #34795;
    color: white;
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border-color: #10b981 !important;
    color: white !important;
}

.btn-green:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: #059669 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3) !important;
}

.btn-gray {
    background: rgba(148, 163, 184, 0.1) !important;
    border-color: rgba(148, 163, 184, 0.3) !important;
    color: #cbd5e1 !important;
}

.btn-gray:hover {
    background: rgba(148, 163, 184, 0.2) !important;
    border-color: rgba(148, 163, 184, 0.5) !important;
    color: #f8fafc !important;
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.2) !important;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Live Trading Dashboard */
.live-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0;
}

.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.2);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.status-dot.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.models-container {
    position: relative;
    overflow: hidden;
}

.models-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.model-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 240px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.model-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.model-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #34795, #F4A825);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.model-info {
    flex: 1;
}

.model-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 0.5rem 0;
}

.model-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.training {
    background: rgba(244, 168, 37, 0.2);
    color: #F4A825;
    border: 1px solid rgba(244, 168, 37, 0.3);
}

.model-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
}

.metric-value.positive {
    color: #10b981;
}

.metric-value.negative {
    color: #ef4444;
}

.model-actions {
    display: flex;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-sm.btn-outline {
    color: #F4A825;
    border: 1px solid #F4A825;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-sm.btn-outline:hover {
    color: #34795;
    background: #34795;
    border-color: #34795;
}

.model-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.model-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.model-nav.prev {
    left: -20px;
}

.model-nav.next {
    right: -20px;
}

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

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.chart-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
}

.chart-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

#performanceChart {
    width: 100% !important;
    height: 300px !important;
    border-radius: 8px;
    display: block;
}

.chart-fallback {
    display: none;
    width: 100%;
    height: 300px;
}

.chart-fallback.show {
    display: block;
}

.chart-svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.chart-tooltip {
    position: absolute;
    background: #1e293b;
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #f8fafc;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
    min-width: 150px;
}

.chart-tooltip.show {
    opacity: 1;
}

.tooltip-date {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tooltip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.tooltip-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.tooltip-label {
    flex: 1;
    color: #94a3b8;
}

.tooltip-value {
    font-weight: 600;
    color: #f8fafc;
}


.metric-change.positive {
    color: #10b981;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0E172A;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34795, #2d6b7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #0f172a;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34795, #2d6b7a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(52, 121, 149, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

.step:hover .step-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 121, 149, 0.4);
    background: linear-gradient(135deg, #F4A825, #e0991f);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.step-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0 80px 0;
    background: #0E172A;
}

    .pricing-container {
        position: relative;
        overflow: hidden;
        margin-top: 3rem;
        padding-top: 2rem;
        width: 100%;
    }

    @media (max-width: 768px) {
        .pricing-container {
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .pricing-container::-webkit-scrollbar {
            display: none;
        }
    }

.pricing-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
    position: relative;
}

@media (max-width: 768px) {
    .pricing-slider {
        gap: 1.5rem;
        padding: 0 2rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-slider::-webkit-scrollbar {
        display: none;
    }
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    min-width: max-content;
    width: max-content;
}

.pricing-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 121, 149, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.pricing-nav:hover {
    background: rgba(52, 121, 149, 1);
    transform: translateY(-50%) scale(1.1);
}

.pricing-nav.prev {
    left: 20px;
}

.pricing-nav.next {
    right: 20px;
}

.pricing-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-card {
    background: #334155;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-width: 300px;
    flex-shrink: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #34795;
    transform: scale(1.05);
    background: #475569;
}

.pricing-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #F4A825;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    pointer-events: none;
}

.pricing-badge i {
    font-size: 0.7rem;
}

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

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #94a3b8;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f8fafc;
}

.period {
    font-size: 1rem;
    color: #94a3b8;
}

.pricing-description {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0f172a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34795, #2d6b7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f8fafc;
}

.contact-details p {
    color: #cbd5e1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    background: #334155;
    color: #f8fafc;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34795;
    background: #475569;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 30px;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* SPY Model Page Specific Styles */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: none;
    padding-right: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spy-model-showcase {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

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

.showcase-header h3 {
    color: #e5e7eb;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.trading-dashboard {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.current-position {
    text-align: right;
}

.position-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.position-value {
    display: block;
    font-size: 0.875rem;
    color: #F4A825;
    font-weight: 600;
}

.market-data {
    margin-bottom: 1.5rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.data-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
}

.data-value.positive {
    color: #10b981;
}

.data-change {
    font-size: 0.75rem;
    color: #64748b;
}

.ai-signals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.signal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F4A825, #34795);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.signal-content {
    flex: 1;
}

.signal-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.signal-status {
    font-size: 0.875rem;
    font-weight: 600;
}

.signal-status.strong {
    color: #10b981;
}

.signal-status.positive {
    color: #F4A825;
}

.signal-status.safe {
    color: #3b82f6;
}

/* Portfolio Positions Styles */
.portfolio-positions {
    margin-bottom: 1.5rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.portfolio-positions::-webkit-scrollbar {
    width: 4px;
}

.portfolio-positions::-webkit-scrollbar-track {
    background: rgba(51, 65, 85, 0.2);
    border-radius: 2px;
}

.portfolio-positions::-webkit-scrollbar-thumb {
    background: rgba(51, 65, 85, 0.6);
    border-radius: 2px;
}

.portfolio-positions::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 65, 85, 0.8);
}

.position-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

.position-row:last-child {
    border-bottom: none;
}

.stock-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stock-symbol {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
}

.stock-price {
    font-size: 0.75rem;
    font-weight: 500;
}

.stock-price.positive {
    color: #10b981;
}

.stock-price.negative {
    color: #ef4444;
}

.position-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.position-size {
    font-size: 0.75rem;
    color: #94a3b8;
}

.position-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.position-change.positive {
    color: #10b981;
}

.position-change.negative {
    color: #ef4444;
}

.section {
    padding: 6rem 0;
}

.section.bg-dark {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    margin-bottom: 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.5);
    min-width: 120px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F4A825;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4A825, #34795);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.model-grid {
    margin-top: 3rem;
}

.strategy-grid {
    margin-top: 3rem;
}

.metrics-grid {
    margin-top: 3rem;
}

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

.benefit-item {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #F4A825;
    box-shadow: 0 10px 30px rgba(244, 168, 37, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4A825, #34795);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.benefit-description {
    color: #94a3b8;
    line-height: 1.6;
}

.performance-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border-left: 4px solid #F4A825;
}

.performance-note p {
    color: #94a3b8;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.performance-note i {
    color: #F4A825;
}

.metric-card.featured {
    border: 2px solid #F4A825;
    background: rgba(244, 168, 37, 0.05);
}

.metric-card.featured .metric-value {
    color: #F4A825;
    font-size: 2.5rem;
}

.cta-content {
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    margin-bottom: 1.5rem;
}

.cta-description {
    margin-bottom: 2.5rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-item:not(.nav-item:last-child):not(.nav-item:nth-last-child(2)) {
        display: none;
    }
    
    /* Show all nav items when mobile menu is active */
    .nav-menu.active .nav-item {
        display: flex !important;
    }
    
    .nav-item:last-child,
    .nav-item:nth-last-child(2) {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(51, 65, 85, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-visual {
        order: 2;
        margin-top: 2rem;
        max-width: 100%;
        overflow: hidden;
    }

    .live-dashboard {
        max-width: 100%;
        padding: 1rem;
        margin: 0 auto;
    }

    .hero-content {
        order: -1;
        padding: 2rem 1rem 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        min-width: 280px;
        max-width: 320px;
        flex-shrink: 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-nav {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .features,
    .how-it-works,
    .pricing,
    .contact {
        padding: 60px 0;
    }

    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }

    .models-container {
        max-width: 100%;
        overflow: hidden;
    }

    .model-card {
        min-width: 280px;
        max-width: 320px;
    }

    .models-slider {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .models-slider::-webkit-scrollbar {
        display: none;
    }
}

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

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

.feature-card,
.pricing-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Risk Banner */
.risk-banner {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    padding: 1rem 0;
    position: relative;
    z-index: 1001;
}

.risk-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.risk-banner-text {
    flex: 1;
}

.risk-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.risk-banner-text a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
}

.risk-banner-text a:hover {
    color: #374151;
}

/* Mobile nav improvements */
.nav-menu.open {
    left: 0;
}

.nav-link.active {
    color: #34795;
    font-weight: 600;
}

/* Model Page Styles */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #34795;
    box-shadow: 0 10px 25px rgba(52, 121, 149, 0.2);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34795, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.model-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.model-description {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.strategy-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.strategy-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.strategy-list {
    list-style: none;
    padding: 0;
}

.strategy-list li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.strategy-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34795;
    font-weight: bold;
}

.strategy-list li:last-child {
    border-bottom: none;
}

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

.metric-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: #34795;
    box-shadow: 0 8px 20px rgba(52, 121, 149, 0.15);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: #34795;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Small hero section */
.small-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.small-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.small-hero .hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Login Form Styles */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.login-form-wrapper {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.login-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.form-input {
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    color: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #34795;
    box-shadow: 0 0 0 3px rgba(52, 121, 149, 0.1);
}

.form-input::placeholder {
    color: #64748b;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox {
    width: 16px;
    height: 16px;
    accent-color: #34795;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.forgot-link {
    font-size: 0.875rem;
    color: #34795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #1e40af;
}

.login-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.signup-text {
    color: #94a3b8;
    font-size: 0.875rem;
}

.signup-link {
    color: #34795;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #1e40af;
}

/* Accordion styles */
.accordion-item {
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.accordion-header {
    background: #334155;
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #475569;
}

.accordion-header h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.1rem;
}

.accordion-header .icon {
    color: #34795;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header .icon {
    transform: rotate(180deg);
}

.accordion-content {
    background: #1e293b;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 1.5rem 0;
}

/* Blog card styles */
.blog-card {
    background: #334155;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #34795, #2d6b7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card-title {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card-excerpt {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #34795;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2d6b7a;
}

/* Performance Page Styles */
.performance-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

/* Performance page specific spacing */
.performance-page .section {
    padding: 4rem 0;
}

.performance-page .section:first-of-type {
    padding-top: 2rem;
}

.performance-page .section:last-of-type {
    padding-bottom: 4rem;
}

/* Additional spacing for performance page elements */
.performance-page .section-header {
    margin-bottom: 3rem;
}

.performance-page .comparison-table-container {
    margin-top: 2rem;
}

.performance-page .model-container {
    margin-top: 3rem;
}

.performance-page .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.performance-page .cta-buttons {
    margin-top: 2rem;
}

.tab-button {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #34795;
    border-bottom-color: #34795;
}

.tab-button:hover {
    color: #e5e7eb;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.model-performance-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.model-performance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.model-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.live {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.performance-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
}

.metric-value.positive {
    color: #22c55e;
}

.metric-value.negative {
    color: #ef4444;
}

.model-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Backtest Section */
.backtest-section {
    margin-top: 2rem;
}

.backtest-header {
    margin-bottom: 2rem;
}

.backtest-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-select {
    background: #1e293b;
    border: 1px solid rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

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

.backtest-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

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

.backtest-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
}

.backtest-period {
    font-size: 0.875rem;
    color: #94a3b8;
    background: rgba(51, 65, 85, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.backtest-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.backtest-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.backtest-actions {
    display: flex;
    gap: 0.75rem;
}

/* Comparison Table */
.comparison-section {
    margin-top: 2rem;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: #334155;
    color: #e5e7eb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
    color: #e5e7eb;
}

.comparison-table tr:hover {
    background: rgba(51, 65, 85, 0.2);
}

.comparison-table .model-name {
    font-weight: 600;
    color: #34795;
}

.comparison-table .positive {
    color: #22c55e;
    font-weight: 600;
}

.comparison-table .negative {
    color: #ef4444;
    font-weight: 600;
}

.comparison-table .btn-outline {
    color: #F4A825;
    border: 1px solid #F4A825;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comparison-table .btn-outline:hover,
.comparison-table .btn-outline:focus,
.comparison-table .btn-outline:active {
    color: #34795;
    background: #34795;
    border-color: #34795;
}

.benchmark-row {
    background: rgba(51, 65, 85, 0.3);
}

.benchmark-label {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Model Cards Slider */
.model-container {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
}

.model-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 1rem;
}

.model-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 121, 149, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 121, 149, 0.3);
}

.model-nav:hover {
    background: #34795;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 121, 149, 0.4);
}

.prevBtn {
    left: 10px;
}

.nextBtn {
    right: 10px;
}

.model-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.model-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(52, 121, 149, 0.9);
}

.model-card {
    background: #334155;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: #34795;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.model-card:hover .model-icon {
    background: #2d6b7a;
}

.model-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.model-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.model-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.model-metrics .metric {
    text-align: center;
}

.model-metrics .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5e7eb;
    display: block;
    margin-bottom: 0.25rem;
}

.model-metrics .metric-value.positive {
    color: #22c55e;
}

.model-metrics .metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Enhanced Charts */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chart-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.chart-placeholder {
    height: 300px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chart-mock {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2rem;
}

.chart-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #34795, #22c55e);
    border-radius: 1px;
    bottom: 20%;
    left: 10%;
    right: 10%;
}

.spy-line {
    background: linear-gradient(90deg, #34795, #22c55e);
    bottom: 25%;
}

.qqq-line {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    bottom: 35%;
}

.bitcoin-line {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    bottom: 45%;
}

.chart-legend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.legend-color {
    width: 12px;
    height: 2px;
    border-radius: 1px;
}

.legend-color.spy {
    background: #34795;
}

.legend-color.qqq {
    background: #3b82f6;
}

.legend-color.bitcoin {
    background: #f59e0b;
}

.scatter-plot {
    position: relative;
    width: 100%;
    height: 100%;
}

.scatter-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}

.spy-point {
    background: #34795;
}

.qqq-point {
    background: #3b82f6;
}

.bitcoin-point {
    background: #f59e0b;
}

.crypto-point {
    background: #8b5cf6;
}

.chart-description {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.875rem;
    text-align: center;
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.document-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.document-icon {
    font-size: 2rem;
    color: #34795;
    min-width: 60px;
    text-align: center;
}

.document-content {
    flex: 1;
}

.document-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.document-description {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.document-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #64748b;
}

.document-actions {
    min-width: 120px;
}

/* Performance Page Responsive */
@media (max-width: 768px) {
    .performance-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        text-align: left;
        border-bottom: none;
        border-left: 2px solid transparent;
    }

    .tab-button.active {
        border-left-color: #34795;
        border-bottom-color: transparent;
    }

    .model-performance-grid {
        grid-template-columns: 1fr;
    }

    .performance-metrics {
        grid-template-columns: 1fr;
    }

    .backtest-results-grid {
        grid-template-columns: 1fr;
    }

    .backtest-metrics {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table-container {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .model-container {
        margin: 2rem -20px 0;
    }

    .model-slider {
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .model-card {
        min-width: 260px;
        max-width: 280px;
        padding: 1.5rem;
    }

    .model-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prevBtn {
        left: 5px;
    }

    .nextBtn {
        right: 5px;
    }

    .model-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Multi-Model Discounts Section */
.discounts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(52, 121, 149, 0.1) 0%, rgba(244, 168, 37, 0.1) 100%);
}

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

.discount-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discount-card.featured {
    border: 2px solid #F4A825;
    background: linear-gradient(135deg, rgba(244, 168, 37, 0.1) 0%, rgba(52, 121, 149, 0.1) 100%);
}

.discount-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F4A825, #e0991f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(244, 168, 37, 0.3);
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34795, #2d6b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 121, 149, 0.3);
}

.discount-card.featured .discount-icon {
    background: linear-gradient(135deg, #F4A825, #e0991f);
    box-shadow: 0 4px 15px rgba(244, 168, 37, 0.3);
}

.discount-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.discount-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #F4A825;
    margin-bottom: 1rem;
}

.discount-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.discounts-note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discounts-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.discounts-note i {
    color: #34795;
}

/* Responsive Design for Discounts */
@media (max-width: 768px) {
    .discounts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .discount-card {
        padding: 1.5rem;
    }
    
    .discount-amount {
        font-size: 1.5rem;
    }
}

/* Pricing Models Preview */
.pricing-models-preview {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
}

.pricing-models-preview .models-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 1rem;
    margin-bottom: 1rem;
}

.model-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.model-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.model-icon.spy {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.model-icon.qqq {
    background: linear-gradient(135deg, #34795, #2d6b7a);
}

.model-icon.btc {
    background: linear-gradient(135deg, #F4A825, #e0991f);
}

.model-icon.eth {
    background: linear-gradient(135deg, #627eea, #4f46e5);
}

.model-icon.crypto {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.model-icon.sector {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.model-preview-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.models-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Pricing Page Hero Layout */
.pricing .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pricing .hero-content {
    padding-right: 0;
    max-width: none;
}

/* Responsive Design for Pricing Models Preview */
@media (max-width: 768px) {
    .pricing .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-models-preview {
        padding: 1.5rem;
        max-width: none;
    }
    
    .pricing-models-preview .models-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
    
    .model-preview-card {
        padding: 0.75rem;
    }
    
    .model-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .model-preview-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SPY Model Page Responsive Styles */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .spy-model-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .trading-dashboard {
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .current-position {
        text-align: left;
    }
    
    .ai-signals {
        gap: 0.75rem;
    }
    
    .signal-item {
        padding: 0.75rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section.bg-dark {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .strategy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Prediction Dashboard Styles */
.prediction-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
}

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

.showcase-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.prediction-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.prediction-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.prediction-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.prediction-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.prediction-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.prediction-content {
    display: none;
}

.prediction-content.active {
    display: block;
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

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

.asset-symbol {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e5e7eb;
}

.asset-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
}

.asset-change {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.asset-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

.prediction-confidence {
    text-align: right;
}

.confidence-label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.confidence-score {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.confidence-score.high {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.confidence-score.medium {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.confidence-score.low {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.prediction-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.prediction-direction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.prediction-direction i {
    color: #10b981;
    font-size: 1.1rem;
}

.direction-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.prediction-target,
.prediction-timeframe {
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    text-align: center;
}

.target-label,
.timeframe-label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.target-value,
.timeframe-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* Responsive Prediction Dashboard */
@media (max-width: 1024px) {
    .prediction-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .prediction-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .prediction-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .prediction-dashboard {
        padding: 1rem;
    }
    
    .prediction-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .prediction-confidence {
        text-align: left;
    }
    
    .prediction-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .prediction-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .prediction-dashboard {
        padding: 0.75rem;
    }
    
    .prediction-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .prediction-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .prediction-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .prediction-confidence {
        text-align: left;
    }
    
    .prediction-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Technical Analysis Dashboard Styles */
.technical-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.technical-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.analysis-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.analysis-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.analysis-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.analysis-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.analysis-content {
    display: none;
}

.analysis-content.active {
    display: block;
}

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

.indicator-card {
    background: rgba(51, 65, 85, 0.2);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

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

.indicator-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.indicator-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
}

.indicator-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.indicator-status.bullish {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.indicator-status.bearish {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.indicator-status.neutral {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.indicator-signal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.indicator-signal i {
    font-size: 0.9rem;
}

.indicator-signal i.fa-arrow-up {
    color: #10b981;
}

.indicator-signal i.fa-arrow-down {
    color: #ef4444;
}

.indicator-signal i.fa-minus {
    color: #f59e0b;
}

/* Responsive Technical Analysis Dashboard */
@media (max-width: 1024px) {
    .technical-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .indicator-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .technical-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .technical-dashboard {
        padding: 1rem;
    }
    
    .indicator-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .indicator-card {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .technical-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .technical-dashboard {
        padding: 0.75rem;
    }
    
    .analysis-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .analysis-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .indicator-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .indicator-card {
        padding: 0.5rem;
    }
    
    .indicator-header {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }
}

/* Sentiment Analysis Dashboard Styles */
.sentiment-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.sentiment-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.sentiment-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.sentiment-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.sentiment-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.sentiment-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.sentiment-content {
    display: none;
}

.sentiment-content.active {
    display: block;
}

.sentiment-meter {
    margin-bottom: 1.5rem;
}

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

.meter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.meter-score {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.meter-score.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

.meter-bar {
    height: 8px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.meter-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.meter-fill.positive {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.meter-fill.negative {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.meter-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.meter-status i {
    font-size: 1rem;
}

.meter-status i.fa-arrow-up {
    color: #10b981;
}

.meter-status i.fa-arrow-down {
    color: #ef4444;
}

.sentiment-breakdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.breakdown-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.breakdown-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breakdown-value.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.news-item.positive {
    border-left: 3px solid #10b981;
}

.news-item.negative {
    border-left: 3px solid #ef4444;
}

.news-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-item.positive .news-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.news-item.negative .news-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.news-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-headline {
    font-size: 0.8rem;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1.3;
}

.news-sentiment {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-item.positive .news-sentiment {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.news-item.negative .news-sentiment {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.social-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.metric-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.metric-value.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

/* Responsive Sentiment Analysis Dashboard */
@media (max-width: 1024px) {
    .sentiment-showcase {
        max-width: none;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sentiment-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .sentiment-dashboard {
        padding: 1rem;
    }
    
    .news-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .metric-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .sentiment-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .sentiment-dashboard {
        padding: 0.75rem;
    }
    
    .sentiment-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .sentiment-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .metric-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .metric-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

/* News & FGI Dashboard Styles */
.news-fgi-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.news-fgi-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.fgi-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.fgi-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.fgi-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.fgi-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.fgi-content {
    display: none;
}

.fgi-content.active {
    display: block;
}

.fgi-meter {
    margin-bottom: 1.5rem;
}

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

.fgi-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.fgi-score {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.fgi-score.greed {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.fgi-score.fear {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fgi-score.neutral {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.fgi-bar {
    height: 12px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.fgi-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.fgi-fill.greed {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.fgi-fill.fear {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.fgi-fill.neutral {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.fgi-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.fgi-status i {
    font-size: 1.1rem;
}

.fgi-status i.fa-chart-line {
    color: #10b981;
}

.fgi-status i.fa-chart-line-down {
    color: #ef4444;
}

.fgi-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.breakdown-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.breakdown-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breakdown-value.greed {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.breakdown-value.fear {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.breakdown-value.neutral {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.news-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.news-item.breaking {
    border-left: 3px solid #ef4444;
}

.news-item.important {
    border-left: 3px solid #f59e0b;
}

.news-item.warning {
    border-left: 3px solid #8b5cf6;
}

.news-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-item.breaking .news-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.news-item.important .news-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.news-item.warning .news-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.news-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-headline {
    font-size: 0.8rem;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.news-time {
    font-size: 0.7rem;
    color: #94a3b8;
}

.news-impact {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-impact.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

.alerts-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.alert-item.high {
    border-left: 3px solid #ef4444;
}

.alert-item.medium {
    border-left: 3px solid #f59e0b;
}

.alert-item.low {
    border-left: 3px solid #10b981;
}

.alert-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.alert-item.high .alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.alert-item.medium .alert-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.alert-item.low .alert-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.alert-description {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.alert-time {
    font-size: 0.7rem;
    color: #64748b;
}

/* Responsive News & FGI Dashboard */
@media (max-width: 1024px) {
    .news-fgi-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .fgi-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-fgi-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .news-fgi-dashboard {
        padding: 1rem;
    }
    
    .news-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .fgi-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-fgi-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .news-fgi-dashboard {
        padding: 0.75rem;
    }
    
    .fgi-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .fgi-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .alert-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .fgi-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Volatility Analysis Dashboard Styles */
.volatility-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.volatility-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.volatility-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.volatility-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.volatility-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.volatility-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.volatility-content {
    display: none;
}

.volatility-content.active {
    display: block;
}

.vix-meter {
    margin-bottom: 1.5rem;
}

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

.vix-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.vix-score {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.vix-score.low {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.vix-score.moderate {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.vix-score.high {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.vix-bar {
    height: 12px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.vix-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.vix-fill.low {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.vix-fill.moderate {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.vix-fill.high {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.vix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.vix-status i {
    font-size: 1.1rem;
}

.vix-status i.fa-chart-line {
    color: #10b981;
}

.vix-status i.fa-chart-line-down {
    color: #ef4444;
}

.vix-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.regime-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.regime-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.regime-item.low {
    border-left: 3px solid #10b981;
}

.regime-item.moderate {
    border-left: 3px solid #f59e0b;
}

.regime-item.high {
    border-left: 3px solid #ef4444;
}

.regime-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.regime-item.low .regime-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.regime-item.moderate .regime-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.regime-item.high .regime-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.regime-content {
    flex: 1;
}

.regime-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.regime-probability {
    font-size: 0.9rem;
    font-weight: 700;
    color: #34795;
    margin-bottom: 0.25rem;
}

.regime-duration {
    font-size: 0.7rem;
    color: #94a3b8;
}

.risk-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.risk-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    flex-shrink: 0;
}

.risk-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.risk-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.risk-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.risk-value.optimal {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.risk-value.warning {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.risk-value.danger {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Responsive Volatility Analysis Dashboard */
@media (max-width: 1024px) {
    .volatility-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .vix-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .volatility-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .volatility-dashboard {
        padding: 1rem;
    }
    
    .risk-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .vix-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .volatility-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .volatility-dashboard {
        padding: 0.75rem;
    }
    
    .volatility-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .volatility-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .regime-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .risk-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .risk-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .vix-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Fade Detection Dashboard Styles */
.fade-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.fade-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.fade-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.fade-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.fade-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.fade-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.fade-content {
    display: none;
}

.fade-content.active {
    display: block;
}

.signal-meter {
    margin-bottom: 1.5rem;
}

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

.signal-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.signal-score {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.signal-score.low {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.signal-score.moderate {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.signal-score.high {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.signal-bar {
    height: 12px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.signal-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.signal-fill.low {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.signal-fill.moderate {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.signal-fill.high {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.signal-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.signal-status i {
    font-size: 1.1rem;
}

.signal-status i.fa-exclamation-triangle {
    color: #f59e0b;
}

.signal-status i.fa-shield-alt {
    color: #10b981;
}

.signal-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.momentum-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.momentum-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.momentum-item.bullish {
    border-left: 3px solid #10b981;
}

.momentum-item.neutral {
    border-left: 3px solid #f59e0b;
}

.momentum-item.bearish {
    border-left: 3px solid #ef4444;
}

.momentum-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.momentum-item.bullish .momentum-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.momentum-item.neutral .momentum-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.momentum-item.bearish .momentum-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.momentum-content {
    flex: 1;
}

.momentum-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.momentum-strength {
    font-size: 0.9rem;
    font-weight: 700;
    color: #34795;
    margin-bottom: 0.25rem;
}

.momentum-time {
    font-size: 0.7rem;
    color: #94a3b8;
}

.protection-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.protection-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    flex-shrink: 0;
}

.protection-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.protection-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.protection-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.protection-value.reduced {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.protection-value.warning {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.protection-value.optimal {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Responsive Fade Detection Dashboard */
@media (max-width: 1024px) {
    .fade-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fade-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .fade-dashboard {
        padding: 1rem;
    }
    
    .protection-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fade-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .fade-dashboard {
        padding: 0.75rem;
    }
    
    .fade-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .fade-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .momentum-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .protection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .protection-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Momentum Trading Dashboard Styles */
.momentum-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.momentum-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.momentum-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.momentum-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.momentum-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.momentum-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.momentum-content {
    display: none;
}

.momentum-content.active {
    display: block;
}

.signal-score.strong {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.signal-fill.strong {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.signal-status i.fa-rocket {
    color: #10b981;
}

.breakdown-value.strong {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.breakdown-value.moderate {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.trend-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.trend-item.bullish {
    border-left: 3px solid #10b981;
}

.trend-item.bearish {
    border-left: 3px solid #ef4444;
}

.trend-item.neutral {
    border-left: 3px solid #f59e0b;
}

.trend-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.trend-item.bullish .trend-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.trend-item.bearish .trend-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.trend-item.neutral .trend-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.trend-content {
    flex: 1;
}

.trend-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.trend-strength {
    font-size: 0.9rem;
    font-weight: 700;
    color: #34795;
    margin-bottom: 0.25rem;
}

.trend-duration {
    font-size: 0.7rem;
    color: #94a3b8;
}

.position-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.position-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.position-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    flex-shrink: 0;
}

.position-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.position-value {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.position-value.optimal {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.position-value.profit {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Responsive Momentum Trading Dashboard */
@media (max-width: 1024px) {
    .momentum-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .momentum-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .momentum-dashboard {
        padding: 1rem;
    }
    
    .position-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .momentum-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .momentum-dashboard {
        padding: 0.75rem;
    }
    
    .momentum-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .momentum-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .trend-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .position-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .position-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .signal-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Trendline Management Dashboard Styles */
.trendline-showcase {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.trendline-dashboard {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.2);
}

.trendline-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding-bottom: 1rem;
}

.trendline-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.trendline-tab.active {
    background: rgba(52, 121, 149, 0.2);
    color: #34795;
    border: 1px solid rgba(52, 121, 149, 0.3);
}

.trendline-tab:hover:not(.active) {
    background: rgba(51, 65, 85, 0.3);
    color: #e5e7eb;
}

.trendline-content {
    display: none;
}

.trendline-content.active {
    display: block;
}

.trendline-meter {
    margin-bottom: 1.5rem;
}

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

.trendline-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

.trendline-score {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.trendline-score.strong {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.trendline-score.moderate {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.trendline-score.weak {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.trendline-bar {
    height: 12px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.trendline-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.trendline-fill.strong {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.trendline-fill.moderate {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.trendline-fill.weak {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.trendline-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.trendline-status i {
    font-size: 1.1rem;
}

.trendline-status i.fa-chart-line {
    color: #10b981;
}

.trendline-status i.fa-chart-line-down {
    color: #ef4444;
}

.trendline-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.signal-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.signal-item.bullish {
    border-left: 3px solid #10b981;
}

.signal-item.bearish {
    border-left: 3px solid #ef4444;
}

.signal-item.neutral {
    border-left: 3px solid #f59e0b;
}

.signal-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.signal-item.bullish .signal-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.signal-item.bearish .signal-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.signal-item.neutral .signal-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.signal-content {
    flex: 1;
}

.signal-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.signal-strength {
    font-size: 0.9rem;
    font-weight: 700;
    color: #34795;
    margin-bottom: 0.25rem;
}

.signal-time {
    font-size: 0.7rem;
    color: #94a3b8;
}

.level-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.level-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(51, 65, 85, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.level-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(52, 121, 149, 0.1);
    color: #34795;
    flex-shrink: 0;
}

.level-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.level-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.level-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(51, 65, 85, 0.3);
}

/* Responsive Trendline Management Dashboard */
@media (max-width: 1024px) {
    .trendline-showcase {
        max-width: none;
        padding: 1.5rem;
    }
    
    .trendline-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trendline-showcase {
        max-width: none;
        padding: 1rem;
    }
    
    .trendline-dashboard {
        padding: 1rem;
    }
    
    .level-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .trendline-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trendline-showcase {
        max-width: none;
        padding: 0.75rem;
    }
    
    .trendline-dashboard {
        padding: 0.75rem;
    }
    
    .trendline-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .trendline-tab {
        padding: 0.5rem;
        text-align: center;
    }
    
    .signal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .level-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .level-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .trendline-breakdown {
        grid-template-columns: 1fr;
    }
}

/* How It Works Page Styles */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(51, 65, 85, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

/* Steps Accordion Styles */
.steps-accordion {
    margin-top: 2rem;
}

.steps-accordion .accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.steps-accordion .accordion-item.active {
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    margin-bottom: 2rem;
}

.steps-accordion .accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: rgba(51, 65, 85, 0.05);
    border: 1px solid rgba(51, 65, 85, 0.1);
}

.steps-accordion .accordion-header:hover {
    background: rgba(51, 65, 85, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.steps-accordion .accordion-header-content {
    flex: 1;
}

.steps-accordion .step-summary {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.steps-accordion .accordion-arrow {
    font-size: 1rem;
    color: #10b981;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.steps-accordion .accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.steps-accordion .accordion-content {
    display: none;
    background: rgba(51, 65, 85, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

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

.flow-step {
    text-align: center;
    flex: 1;
}

.flow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.flow-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #10b981;
    margin: 0 1rem;
}

.step-features {
    list-style: none;
    margin-top: 1rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.step-features i {
    color: #10b981;
    width: 16px;
}

/* Timeline Styles */
.process-timeline {
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #059669);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 4px solid #0f172a;
}

.timeline-content {
    background: rgba(51, 65, 85, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Models Grid Styles */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: rgba(51, 65, 85, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.model-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.model-icon.spy {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.model-icon.qqq {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.model-icon.btc {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.model-icon.eth {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.model-icon.crypto {
    background: linear-gradient(135deg, #10b981, #059669);
}

.model-icon.sector {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.model-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.model-description {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-features {
        justify-content: center;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #10b981;
}

.legal-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e5e7eb;
    margin: 1.5rem 0 1rem 0;
}

.legal-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: '•';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-list li strong {
    color: #f8fafc;
    font-weight: 600;
}

.legal-content a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.hero-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.meta-item i {
    color: #10b981;
}

.contact-info {
    background: rgba(51, 65, 85, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

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

.contact-item i {
    color: #10b981;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #10b981;
    text-decoration: none;
}

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

/* Risk Warning Box Styles */
.risk-warning-box {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.risk-warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.warning-header i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.warning-header h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.risk-warning-box p {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-weight: 500;
}

.risk-warning-box .legal-list {
    color: #f8fafc;
    margin-bottom: 0;
}

.risk-warning-box .legal-list li {
    color: #f8fafc;
    font-weight: 500;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(51, 65, 85, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.cookie-table th {
    background: rgba(16, 185, 129, 0.2);
    color: #f8fafc;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #10b981;
}

.cookie-table td {
    color: #cbd5e1;
    padding: 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    vertical-align: top;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: rgba(51, 65, 85, 0.2);
}

.cookie-table th:first-child,
.cookie-table td:first-child {
    font-weight: 600;
    color: #f8fafc;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .risk-warning-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .warning-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* About Page Styles */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.mission-card {
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.mission-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-section {
    background: rgba(51, 65, 85, 0.05);
}

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

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 2rem;
}

.story-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-visual {
    background: rgba(51, 65, 85, 0.1);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #059669);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 4px solid #1e293b;
}

.timeline-dot.active {
    background: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.timeline-content h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.value-card {
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.value-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.team-section {
    background: rgba(51, 65, 85, 0.05);
}

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

.team-member {
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-link {
    width: 40px;
    height: 40px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.member-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

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

.tech-card {
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.tech-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    color: #94a3b8;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Process Flow Styles */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-icon i {
    font-size: 1.5rem;
    color: white;
}

.flow-step h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-arrow {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Full Width Hero Styles */
.full-width-hero {
    background: #0E172A !important;
    padding: 6rem 0 4rem;
    width: 100%;
}

.full-width-hero .hero-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.full-width-content {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.full-width-content .hero-title {
    font-size: 3.5rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    width: 100% !important;
}

.full-width-content .hero-description {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
}

/* HubSpot Form Styles */
.hubspot-form-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

.hubspot-form-wrapper .hs-form {
    font-family: 'Inter', sans-serif;
}

.hubspot-form-wrapper .hs-form .hs-form-field {
    margin-bottom: 1.5rem;
}

.hubspot-form-wrapper .hs-form .hs-form-field label {
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.hubspot-form-wrapper .hs-form .hs-form-field input,
.hubspot-form-wrapper .hs-form .hs-form-field select,
.hubspot-form-wrapper .hs-form .hs-form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 8px;
    background: rgba(51, 65, 85, 0.1);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hubspot-form-wrapper .hs-form .hs-form-field input:focus,
.hubspot-form-wrapper .hs-form .hs-form-field select:focus,
.hubspot-form-wrapper .hs-form .hs-form-field textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.hubspot-form-wrapper .hs-form .hs-form-field input::placeholder,
.hubspot-form-wrapper .hs-form .hs-form-field textarea::placeholder {
    color: #94a3b8;
}

.hubspot-form-wrapper .hs-form .hs-submit {
    margin-top: 1.5rem;
}

.hubspot-form-wrapper .hs-form .hs-submit input[type="submit"] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.hubspot-form-wrapper .hs-form .hs-submit input[type="submit"]:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hubspot-form-wrapper .hs-form .hs-error-msgs {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.hubspot-form-wrapper .hs-form .hs-form-required {
    color: #ef4444;
}

.contact-form-container {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    background: #0E172A !important;
    position: relative;
    z-index: 3;
}

.contact-form-container .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.contact-form-container .section-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Specific Styles */
body.contact-page {
    background: #0E172A !important;
}

body.contact-page .main-content {
    background: #0E172A !important;
}

/* Contact Section Layout */
.contact {
    padding: 8rem 0 4rem;
    background: #0E172A !important;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    position: relative;
    z-index: 2;
}

/* FAQ Page Improvements */
.small-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
}

.small-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.small-hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.meta-item i {
    color: #10b981;
}

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

.faq-container .accordion-item {
    margin-bottom: 1.5rem;
    background: rgba(51, 65, 85, 0.1);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-container .accordion-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.faq-container .accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-container .accordion-header h3 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-container .accordion-arrow {
    color: #10b981;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-container .accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.faq-container .accordion-content {
    padding: 0 2rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-container .accordion-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cta-section {
    background: rgba(51, 65, 85, 0.1);
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

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

.cta-title {
    color: #f8fafc;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Responsive About Page */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .mission-grid,
    .values-grid,
    .team-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
    
    .timeline-dot {
        left: 6px;
    }
    
    .small-hero .hero-title {
        font-size: 2rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-container .accordion-header {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-container .accordion-header h3 {
        font-size: 1rem;
    }
    
    .faq-container .accordion-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .full-width-content .hero-title {
        font-size: 2.5rem;
    }
    
    .full-width-content .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}
