/* Pricing Page Styles - Fiscal.ai Inspired */

/* Pricing Page Styles - Fiscal.ai Inspired */

/* Remove body styles - let base.css handle it */

.pricing-page-container {
    background: #000000;
    color: #ffffff;
    height: auto;  /* Fixed: let content determine height */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;  /* Fixed: let main-content-area handle scrolling */
    margin: 0;
    padding: 0;
    box-sizing: border-box;  /* Added */
}

/* Hero Section */
.pricing-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: #000000;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 100;
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.billing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.billing-option {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 46px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.billing-option.active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.billing-option:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.billing-savings {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 4rem 2rem;
    background: #000000;
}

.pricing-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: #4ade80;
    box-shadow: 0 0 0 1px #4ade80;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ade80;
    color: #000000;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    padding: 2rem 2rem 1.5rem;
    text-align: left;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.plan-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.plan-trial-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.25rem;
}

.plan-includes {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing-card-features {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 600;
}

.pricing-card-footer {
    padding: 1.5rem 2rem 2rem;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.plan-cta.primary {
    background: #4ade80;
    color: #000000;
}

.plan-cta.primary:hover {
    background: #22c55e;
    transform: translateY(-1px);
}

.plan-cta.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Data Sources Section */
.data-sources-section {
    padding: 4rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.data-sources-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.data-sources-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.data-sources-scroll {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 2rem;
    align-items: center;
}

.data-source-icon {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 100px;
}

.data-source-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.data-source-icon img {
    height: 32px;
    width: 32px;
    transition: transform 0.3s ease;
}

.data-source-icon:hover img {
    transform: scale(1.1);
}

.data-source-icon span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

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

/* Comparison Table Section */
.comparison-table-section {
    padding: 6rem 2rem;
    background: #000000;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.feature-column {
    width: 40%;
    font-size: 1rem;
}

.comparison-table th.plan-column {
    width: 30%;
    text-align: center;
}

.comparison-table th.popular-column {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.plan-value {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.plan-value.included {
    color: #4ade80;
    font-size: 1.1rem;
}

.plan-value.not-included {
    color: rgba(255, 255, 255, 0.3);
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Additional Links Section */
.additional-links-section {
    padding: 4rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-links-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.link-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.link-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 1rem 3rem;
    }
    
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .comparison-table-section {
        padding: 4rem 1rem;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-links-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .billing-option {
        width: 100%;
        text-align: center;
    }
    
    .data-sources-section {
        padding: 3rem 1rem;
    }
    
    .data-sources-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .data-source-icon {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .data-source-icon img {
        height: 24px;
        width: 24px;
    }
    
    .data-source-icon span {
        font-size: 0.7rem;
    }
} 