/* =========================================
   SUBVENTUM LANDING PAGE - CSS
   ========================================= */

/* =========================================
   1. VARIABLES & ROOT
   ========================================= */
:root {
    /* --- Brand Colors (Professional Blue) --- */
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-soft: rgba(37, 99, 235, 0.1);
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);

    /* --- Light Mode (Default) --- */
    --bg-body: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #F1F5F9;
    --bg-sidebar: #0B1120;

    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-on-dark: #F1F5F9;
    --text-on-primary: #FFFFFF;

    --border-subtle: #E2E8F0;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-float: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    /* --- Accent Colors --- */
    --accent-green: #10B981;
    --accent-yellow: #F59E0B;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
}

/* =========================================
   2. DARK MODE OVERRIDES
   ========================================= */
html[data-theme="dark"] {
    --bg-body: #0B1120;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --bg-surface-alt: rgba(15, 23, 42, 0.8);
    --bg-sidebar: #020617;

    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-on-dark: #F1F5F9;

    --border-subtle: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-float: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.25);
}

html[data-theme="dark"] body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
}

/* =========================================
   3. BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* =========================================
   4. NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    border-bottom: 1px solid var(--border-subtle);
}

html[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.nav-logo img {
    height: 36px;
}

.nav-logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-surface-alt);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
    border: 1px solid var(--border-subtle);
}

.theme-toggle:hover {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: var(--bg-surface-alt);
    color: var(--text-main);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-on-primary);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--text-on-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float), var(--shadow-glow);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-dashboard:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero-dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-surface-alt);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-dashboard-dot:nth-child(1) {
    background: #EF4444;
}

.hero-dashboard-dot:nth-child(2) {
    background: #F59E0B;
}

.hero-dashboard-dot:nth-child(3) {
    background: #10B981;
}

.hero-dashboard-content {
    padding: 24px;
    min-height: 400px;
}

.dashboard-widget {
    background: var(--bg-surface-alt);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.dashboard-widget-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-widget-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.dashboard-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.progress-bar {
    height: 8px;
    background: var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

/* =========================================
   6. FEATURES SECTION
   ========================================= */
.features {
    padding: 120px 0;
    background: var(--bg-surface);
}

html[data-theme="dark"] .features {
    background: var(--bg-surface-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

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

.feature-card {
    background: var(--bg-body);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

html[data-theme="dark"] .feature-card {
    background: var(--bg-surface);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.feature-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.feature-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   7. TARGET GROUPS SECTION
   ========================================= */
.target-groups {
    padding: 120px 0;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.target-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.target-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    background: var(--primary-soft);
    color: var(--primary);
}

.target-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.target-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.target-features {
    text-align: left;
    list-style: none;
}

.target-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
}

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

.target-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================
   8. PRICING SECTION
   ========================================= */
.pricing {
    padding: 120px 0;
    background: var(--bg-surface);
}

html[data-theme="dark"] .pricing {
    background: var(--bg-surface-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

html[data-theme="dark"] .pricing-card {
    background: var(--bg-surface);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-main);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
}

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

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* =========================================
   9. CTA SECTION
   ========================================= */
.cta {
    padding: 120px 0;
    text-align: center;
}

.cta-box {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

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

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    color: var(--primary);
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-sidebar);
    color: var(--text-on-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .nav-logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

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

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* =========================================
   11. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-dashboard {
        transform: none;
    }

    .hero-dashboard:hover {
        transform: none;
    }

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

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

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

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

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        flex: 1 1 calc(50% - 12px);
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* =========================================
   12. ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Custom Bootstrap Tooltips
   ========================================= */
.tooltip-inner {
    max-width: 300px !important;
    text-align: left !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    border-radius: 12px !important;
}

/* =========================================
   Comparison Table
   ========================================= */
.comparison-table-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

.comparison-table-container.active {
    max-height: 2000px;
    /* Arbitrary large height for transition */
    opacity: 1;
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
}

.comparison-table thead th {
    border-top: none;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.comparison-table .feature-col {
    text-align: left;
    width: 30%;
}

.comparison-table .plan-col {
    text-align: center;
    width: 23%;
}

.comparison-table .plan-col.featured {
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.03);
}

.comparison-table td:nth-child(3) {
    background-color: rgba(37, 99, 235, 0.03);
}

.comparison-table .table-section-header th {
    background-color: var(--bg-card);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
    border-top: none;
}

.comparison-table .check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Dark mode adjustments for table */
/* Enhanced Dark Mode Styles */
[data-theme="dark"] .comparison-table th,
[data-theme="dark"] .comparison-table td {
    color: var(--text-main) !important;
    border-top: 1px solid var(--border-subtle) !important;
    background-color: var(--bg-surface) !important;
}

[data-theme="dark"] .comparison-table thead th {
    border-bottom: 1px solid var(--border-subtle) !important;
    background-color: var(--bg-surface) !important;
}

[data-theme="dark"] .comparison-table .table-section-header th {
    background-color: var(--bg-surface-alt) !important;
    color: var(--text-muted) !important;
}

[data-theme="dark"] .comparison-table .check-icon {
    color: var(--primary) !important;
}

[data-theme="dark"] .comparison-table tr:hover td,
[data-theme="dark"] .comparison-table tr:hover th {
    background-color: var(--bg-surface-alt) !important;
}

[data-theme="dark"] .comparison-table .plan-col.featured,
[data-theme="dark"] .comparison-table td:nth-child(3) {
    background-color: rgba(37, 99, 235, 0.1) !important;
}

.table-pricing-row td {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    text-align: center;
}

.table-pricing-row .featured {
    color: var(--primary) !important;
}

.table-cta-row td {
    text-align: center;
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
}

.table-cta-row .btn {
    white-space: nowrap;
}