:root {
    /* Light Theme Colors */
    --color-background: #ffffff;
    --color-foreground: #1a1a1a;
    --color-muted: #666666;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-border: #e5e7eb;
    --color-card: #ffffff;
    --color-card-muted: #f3f4f6;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --color-background: #1a1a1a;
    --color-foreground: #ffffff;
    --color-muted: #a3a3a3;
    --color-primary: #60a5fa;
    --color-primary-hover: #3b82f6;
    --color-border: #2d2d2d;
    --color-card: #2d2d2d;
    --color-card-muted: #262626;
    --color-success: #4ade80;
    --color-warning: #fbbf24;
    --color-error: #f87171;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.5;
}

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

/* Header */
.header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #22c55e);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-item {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.menu-item:hover {
    color: var(--color-foreground);
}

.mobile-menu-button {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-white:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(34, 197, 94, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .stats {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr; /* Primeiro card 40% maior */
    gap: 2rem;
    max-width: 900px; /* Aumentar um pouco a largura máxima */
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-card);
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--color-card-muted);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--color-card);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.feature-card i {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.feature-card p {
    color: var(--color-muted);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--color-background);
}

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

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-content p {
    color: var(--color-muted);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    gap: 1rem;
}

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

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

.dashboard-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #22c55e 100%);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

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

.dashboard-features {
    margin-top: 2rem;
}

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

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.status-dot.green { background-color: var(--color-success); }
.status-dot.yellow { background-color: var(--color-warning); }
.status-dot.red { background-color: var(--color-error); }

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-card-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    color: var(--color-muted);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--color-background);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 0 1rem;
}

.testimonials-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    animation: scroll-testimonials 30s linear infinite !important;
    width: max-content !important;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.testimonial {
    background-color: var(--color-card-muted);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    min-width: calc(33.333% - 1.5rem) !important;
    max-width: calc(33.333% - 1.5rem) !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-muted);
}

.author-name {
    font-weight: 600;
}

.author-role {
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--color-background);
}

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

.pricing-card {
    background: var(--color-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.pricing-card.popular {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.pricing-card .popular-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-period {
    color: var(--color-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-muted);
}

.pricing-feature i {
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-feature.included {
    color: var(--color-foreground);
}

.pricing-cta {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.75rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-brand p {
    color: #9ca3af;
    margin: 1.5rem 0;
}

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

.social-link {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 100;
    padding: 1rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--color-card);
    border-radius: 1rem;
    max-width: 48rem;
    width: 100%;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-muted);
}

.modal-body {
    padding: 1rem;
}

.video-container {
    aspect-ratio: 16/9;
    background-color: var(--color-card-muted);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    padding: 0.5rem;
}

.theme-toggle:hover {
    color: var(--color-foreground);
}

[data-theme="light"] .theme-toggle .lucide-moon {
    display: inline-block;
}

[data-theme="light"] .theme-toggle .lucide-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .lucide-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .lucide-sun {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial {
        min-width: calc(50% - 1rem);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-menu {
        display: none;
        padding: 1rem 0;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu .menu-item {
        display: block;
        padding: 0.75rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial {
        min-width: calc(90% - 1rem);
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

/* Pricing Hero */
.pricing-hero {
    text-align: center;
    padding: 4rem 0;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--color-card-muted);
}

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

.faq-item {
    background-color: var(--color-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

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

/* Pricing Preview Section */
.pricing-preview {
    padding: 4rem 0;
    background: var(--color-background);
}

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

.pricing-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-muted);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
}

.period {
    font-size: 1rem;
    color: var(--color-muted);
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--color-success);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--color-card-muted);
    border-radius: 1rem;
}

.pricing-note p {
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* Button variants for pricing */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

/* Dark theme table fixes for pricing page */
[data-theme="dark"] table {
    background-color: var(--color-card) !important;
    color: var(--color-foreground) !important;
}

[data-theme="dark"] table thead {
    background: linear-gradient(135deg, #2563eb, #059669) !important;
}

[data-theme="dark"] table tbody tr {
    background-color: var(--color-card) !important;
}

[data-theme="dark"] table tbody tr[style*="background: #f9fafb"] {
    background-color: var(--color-card-muted) !important;
}

[data-theme="dark"] table td,
[data-theme="dark"] table th {
    color: var(--color-foreground) !important;
    border-color: var(--color-border) !important;
}

/* Dark theme pricing cards inline styles fix */
[data-theme="dark"] .pricing-card[style*="background: white"] {
    background: var(--color-card) !important;
}

[data-theme="dark"] .pricing-card[style*="background: white"] * {
    color: var(--color-foreground) !important;
}

/* Dark theme Enterprise plan gradient fix */
[data-theme="dark"] .pricing-card[style*="background: linear-gradient(135deg, #f9fafb"] {
    background: var(--color-card) !important;
}

/* Responsive adjustments for pricing preview */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
} 