﻿ul {
    list-style: none;
    padding-left: 0;
}

    ul li {
        position: relative;
        padding-left: 1.2rem;
        margin-bottom: 0.33rem;
        text-indent: -0.5rem;
    }

        /* custom bullet */
        ul li::before {
            position: absolute;
            left: 0;
            top: 0;
        }

.licensing-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero-content,
.hero-content h1,
.hero-content p.hero-subtitle {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    opacity: 0.95;
}

.quick-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1100px;
}

.tier-card {
    padding: 1.75rem;
    text-align: left;
}

    .tier-card.recommended {
        border: 2px solid #fff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

.tier-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0.5rem;
}

    .tier-features li::before {
        content: "✓ ";
        color: #22c55e;
        font-weight: 700;
    }

.hero-cta {
    margin-top: 2rem;
}

.usage-credits-note {
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* Questions grid */
.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.question-card {
    padding: 1.5rem;
}

/* Pricing cards */
.pricing-section {
    margin-top: 3rem;
}

.section-intro {
    max-width: 800px;
    margin: 0.5rem auto 1.5rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-card {
    padding: 1.5rem;
}

.visual-description {
    min-height: 3.5rem;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
    margin: 0.75rem 0 0.5rem;
}

.org-pricing-table .savings {
    color: #16a34a;
    font-weight: 600;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.price-option {
    text-align: center;
    padding: 1.5rem;
}

/* Add-ons */
.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.add-on-card {
    padding: 1.5rem;
}

/* Simple/free tier and calculator sections */
.simple-section,
.calculator-section {
    margin-top: 3rem;
}

.pricing-calculator {
    max-width: 800px;
    margin: 0 auto 2rem;
}

@media (max-width: 600px) {
    .hero-section {
        padding: 3rem 1rem;
    }
}


/* Extra info container, sits under hero */
.extra-info {
    margin-top: 2rem;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #f4f6ff 0%, #fdfbff 50%, #f3f8ff 100%);
    border: 1px solid rgba(120, 130, 220, 0.18);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

/* Header inside extra section */
.extra-info-header {
    max-width: 48rem;
    margin: 0 auto 1.25rem auto;
    text-align: left;
}

    .extra-info-header h2 {
        margin: 0 0 0.3rem 0;
        font-size: 1.25rem;
        font-weight: 650;
        letter-spacing: -0.02em;
    }

    .extra-info-header p {
        margin: 0;
        color: #6b7280;
        font-size: 0.95rem;
    }

/* Shared panel styling */
.extra-info-panel {
    max-width: 52rem;
    margin: 0.75rem auto 0.75rem auto;
    padding: 1.25rem 1.25rem 1.15rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    display: none; /* JS will switch this to block */
}

    /* Optional: a subtle colored bar on the left that can vary by option */
    .extra-info-panel::before {
        content: "";
        position: absolute;
        inset-block: 0.9rem;
        left: 0.75rem;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient(180deg, #6366f1, #0ea5e9);
    }

/* Ensure the panel has room for that accent bar */
.extra-info-panel {
    position: relative;
    padding-left: 1.5rem; /* extra space for ::before bar */
}

    .extra-info-panel h3 {
        margin-top: 0;
        margin-bottom: 0.4rem;
        font-size: 1.05rem;
        font-weight: 650;
    }

    .extra-info-panel p {
        margin-top: 0;
        margin-bottom: 0.6rem;
        color: #4b5563;
        font-size: 0.95rem;
    }

    .extra-info-panel ul {
        margin: 0.35rem 0 0;
        padding-left: 1.2rem;
        color: #374151;
        font-size: 0.92rem;
    }

    .extra-info-panel li + li {
        margin-top: 0.25rem;
    }

    /* Simple utility state class for showing a panel */
    .extra-info-panel.is-active {
        display: block;
    }


/* 1. The Container (Matches your Hero look) */
.extra-info-container {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 1.5rem; /* Rounded corners */
    /* Soft Gradient Background */
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    /* Subtle Border & Shadow */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.extra-info-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* 2. Customizing RadzenTabs to fit the theme */
.custom-hero-tabs {
    background-color: transparent !important; /* Let the gradient show through */
    box-shadow: none !important;
}

/* Style the active tab to pop */
.custom-hero-tabs .rz-tabview-selected {
    color: #2563eb !important; /* Your brand primary color */
    border-bottom: 3px solid #2563eb !important;
    background-color: rgba(255,255,255,0.5) !important;
    font-weight: bold;
}

/* 3. The Content Inside the Tabs */
.tab-content-panel {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
    border: 1px solid #f3f4f6;
}

/* Simple fade in animation */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq {
    margin-top: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
    background-color: #fafafa;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

    .faq-question::marker {
        display: none;
    }

.faq-answer {
    margin-top: 0.5rem;
    margin-left: 1.25rem; /* indent */
    padding-left: 0.75rem; /* inner spacing */
    border-left: 3px solid #ddd; /* subtle visual guide */
    color: #444;
    line-height: 1.5;
}
