/* Pricing Section Styles */
:root {
    --pricing-bg-web: #000000;
    /* Black background */
    --pricing-bg-card: #15171A;
    /* Dark card background */
    --pricing-text-main: #FFFFFF;
    /* White text */
    --pricing-text-sub: #9CA3AF;
    /* Gray text */
    --pricing-accent: #FFFFFF;
    /* White accent */
    --pricing-accent-hover: #E5E7EB;
    /* Light gray hover */
    --pricing-border: #333333;
    /* Dark border */
}

.pricing-section {
    padding: 64px 24px;
    background-color: var(--pricing-bg-web);
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--pricing-text-main);
    overflow: hidden;
    /* Prevent horizontal scroll on body */
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--pricing-text-main);
    line-height: 1.1;
}

.social-proof {
    font-size: 18px;
    color: var(--pricing-text-sub);
    margin-bottom: 8px;
}

.cta-callout {
    font-size: 20px;
    font-weight: 600;
    color: var(--pricing-accent);
}

/* Pricing Cards Container */
.pricing-cards-container {
    display: flex;
    /* Mobile first scroll */
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 24px;
    /* Space for scrollbar/shadows */
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for cleaner look but keep functionality */
.pricing-cards-container::-webkit-scrollbar {
    display: none;
}

.pricing-cards-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Pricing Card */
.pricing-card {
    flex: 0 0 85%;
    /* Mobile width */
    scroll-snap-align: center;
    background: var(--pricing-bg-card);
    border: 1px solid var(--pricing-border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
    /* For badges if any */
    min-width: 280px;
    /* robust min width */
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.05);
}

.plan-header {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pricing-text-sub);
    margin-bottom: 16px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    color: var(--pricing-text-main);
}

.currency {
    font-size: 32px;
    font-weight: 600;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 8px;
}

.price {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.billing-period {
    font-size: 14px;
    color: var(--pricing-text-sub);
    margin-left: 8px;
    font-weight: 500;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
    /* Push button to bottom */
}

.features li {
    font-size: 16px;
    color: var(--pricing-text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.features li::before {
    content: "✓";
    color: var(--pricing-accent);
    /* or green */
    font-weight: bold;
    margin-right: 12px;
    display: inline-block;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px;
    background-color: var(--pricing-accent);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--pricing-accent-hover);
    transform: translateY(-2px);
}

/* Secondary/Enterprise Button Style */
.cta-button.outline {
    background-color: transparent;
    border: 1px solid var(--pricing-text-main);
    color: var(--pricing-text-main);
}

.cta-button.outline:hover {
    background-color: var(--pricing-text-main);
    color: #000;
}

/* Mobile Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #D1D5DB;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--pricing-text-main);
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .pricing-cards-container {
        display: flex;
        flex-wrap: wrap;
        overflow-x: visible;
        /* Disable scroll on tablet */
        justify-content: center;
    }

    .pricing-card {
        flex: 0 1 350px;
        width: 100%;
        max-width: 400px;
    }

    .scroll-indicators {
        display: none;
    }

    .pricing-header h1 {
        font-size: 56px;
    }
}