/* Subscriptions Page Styles */

/* Main Container */
.subscriptions-container {
    background: linear-gradient(135deg, #f0f4f8 0%, #e3e8ee 100%);
    padding: 5rem 0;
}

.subscriptions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Page Headline */
.subscriptions-headline {
    text-align: center;
    margin-bottom: 4rem;
}

.subscriptions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.subscriptions-subtitle {
    font-size: 1.25rem;
    color: #294b6a;
    max-width: 42rem;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.billing-toggle {
    background: white;
    border-radius: 9999px;
    padding: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
}

.billing-toggle button {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.billing-toggle button.active {
    background-color: #1a365d;
    color: white;
}

.billing-toggle button.inactive {
    color: #1a365d;
}

.billing-toggle button.inactive:hover {
    background-color: #f3f4f6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    min-width: 280px;
    max-width: 350px;
    margin: 0 auto;
}

.pricing-card.featured {
    background: #1a365d;
    color: white;
}

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

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-card-title {
    color: white;
}

.pricing-card-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-card-price {
    color: white;
}

.pricing-card-period {
    font-size: 1.125rem;
    color: #6b7280;
}

.pricing-card.featured .pricing-card-period {
    color: #d1d5db;
}

.pricing-card-description {
    color: #6b7280;
}

.pricing-card.featured .pricing-card-description {
    color: #d1d5db;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1ce1ff;
    color: #1a365d;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 1.5rem;
}

.feature-section-title {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.pricing-card.featured .feature-section-title {
    color: white;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #1ce1ff;
    margin-left: 0.5rem;
}

.feature-text {
    color: #374151;
}

.pricing-card.featured .feature-text {
    color: white;
}

/* CTA Buttons */
.cta-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.2s;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #1a365d;
    color: white;
}

.cta-button.primary:hover {
    background: #294b6a;
}

.cta-button.secondary {
    background: #1ce1ff;
    color: #1a365d;
}

.cta-button.secondary:hover {
    background: white;
}

.cta-button.gray {
    background: #f3f4f6;
    color: #1a365d;
}

.cta-button.gray:hover {
    background: #e5e7eb;
}

/* Custom Services Section */
.custom-services {
    background: white;
    padding: 5rem 0;
}

.custom-services-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.custom-services-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.custom-services-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.custom-services-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-radius: 1rem;
    padding: 2rem 3rem;
}

.custom-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.custom-services-list {
    text-align: left;
}

.custom-services-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.custom-services-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custom-services-list li {
    display: flex;
    align-items: flex-start;
}

.custom-services-list .feature-icon {
    margin-top: 0.25rem;
}

.custom-services-pricing {
    text-align: center;
}

.custom-services-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.custom-services-cta {
    display: inline-block;
    background: #1a365d;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.custom-services-cta:hover {
    background: #294b6a;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    padding: 5rem 0;
}

.faq-content {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 4rem;
}

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

.faq-item {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #6b7280;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .subscriptions-container {
        padding: 3rem 0;
    }
    
    .subscriptions-content {
        padding: 0 1rem;
    }
    
    .subscriptions-headline {
        margin-bottom: 2.5rem;
    }
    
    .subscriptions-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .subscriptions-subtitle {
        font-size: 1.125rem;
    }
    
    .billing-toggle-container {
        margin-bottom: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        border-radius: 0.75rem;
        width: 100%;
        max-width: 300px;
    }
    
    .billing-toggle button {
        border-radius: 0.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }
    
    .pricing-card-header {
        margin-bottom: 1.5rem;
    }
    
    .pricing-card-title {
        font-size: 1.25rem;
    }
    
    .pricing-card-price {
        font-size: 1.875rem;
    }
    
    .feature-section {
        margin-bottom: 1rem;
    }
    
    .feature-section-title {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-list {
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
    }
    
    .cta-button {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .custom-services {
        padding: 3rem 0;
    }
    
    .custom-services-content {
        padding: 0 1rem;
    }
    
    .custom-services-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .custom-services-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .custom-services-card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
    
    .custom-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-services-list-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .custom-services-list ul {
        gap: 0.5rem;
    }
    
    .custom-services-list li {
        font-size: 0.875rem;
    }
    
    .custom-services-price {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .custom-services-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-content {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-list {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        border-radius: 0.5rem;
    }
    
    .faq-question {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .subscriptions-container {
        padding: 2rem 0;
    }
    
    .subscriptions-content {
        padding: 0 0.75rem;
    }
    
    .subscriptions-title {
        font-size: 1.75rem;
    }
    
    .subscriptions-subtitle {
        font-size: 1rem;
    }
    
    .billing-toggle {
        max-width: 280px;
    }
    
    .billing-toggle button {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .pricing-grid {
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-card-title {
        font-size: 1.125rem;
    }
    
    .pricing-card-price {
        font-size: 1.625rem;
    }
    
    .feature-item {
        font-size: 0.8125rem;
    }
    
    .cta-button {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .custom-services {
        padding: 2rem 0;
    }
    
    .custom-services-title {
        font-size: 1.5rem;
    }
    
    .custom-services-description {
        font-size: 0.875rem;
    }
    
    .custom-services-card {
        padding: 1.25rem;
    }
    
    .custom-services-list-title {
        font-size: 1rem;
    }
    
    .custom-services-list li {
        font-size: 0.8125rem;
    }
    
    .custom-services-price {
        font-size: 1.25rem;
    }
    
    .custom-services-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.8125rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .subscriptions-content {
        padding: 0 0.5rem;
    }
    
    .subscriptions-title {
        font-size: 1.5rem;
    }
    
    .subscriptions-subtitle {
        font-size: 0.875rem;
    }
    
    .billing-toggle {
        max-width: 260px;
    }
    
    .billing-toggle button {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card-title {
        font-size: 1rem;
    }
    
    .pricing-card-price {
        font-size: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .custom-services-card {
        padding: 1rem;
    }
    
    .custom-services-title {
        font-size: 1.25rem;
    }
    
    .custom-services-description {
        font-size: 0.8125rem;
    }
    
    .custom-services-list-title {
        font-size: 0.875rem;
    }
    
    .custom-services-list li {
        font-size: 0.75rem;
    }
    
    .custom-services-price {
        font-size: 1.125rem;
    }
    
    .custom-services-cta {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
    
    .faq-title {
        font-size: 1.25rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 0.875rem;
    }
    
    .faq-answer {
        font-size: 0.75rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

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

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
} 