/* Pricing Page Styles */
.pricing-page {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(13, 52, 81, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bluelevel01);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bluelevel01);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    display: none;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--bluelevel01);
    border-radius: 24px;
    padding: 0;
    text-align: left;
    position: relative;
    box-shadow: 0 25px 50px rgba(13, 52, 81, 0.15);
    max-width: 650px;
    margin: 0 auto;
    overflow: visible;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    border-radius: 20px 20px 0 0;
}

.pricing-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 3px solid #ffffff;
}

.pricing-badge i {
    font-size: 1rem;
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 3rem 2rem 3rem;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.plan-title {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bluelevel01);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.plan-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.price-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 52, 81, 0.1);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--bluelevel01);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(13, 52, 81, 0.1);
}

.price-period {
    font-size: 1.4rem;
    color: #6c757d;
    font-weight: 600;
}

.price-note {
    color: #28a745;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.features-container {
    background: #ffffff;
    padding: 3rem;
    flex: 1;
}

.features-header {
    margin-bottom: 2rem;
    text-align: center;
}

.features-header h4 {
    color: var(--bluelevel01);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.features-list li:hover {
    background: rgba(13, 52, 81, 0.02);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    color: #28a745;
    font-size: 1.1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 0 0 24px 24px;
    text-align: center;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(13, 52, 81, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card .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 ease;
}

.pricing-card .btn-primary:hover::before {
    left: 100%;
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--bluelevel01));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 52, 81, 0.4);
    color: #ffffff;
}

.pricing-card .btn-primary span {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-card .btn-primary small {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.trust-indicator {
    margin-top: 1.5rem;
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trust-indicator i {
    color: #28a745;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bluelevel01);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    margin: 0 auto;
    border-radius: 2px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--bluelevel01);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(13, 52, 81, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.feature-card h4 {
    color: var(--bluelevel01);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.feature-highlight {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #f1f3f4;
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--bluelevel01);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    border-color: var(--bluelevel01);
    box-shadow: 0 15px 40px rgba(13, 52, 81, 0.15);
    transform: translateY(-2px);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    padding: 0;
}

.faq-question:hover {
    background: #ffffff;
}

.faq-item.active .faq-question {
    background: #ffffff;
}

.faq-question-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    min-height: 90px;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bluelevel01);
    flex: 1;
    padding-right: 2rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--bluelevel01);
}

.faq-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--bluelevel01);
    background: rgba(13, 52, 81, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(13, 52, 81, 0.1);
    user-select: none;
}

.faq-item:hover .faq-icon {
    background: rgba(13, 52, 81, 0.15);
    border-color: var(--bluelevel01);
    transform: scale(1.05);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--bluelevel01), #0056b3);
    color: #ffffff;
    border-color: var(--bluelevel01);
    transform: scale(1.1);
}

.faq-answer {
    display: none;
    background: #ffffff;
    border-top: 1px solid #f8f9fa;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content {
    padding: 0 2rem 2.5rem;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 70px;
        padding: 4rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-card {
        margin-top: 1rem;
    }
    
    .pricing-header {
        padding: 2rem 2rem 1.5rem 2rem;
    }
    
    .plan-title h3 {
        font-size: 2rem;
    }
    
    .price-section {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .features-container {
        padding: 2rem;
    }
    
    .pricing-footer {
        padding: 2rem;
    }
    
    .pricing-badge {
        top: -22px;
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        border: 2px solid #ffffff;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        padding: 0 0.5rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .faq-question-content {
        padding: 2rem 1.5rem;
        min-height: 80px;
    }
    
    .faq-question h4 {
        font-size: 1.2rem;
        padding-right: 1.5rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 2rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 60px;
        padding: 3rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .pricing-section,
    .features-section,
    .faq-section {
        padding: 2rem 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .pricing-badge {
        top: -20px;
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
        border: 2px solid #ffffff;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-period {
        font-size: 1.1rem;
    }
    
    .features-container {
        padding: 1.5rem;
    }
    
    .features-list li {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }
    
    .faq-question-content {
        padding: 1.5rem 1rem;
        min-height: 70px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
        padding-right: 1rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}