/* pricing.css — page-specific rules (shared rules in common.css) */

:root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --gradient-start: #3b82f6;
            --gradient-end: #8b5cf6;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
            min-height: 100vh;
        }

.navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 16px 0;
        }

.navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.navbar .nav-link {
            font-weight: 500;
            color: #475569;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

.btn-get-started {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            color: white;
        }

.btn-get-started:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

.hero-section {
            padding: 80px 0 60px;
            text-align: center;
        }

.hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1rem;
        }

.hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 1.25rem;
        }

.pricing-onetime-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            color: #334155;
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 999px;
            margin: 0 auto 2rem;
            max-width: 700px;
        }

.pricing-onetime-note i {
            color: var(--success-color, #10b981);
            font-size: 1.15rem;
        }

.pricing-onetime-note strong {
            color: #1e293b;
        }

.pricing-toggle {
            display: inline-flex;
            background: white;
            padding: 4px;
            border-radius: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

.pricing-toggle .btn {
            border-radius: 25px;
            padding: 8px 24px;
            font-weight: 500;
            border: none;
        }

.pricing-toggle .btn.active {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
        }

.pricing-toggle .btn:not(.active) {
            background: transparent;
            color: #64748b;
        }

.save-badge {
            background: var(--success-color);
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 12px;
            margin-left: 8px;
        }

.pricing-cards {
            padding: 40px 0 80px;
        }

.pricing-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

.pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

.pricing-card.recommended {
            border: 2px solid var(--primary-color);
            transform: scale(1.02);
        }

.pricing-card.recommended:hover {
            transform: scale(1.02) translateY(-8px);
        }

.recommended-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 6px 20px;
            border-radius: 0 0 12px 12px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.package-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

.package-description {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 24px;
            min-height: 48px;
        }

.package-price {
            margin-bottom: 24px;
        }

.price-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
        }

.price-currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: #64748b;
            vertical-align: top;
        }

.price-period {
            font-size: 1rem;
            color: #94a3b8;
        }

.package-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
        }

.package-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            color: #475569;
            font-size: 0.95rem;
            border-bottom: 1px solid #f1f5f9;
        }

.package-features li:last-child {
            border-bottom: none;
        }

.package-features li i {
            color: var(--success-color);
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

.package-features li.disabled {
            color: #cbd5e1;
        }

.package-features li.disabled i {
            color: #cbd5e1;
        }

.btn-select-plan {
            width: 100%;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

.btn-select-plan.btn-primary {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
        }

.btn-select-plan.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

.btn-select-plan.btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

.btn-select-plan.btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
        }

.stats-highlight {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

.stat-item {
            flex: 1;
            background: #f8fafc;
            padding: 12px;
            border-radius: 12px;
            text-align: center;
        }

.stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
        }

.stat-label {
            font-size: 0.75rem;
            color: #64748b;
            text-transform: uppercase;
        }

.checkout-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

.checkout-modal .modal-header {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 24px 32px;
        }

.checkout-modal .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

.checkout-modal .modal-body {
            padding: 32px;
        }

.selected-plan-summary {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }

.trial-badge {
            background: #fef3c7;
            color: #92400e;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
        }

.result-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

.result-icon.success {
            background: #dcfce7;
            color: var(--success-color);
        }

.result-icon.cancelled {
            background: #fef3c7;
            color: var(--warning-color);
        }

.result-icon i {
            font-size: 2.5rem;
        }

.features-section {
            background: white;
            padding: 80px 0;
        }

.feature-box {
            text-align: center;
            padding: 32px 24px;
        }

.feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.75rem;
        }

.feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

.feature-desc {
            color: #64748b;
            font-size: 0.95rem;
        }

.faq-section {
            padding: 80px 0;
        }

.faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

.faq-item .accordion-button {
            font-weight: 600;
            color: #1e293b;
            padding: 20px 24px;
        }

.faq-item .accordion-button:not(.collapsed) {
            background: #f8fafc;
        }

@media (max-width: 992px) {
            .footer .row > div {
                text-align: center !important;
            }

            .footer-social {
                justify-content: center;
                margin-top: 16px;
            }

            .footer-links-inline {
                margin: 16px 0;
            }
        }

@media (max-width: 992px) {
            .hero-title {
                font-size: 2.25rem;
            }

            .pricing-card.recommended {
                transform: scale(1);
            }

            .pricing-card.recommended:hover {
                transform: translateY(-8px);
            }
        }
