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

:root {
    --primary-50: #f0f4ff;
    --primary-100: #e0e9ff;
    --primary-200: #c7d7ff;
    --primary-300: #a4baff;
    --primary-400: #8195ff;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;
    
    --dark-50: #f8fafc;
    --dark-100: #f1f5f9;
    --dark-200: #e2e8f0;
    --dark-300: #cbd5e1;
    --dark-400: #94a3b8;
    --dark-500: #64748b;
    --dark-600: #475569;
    --dark-700: #334155;
    --dark-800: #1e293b;
    --dark-900: #0f172a;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-900);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-700);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 3rem;
}

.logo-img {
    height: 3rem;
    width: auto;
    display: block;
    object-fit: contain;
}

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

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

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

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--primary-600);
    position: relative;
    overflow: hidden;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-600);
    transition: width 0.3s;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

.btn-white {
    background-color: white;
    color: var(--primary-600);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

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

.btn-outline {
    background-color: rgba(79, 70, 229, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background-color: rgba(79, 70, 229, 0.7);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background-color: var(--dark-900);
}

.hero-content {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(79, 70, 229, 0.2);
    color: var(--primary-400);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge i {
    font-size: 0.875rem;
}

.badge i.fa-star {
    color: var(--primary-400);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-primary {
    color: var(--primary-400);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-image img {
    width: 100%;
    max-width: 1200px;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
}

/* Numbers Section */
.numbers {
    padding: 5rem 0;
    background-color: rgba(30, 41, 59, 0.5);
}

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

.stat-card {
    background-color: var(--dark-900);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    text-align: center;
    transition: border-color 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-600);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background-color: var(--dark-800);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-600);
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 1rem;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--text-tertiary);
}

.features-image {
    text-align: center;
}

.features-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Apollo Features Section */
.apollo-features {
    padding: 5rem 0;
    background-color: rgba(30, 41, 59, 0.5);
}

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

.apollo-card {
    background-color: var(--dark-900);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    transition: border-color 0.3s;
}

.apollo-card:hover {
    border-color: var(--primary-600);
}

.apollo-card.highlight {
    background-color: rgba(79, 70, 229, 0.1);
    border-color: var(--primary-600);
}

.apollo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apollo-title i {
    color: var(--primary-400);
    font-size: 1.125rem;
}

.apollo-description {
    color: var(--text-tertiary);
}

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

.how-it-works-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 1rem;
}

.step-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-description {
    color: var(--text-tertiary);
}

.how-it-works-image img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 968px) {
    .how-it-works {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-us {
    padding: 5rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: rgba(30, 41, 59, 0.5);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-testimonials 80s linear infinite;
}

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

.testimonial-card {
    background-color: var(--dark-900);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    transition: all 0.3s;
    flex-shrink: 0;
    width: calc((1200px - 2rem) / 2);
    max-width: calc(50% - 1rem);
}

.testimonial-card:hover {
    border-color: var(--primary-600);
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2);
}

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

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.testimonial-content {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-rating {
    color: var(--primary-400);
    font-size: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    font-size: 1rem;
}


@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
    }
    
    @keyframes scroll-testimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 1rem));
        }
    }
    
    .uae-badge-content {
        flex-direction: column;
        text-align: center;
    }
    
    .uae-badge-content i {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .uae-badge-text strong {
        font-size: 1.125rem;
    }
    
    .uae-badge-text p {
        font-size: 0.875rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 1.25rem;
    }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border: 1px solid var(--primary-500);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-900) 0%, #0a0e1a 100%);
    border-top: 1px solid var(--dark-700);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-600), transparent);
}

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

.footer-column:first-child {
    max-width: 350px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    height: 3rem;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-description {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

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

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

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-600);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 6px;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--dark-700);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-600), transparent);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }
}

/* UAE Badge Styles */
.uae-badge-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(99, 102, 241, 0.1));
    border: 2px solid var(--primary-600);
    border-radius: 1rem;
    padding: 1.5rem;
}

.uae-section {
    padding: 5rem 0;
    background-color: rgba(30, 41, 59, 0.5);
}

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

.uae-card {
    background-color: var(--dark-900);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
    transition: all 0.3s;
    text-align: center;
}

.uae-card:hover {
    border-color: var(--primary-600);
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
}

.uae-card.highlight {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(99, 102, 241, 0.1));
    border-color: var(--primary-600);
}

.uae-icon {
    font-size: 3rem;
    color: var(--primary-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 1rem;
    margin: 0 auto 1rem;
}

.uae-icon i {
    font-size: 2.5rem;
}

.uae-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.uae-description {
    color: var(--text-tertiary);
    line-height: 1.6;
}

.uae-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-700);
}

.uae-stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--dark-900);
    border-radius: 1rem;
    border: 1px solid var(--dark-700);
}

.uae-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-400);
    margin-bottom: 0.5rem;
}

.uae-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.uae-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.uae-badge-content i {
    font-size: 2rem;
    color: var(--primary-400);
    background-color: rgba(79, 70, 229, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.uae-badge-text {
    flex: 1;
}

.uae-badge-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.uae-badge-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 8rem 0 5rem;
}

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

.pricing-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    background-color: var(--dark-900);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--dark-700);
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-600);
}

.pricing-card.popular {
    background-color: var(--dark-800);
    border-color: var(--primary-600);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.2);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-600);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card-header {
    margin-bottom: 2rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.25rem;
}

.price-period {
    color: var(--text-tertiary);
    font-size: 1rem;
}

.annual-billing {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.annual-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: block;
    margin-bottom: 0.25rem;
}

.annual-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-400);
    display: block;
}

.pricing-description {
    color: var(--text-tertiary);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--dark-700);
}

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

.pricing-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--dark-700);
    color: white;
    border: 1px solid var(--dark-600);
}

.pricing-button:hover {
    background-color: var(--dark-600);
}

.pricing-button.primary {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
}

.pricing-button.primary:hover {
    background-color: var(--primary-700);
}

.faq-section {
    background-color: var(--dark-800);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--dark-700);
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-tertiary);
}

.custom-plan-cta {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border: 1px solid var(--primary-500);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

