* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    color: #2c3e50;
    line-height: 1.6;
    padding-top: 70px;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    padding: 0.5rem 0;

}

.navbar-brand {
    color: #007bff;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.navbar-brand:hover {
    color: rgba(255,255,255,0.9);
}
.logo__wrapper {
    display: flex;
    align-items: center;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.35rem;
    padding: 0 0.6rem;
    gap: 0.75rem;
    }

    .logo-small {
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    object-fit: cover;
    }

    .company-name {
    white-space: nowrap;    /* AI Detection Colors */
    background: linear-gradient(90deg, #4158D0, #00c3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    }


.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: rgba(169, 169, 169, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.starter-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.starter-warning i {
    color: #856404;
    font-size: 20px;
    margin-top: 2px;
}

.starter-warning p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 18px;
}

.header {
    text-align: center;
    margin-bottom: 45px;
}

.header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 14px;
}

.header p {
    font-size: 0.99rem;
    color: #7f8c8d;
    max-width: 540px;
    margin: 0 auto;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.toggle-container {
    background: white;
    padding: 7px;
    border-radius: 45px;
    box-shadow: 0 3.6px 18px rgba(0,0,0,0.08);
    display: flex;
    position: relative;
}

.toggle-option {
    padding: 10.8px 21.6px;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.toggle-option.active {
    color: white; 
    background: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    box-shadow: 0 3.6px 13.5px rgba(102, 126, 234, 0.4);
}

.toggle-option:not(.active) {
    color: #7f8c8d;
}

.save-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 3.6px 7.2px;
    border-radius: 10.8px;
    font-size: 0.675rem;
    font-weight: 600;
    margin-left: 7.2px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 21.6px;
    margin-bottom: 43.2px;
}

.plan-card {
    background: white;
    border-radius: 14.4px;
    padding: 28.8px 21.6px;
    box-shadow: 0 7.2px 28.8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-3.6px);
    box-shadow: 0 14.4px 43.2px rgba(0,0,0,0.12);
}

.plan-card.popular {
    position: relative;
    background: white;        
    border-radius: 14.4px;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    border-image-slice: 1;
    background-clip: padding-box;
}

.plan-card.popular::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: white;
    border-radius: 17.4px;
    z-index: -1;
}

.plan-card.popular::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    border-radius: 22.4px;
    z-index: -2;
    filter: blur(10px);
    opacity: 0.8;
}

.plan-card.popular:hover {
    transform: scale(1.036) translateY(-3.6px);
}

.plan-card.popular:hover::after {
    filter: blur(15px);
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: -0.9px;
    left: 50%;
    transform: translateX(-50%);
    background:  linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    color: white;
    padding: 5.4px 14.4px;
    border-radius: 0 0 10.8px 10.8px;
    font-size: 0.72rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 21.6px;
}

.plan-name {
    font-size: 1.17rem;
    font-weight: 700;
    margin-bottom: 5.4px;
    color: #2c3e50;
}

.plan-description {
    color: #7f8c8d;
    font-size: 0.81rem;
    margin-bottom: 14.4px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3.6px;
}

.price-amount {
    font-size: 2.16rem;
    font-weight: 800;
    background:  linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

.price-period {
    color: #95a5a6;
    font-size: 0.765rem;
}

.features-list {
    list-style: none;
    margin: 21.6px 0 28.8px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 9px 0;
    font-size: 0.81rem;
}

.feature-icon {
    width: 16.2px;
    height: 16.2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10.8px;
    font-size: 0.585rem;
    color: white;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 11.7px 14.4px;
    border: none;
    border-radius: 9px;
    font-size: 0.855rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.plan-button.primary {
    background:  linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.plan-button.secondary {
    background: transparent;
    color: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    border: 2px solid #e8ecf7;
}

.plan-button.secondary:hover {
    background: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
    color: white;
    border-color:linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
}

.plan-button.disabled {
    background: #ecf0f1;
    color: #bdc3c7;
    cursor: not-allowed;
}

.faq-section {
    margin-top: 72px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #2c3e50;
}

.faq-item {
    background: white;
    border-radius: 13.5px;
    margin-bottom: 13.5px;
    box-shadow: 0 3.6px 13.5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22.5px 27px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.99rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 27px 22.5px 27px;
    color: #7f8c8d;
    line-height: 1.6;
    display: none;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4158D0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #cce7ff;
    color: #0066cc;
    border: 1px solid #99d6ff;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-5px);
    }
}


        .table-section {
            margin-bottom: 60px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .section-icon {
            font-size: 2rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .table-wrapper {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
        }

        .comparison-table th {
            padding: 18px 16px;
            text-align: left;
            font-weight: 600;
            color: white;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table th:first-child {
            border-radius: 16px 0 0 0;
        }

        .comparison-table th:last-child {
            border-radius: 0 16px 0 0;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid #e8ecf7;
            transition: background-color 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }

        .comparison-table td {
            padding: 16px;
            font-size: 0.875rem;
        }

        .comparison-table td:first-child {
            font-weight: 600;
            color: #2c3e50;
        }

        .plan-name {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1rem;
        }

        .price-tag {
            background: linear-gradient(135deg, #4158D0 0%, #00c3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .contact-sales {
            color: #4158D0;
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        .contact-sales:hover {
            color: #00c3ff;
        }

        .check-icon {
            color: #38ef7d;
            font-size: 1.1rem;
        }

        .cross-icon {
            color: #e74c3c;
            font-size: 1.1rem;
        }

        .feature-badge {
            display: inline-block;
            padding: 4px 10px;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

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

        /* Pricing table specific */
        .pricing-table td:nth-child(2),
        .pricing-table td:nth-child(3),
        .pricing-table td:nth-child(4) {
            text-align: center;
        }

        /* Features table specific */
        .features-table td:not(:first-child) {
            text-align: center;
        }

        @media (max-width: 768px) {
            .table-wrapper {
                overflow-x: auto;
            }

            .comparison-table {
                min-width: 600px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-icon {
                font-size: 1.5rem;
            }
        }
