:root {
    /* Light Theme (default) */
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary: #00cec9;
    --dark: #2d3436;
    --light: #f5f6fa;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --gray: #636e72;
    --gray-light: #dfe6e9;

    --bg: #0b0f14;
    --panel: #0f1720;
    --muted: #9aa6b2;
    --text: #e6eef6;
    --accent: #7c5cff;
    --accent-2: #22c55e;
    --card-bg: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    --shadow: 0 6px 20px rgba(2,6,23,0.6);
    --glass: rgba(255,255,255,0.02);
    --border: rgba(255,255,255,0.04);
    --btn-bg: linear-gradient(90deg,var(--accent), #4c9bff);
    --success: #27ae60;
    --danger: #e74c3c;
    
    /* Base colors */
    --bg-color: var(--light);
    --text-color: var(--dark);
    --card-bg: white;
    --border-color: var(--gray-light);
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --feature-card-bg: white;
    --testimonial-bg: var(--light);
}


@media (prefers-color-scheme: dark) {
    :root {
        /* Dark Theme */
        --bg-color: #1e2026;
        --text-color: #f8f9fa;
        --card-bg: #23262d;
        --border-color: #2a2e35;
        --header-bg: rgba(26, 28, 34, 0.95);
        --header-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        --feature-card-bg: #23262d;
        --testimonial-bg: #2a2e35;

        /* Component-specific dark mode adjustments */
        --light: #1a1c22;
        --gray-light: #2a2e35;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Update all components to use new variables */
header.scrolled {
    background-color: var(--header-bg);
    box-shadow: var(--header-shadow);
}

.feature-card {
    background-color: var(--feature-card-bg);
}

.testimonial-card {
    background-color: var(--testimonial-bg);
}

/* Dark mode toggle button (optional) */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

/* Keep all your existing styles below this line */
/* They will automatically adapt to the color variables */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #00b5b2;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 206, 201, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    /*background-color: rgba(255, 255, 255, 0.95);*/
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-text h3 {
    font-size: 24px;
    color: var(--dark);
}

.stat-text p {
    font-size: 14px;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    position: relative;
}

.dashboard-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .dashboard-img {
    transform: perspective(1000px) rotateY(-5deg);
}

.pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="2" fill="%236c5ce7" fill-opacity="0.2"/></svg>');
    z-index: -1;
}

.pattern-1 {
    top: -50px;
    left: -50px;
}

.pattern-2 {
    bottom: -50px;
    right: -50px;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--light);
}

.partners-title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    /*background-color: white;*/
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    gap: 5px;
    transition: all 0.3s ease;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Performance Section */
.performance {
    padding: 100px 0;
    background-color: white;
}

.performance-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.performance-image {
    flex: 1;
    position: relative;
}

.performance-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.performance-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.performance-text {
    flex: 1;
}

.performance-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.performance-title span {
    color: var(--primary);
}

.performance-desc {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.performance-stat h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.performance-stat p {
    color: var(--gray);
}

/* Strategies Section */
.strategies {
    padding: 100px 0;
    background-color: var(--light);
}

.strategies-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.strategy-tab {
    padding: 12px 24px;
    background-color: var(--primary);
    color:white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strategy-tab.active {
    background-color: white;
    color: black;
}

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

.strategy-card {
    background-color: dark;
    color:white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.strategy-image {
    height: 200px;
    overflow: hidden;
}

.strategy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.strategy-card:hover .strategy-img {
    transform: scale(1.1);
}

.strategy-content {
    padding: 30px;
}

.strategy-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.strategy-desc {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.strategy-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--warning);
}

.strategy-btn {
    padding: 8px 16px;
    background-color: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.strategy-btn:hover {
    background-color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 40px;
    margin: 0 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-quote::before {
    margin-right: 5px;
}

.testimonial-quote::after {
    margin-left: 5px;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--gray);
    font-size: 14px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots .slick-active button {
    background-color: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--light);
}

.pricing-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-switch-label {
    font-weight: 600;
    color: var(--gray);
}

.pricing-switch-btn {
    position: relative;
    width: 60px;
    height: 32px;
    background-color: var(--gray-light);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-switch-btn.active {
    background-color: var(--primary);
}

.pricing-switch-btn::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-switch-btn.active::before {
    left: 32px;
}

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

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

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

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-desc {
    color: var(--gray);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pricing-feature i {
    color: var(--success);
}

.pricing-feature.disabled i {
    color: var(--gray-light);
}

.pricing-feature.disabled span {
    color: var(--gray-light);
    text-decoration: line-through;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: white;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(108, 92, 231, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo-text span {
    color: white;
}

.footer-about {
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: white;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.footer-newsletter-btn {
    padding: 0 20px;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
    background-color: #00b5b2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .performance-title {
        font-size: 36px;
    }

    .performance-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .hero {
        padding: 150px 0 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    .performance-content {
        flex-direction: column;
        gap: 40px;
    }

    .performance-badge {
        top: -10px;
        right: -10px;
    }

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

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

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

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

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .footer-newsletter-btn {
        border-radius: 8px;
        padding: 12px;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
}


/* Small helper styles for the live chart area to make it fit nicely */
.live-chart-wrapper {
    margin: 36px 0;
    background: var(--card-bg, #fff);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,0.06));
}
.chart-controls {
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:12px;
    flex-wrap:wrap;
}
.chart-controls select, .chart-controls input {
    padding:8px 10px;
    border-radius:8px;
    border:1px solid #e6e6e6;
    font-size:14px;
}
.chart-row {
    display:flex;
    gap:20px;
    align-items:flex-start;
}
#strategyChart, #pnlChart {
    width:100%;
    height: 460px;
}
#pnlChart {
    height: 140px;
    margin-top: 12px;
}
.legend {
    font-size:13px;
    color:var(--muted,#666);
    margin-top:10px;
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
}
.legend .item {
    display:flex;
    gap:8px;
    align-items:center;
}
.marker-box {
    width:12px;
    height:12px;
    display:inline-block;
    border-radius:3px;
}
.buy-box {
    background: #27ae60;
}
.sell-box {
    background: #e74c3c;
}

/* Force body dark background and text */
html, body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Update common site components to use dark variables without changing layout */
header#header {
    background: transparent;
}
.navbar .logo-text {
    color: var(--text);
}
.hero {
    padding: 124px 0;
    background: linear-gradient(180deg, rgba(124,92,255,0.06), rgba(0,0,0,0));
}
.hero-title {
    color: var(--text);
}
.hero-subtitle {
    color: var(--muted);
}
.btn-primary {
    background: var(--btn-bg);
    color: #fff;
    border: 0;
    box-shadow: var(--shadow);
}
.btn-outline {
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border:1px solid var(--border);
}

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

section {
    padding: 56px 0;
}

.partners {
    padding: 28px 0;
}
.partners-title {
    color: var(--muted);
    text-align:center;
    margin-bottom:16px;
}
.partners-grid {
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.partner-logo {
    width: 120px;
    height: 48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    border-radius:8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.features, .performance, .strategies, .pricing, .faq {
    background: transparent;
}
.feature-card, .pricing-card, .strategy-card {
    background: var(--panel);
    border-radius:12px;
    padding:20px;
    box-shadow: var(--shadow);
    border:1px solid var(--border);
    color:var(--text);
}
.feature-desc, .section-subtitle, .performance-desc, .strategy-desc, .pricing-desc {
    color: var(--muted);
}

/* Testimonials Swiper overrides for dark */
.testimonial-slider .swiper-slide {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color:var(--text);
}
.testimonial-slider img {
    border: 2px solid rgba(255,255,255,0.04);
}

/* Footer */
footer {
    background: #071019;
    color: var(--muted);
    padding: 40px 0;
}
.footer-logo-text {
    color: var(--text);
}

/* Small helpers */
.stat-item .stat-text h3 {
    color: var(--text);
}
.pricing-grid {
    display:flex;
    gap:18px;
    align-items:flex-start;
    justify-content:center;
    flex-wrap:wrap;
}
.pricing-card {
    width: 320px;
}
@media (max-width:768px) {
    .pricing-card {
        width: 100%;
    }
    .partners-grid {
        gap:12px;
    }
}