/* landing.css */

:root {
    --landing-primary: var(--primary-color, #4f46e5);
    --landing-primary-hover: var(--primary-hover, #4338ca);
    --landing-primary-light: color-mix(in srgb, var(--primary-color, #4f46e5) 8%, transparent);
    --landing-primary-rgb: 79, 70, 229;
    --landing-bg: var(--bg-color, #f8fafc);
    --landing-bg-secondary: var(--input-bg, #f1f5f9);
    --landing-card-bg: var(--sidebar-bg, rgba(255, 255, 255, 0.85));
    --landing-text: var(--text-color, #0f172a);
    --landing-text-muted: var(--text-secondary, #475569);
    --landing-border: var(--border-color, rgba(226, 232, 240, 0.8));
    --landing-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --landing-shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Base resets & styles */
.landing-body {
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: var(--font-family), sans-serif !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
}

/* Header & Nav */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--landing-border);
    transition: all 0.3s ease;
}
.landing-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.landing-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.landing-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--landing-primary);
    font-weight: 800;
    font-size: 1.5rem;
}
.landing-logo img {
    height: 36px;
    object-fit: contain;
}
.landing-nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.landing-nav-links a {
    text-decoration: none;
    color: var(--landing-text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 6px 0;
    position: relative;
}
.landing-nav-links a:hover, .landing-nav-links a.active {
    color: var(--landing-primary);
}
.landing-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--landing-primary);
    transition: width 0.25s ease;
}
.landing-nav-links a:hover::after, .landing-nav-links a.active::after {
    width: 100%;
}
.landing-nav-auth {
    display: flex;
    align-items: center;
}
.landing-btn-auth {
    background: var(--landing-primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transition: all 0.2s ease !important;
}
.landing-btn-auth:hover {
    background: var(--landing-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}
.landing-btn-auth:active {
    transform: translateY(1px);
}

/* Sections */
.landing-section {
    padding: 100px 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

/* Hero Section */
.landing-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: calc(100vh - 80px);
    padding-top: 120px;
}
.landing-hero-content {
    flex: 1 1 500px;
    text-align: right;
}
.landing-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1e293b;
}
.landing-hero-content h1 span {
    background: linear-gradient(135deg, var(--landing-primary), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-hero-content p {
    font-size: 1.2rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.landing-hero-ctas {
    display: flex;
    gap: 15px;
}
.landing-btn-lg {
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.landing-btn-lg.primary {
    background: var(--landing-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}
.landing-btn-lg.primary:hover {
    background: var(--landing-primary-hover);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
}
.landing-btn-lg.secondary {
    background: white;
    color: var(--landing-primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
}
.landing-btn-lg.secondary:hover {
    background: rgba(79, 70, 229, 0.05);
    transform: translateY(-2px);
}

.landing-hero-preview {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.landing-preview-window {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--landing-border);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--landing-shadow-lg);
    width: 100%;
    max-width: 500px;
    height: 360px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

/* Feature Row Page layout (Alternating Sections) */
.feature-detail-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid var(--landing-border);
}
.feature-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.feature-detail-row.reverse {
    flex-direction: row-reverse;
}
.feature-detail-info {
    flex: 1 1 500px;
}
.feature-detail-visual {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
}
.feature-detail-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.feature-detail-info h2 {
    font-size: 2.2rem;
    font-weight: 850;
    margin-bottom: 1.25rem;
    color: #1e293b;
}
.feature-detail-info p {
    font-size: 1.05rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    flex-direction: unset;
    justify-content: flex-start;
}
.feature-detail-list li i {
    color: #10b981;
    font-size: 1.1rem;
}
.feature-visual-box {
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--landing-shadow-lg);
    width: 100%;
    max-width: 440px;
    text-align: right;
}

/* Landing Section Header */
.landing-section-title {
    text-align: center;
    margin-bottom: 4rem;
	margin-top: 3rem;
}
.landing-section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #1e293b;
}
.landing-section-title p {
    color: var(--landing-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid on Home */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    text-align: right;
    box-shadow: var(--landing-shadow);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-lg);
    border-color: rgba(79, 70, 229, 0.25);
}
.feature-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1e293b;
}
.feature-card p {
    color: var(--landing-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.feature-card-link {
    color: var(--landing-primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.feature-card-link:hover {
    text-decoration: underline;
}

/* About Us Section details */
.landing-about {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.landing-about-content {
    flex: 1 1 500px;
    text-align: right;
}
.landing-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--landing-text-muted);
    margin-bottom: 1.5rem;
}
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 2.5rem;
}
.stat-box {
    text-align: center;
    background: white;
    border: 1px solid var(--landing-border);
    padding: 1.8rem 1.2rem;
    border-radius: 12px;
    flex: 1;
    box-shadow: var(--landing-shadow);
    transition: transform 0.2s ease;
}
.stat-box:hover {
    transform: translateY(-3px);
}
.stat-box h3 {
    font-size: 2.2rem;
    color: var(--landing-primary);
    font-weight: 900;
    margin-bottom: 0.25rem;
}
.stat-box p {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    margin: 0;
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 2rem;
}
.pricing-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 3rem 2.2rem;
    flex: 1 1 320px;
    max-width: 380px;
    text-align: center;
    box-shadow: var(--landing-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card.premium {
    border-color: var(--landing-primary);
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.12);
}
.pricing-card.premium::before {
    content: "محبوب‌ترین پلن";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--landing-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}
.pricing-card:hover {
    box-shadow: var(--landing-shadow-lg);
}
.pricing-name {
    font-size: 1.5rem;
    font-weight: 850;
    margin-bottom: 1rem;
    color: #1e293b;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--landing-primary);
    margin-bottom: 2rem;
}
.pricing-price span {
    font-size: 0.95rem;
    font-weight: normal;
    color: var(--landing-text-muted);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 0.95rem;
    color: var(--landing-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-weight: 600;
}
.pricing-features li i {
    color: var(--landing-primary);
    font-size: 1rem;
}
.pricing-features li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}
.pricing-features li.disabled i {
    color: #cbd5e1;
}

/* FAQ Accordion */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--landing-shadow);
    transition: all 0.2s ease;
}
.faq-question {
    padding: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    text-align: right;
    color: #1e293b;
    font-size: 1.05rem;
}
.faq-question i {
    transition: transform 0.2s ease;
}
.faq-answer {
    padding: 1.4rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    display: none;
    text-align: right;
    border-top: 1px solid var(--landing-border);
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Page Section */
.landing-contact-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.contact-info-panel {
    flex: 1 1 350px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    flex-direction: unset;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.contact-info-details h4 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
}
.contact-info-details p {
    margin: 0;
    font-size: 1rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
}
.contact-form-panel {
    flex: 2 1 500px;
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--landing-shadow-lg);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Modals */
.landing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.landing-modal-card {
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 480px;
    box-shadow: var(--landing-shadow-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.landing-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--landing-text-muted);
    line-height: 1;
}
.landing-modal-close:hover {
    color: var(--landing-text);
}

/* Footer Section */
.landing-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 1.5rem 30px 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.landing-footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
}
.landing-footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.landing-footer-col.brand {
    grid-column: span 2;
}
.landing-footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}
.landing-footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.landing-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.landing-footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.landing-footer-links-list a:hover {
    color: white;
}
.landing-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .landing-hero {
        flex-direction: column-reverse;
        padding-top: 100px;
        text-align: center;
    }
    .landing-hero-content {
        text-align: center;
    }
    .landing-hero-ctas {
        justify-content: center;
    }
    .landing-nav-links {
        display: none;
    }
    .feature-detail-row {
        flex-direction: column !important;
        gap: 40px;
        padding: 50px 0;
    }
    .landing-about {
        flex-direction: column-reverse;
    }
    .about-stats {
        flex-wrap: wrap;
    }
    .landing-footer-grid {
        grid-template-columns: 1fr;
    }
    .landing-footer-col.brand {
        grid-column: span 1;
    }
    .landing-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Showcase Section Styles */
.interactive-showcase {
    background: transparent;
}
.showcase-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.showcase-tabs {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.showcase-tab {
    padding: 20px;
    border-radius: 12px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: row-reverse;
}
.showcase-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--landing-shadow);
    border-color: rgba(79, 70, 229, 0.3);
}
.showcase-tab.active {
    border-color: var(--landing-primary) !important;
    background: white !important;
    box-shadow: var(--landing-shadow-lg) !important;
}
.showcase-tab.active .tab-icon {
    background: var(--landing-primary) !important;
    color: white !important;
}
.tab-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.showcase-previews {
    flex: 1.5 1 500px;
    min-height: 400px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.showcase-preview-card {
    width: 100%;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    box-shadow: var(--landing-shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    box-sizing: border-box;
}
.showcase-preview-card.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Technical Features Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}
.tech-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: right;
    box-shadow: var(--landing-shadow);
    transition: all 0.3s ease;
}
.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--landing-shadow-lg);
    border-color: rgba(79, 70, 229, 0.25);
}
.tech-card-icon {
    font-size: 2rem;
    color: var(--landing-primary);
    margin-bottom: 1.25rem;
    display: inline-block;
}
.tech-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
}
.tech-card p {
    font-size: 0.95rem;
    color: var(--landing-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    box-shadow: var(--landing-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--landing-shadow-lg);
}
.testimonial-quote {
    font-size: 1rem;
    color: var(--landing-text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    position: relative;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
}
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--landing-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.15rem;
    border: 2px solid white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.testimonial-info {
    text-align: right;
}
.testimonial-name {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--landing-text-muted);
    margin: 3px 0 0 0;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
    background: linear-gradient(135deg, var(--landing-primary) 0%, #6366f1 100%);
    border-radius: 30px;
    padding: 5.5rem 3rem;
    text-align: center;
    color: white;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.35);
}
.bottom-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.bottom-cta-banner h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: white !important;
}
.bottom-cta-banner p {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}
.bottom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.bottom-cta-btn {
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.bottom-cta-btn.light {
    background: white;
    color: var(--landing-primary);
}
.bottom-cta-btn.light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
}
.bottom-cta-btn.outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.bottom-cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .showcase-container {
        flex-direction: column;
    }
    .bottom-cta-banner {
        padding: 4rem 1.5rem;
        border-radius: 20px;
        margin: 40px 1rem;
    }
    .bottom-cta-banner h2 {
        font-size: 2rem;
    }
    .bottom-cta-banner p {
        font-size: 1rem;
    }
}

/* ====================================================================
   DARK MODE OVERRIDES FOR LANDING PAGE
   ==================================================================== */
[data-theme="dark"] .landing-body {
    --landing-bg: var(--bg-color, #0b0f17);
    --landing-text: var(--text-color, #f1f5f9);
    --landing-text-muted: var(--text-secondary, #94a3b8);
    --landing-border: var(--border-color, rgba(255, 255, 255, 0.08));
    --landing-card-bg: var(--sidebar-bg, rgba(13, 19, 31, 0.7));
}

[data-theme="dark"] .showcase-tab.active {
    background: var(--sidebar-bg, #10172a) !important;
    border-color: var(--landing-primary) !important;
}
[data-theme="dark"] .tech-card h4,
[data-theme="dark"] .testimonial-name {
    color: var(--text-color, #f1f5f9) !important;
}
[data-theme="dark"] .testimonial-avatar {
    border-color: #0f172a !important;
}

[data-theme="dark"] .landing-header {
    background: rgba(11, 15, 23, 0.75) !important;
    border-bottom-color: var(--border-color, rgba(255, 255, 255, 0.08)) !important;
}
[data-theme="dark"] .landing-header.scrolled {
    background: rgba(11, 15, 23, 0.95) !important;
}
[data-theme="dark"] .landing-preview-window,
[data-theme="dark"] .stat-box,
[data-theme="dark"] .pricing-card.premium,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-form-panel,
[data-theme="dark"] .landing-modal-card,
[data-theme="dark"] .feature-visual-box {
    background: var(--input-bg, #0f172a) !important;
    border-color: var(--border-color, rgba(255, 255, 255, 0.08)) !important;
}
[data-theme="dark"] .landing-hero-content h1,
[data-theme="dark"] .feature-detail-info h2,
[data-theme="dark"] .landing-section-title h2,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .pricing-name,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .contact-info-details h4 {
    color: var(--text-color, #f1f5f9) !important;
}
[data-theme="dark"] .faq-answer {
    border-top-color: var(--border-color, rgba(255, 255, 255, 0.08)) !important;
}
[data-theme="dark"] .landing-btn-lg.secondary {
    background: transparent !important;
    color: var(--primary-color, #6366f1) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}
[data-theme="dark"] .landing-btn-lg.secondary:hover {
    background: rgba(99, 102, 241, 0.08) !important;
}
[data-theme="dark"] .landing-logo span {
    color: var(--text-color, #f1f5f9) !important;
}
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .form-input {
    background: var(--bg-color, #0b0f17) !important;
    border-color: var(--border-color, rgba(255, 255, 255, 0.08)) !important;
    color: var(--text-color, #f1f5f9) !important;
}
[data-theme="dark"] .theme-toggle-btn {
    color: var(--text-color, #f1f5f9) !important;
}

