/* 
==================================
POWER BI TV DISPLAY - STYLES
==================================
*/

/* ==================== VARIABLES ==================== */
:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #1c2128;
    --border-color: #30363d;
    --text-primary: #c9d1d9;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent-blue: #579DFF;
    --hover-bg: #21262d;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ==================== PAGE MANAGEMENT ==================== */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ==================== HEADER ==================== */
header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.logo i {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-button {
    background: var(--accent-blue);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ==================== MAIN CONTAINER ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ==================== HERO SECTION ==================== */
.clean-hero {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

.hero-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.hero-title i {
    color: var(--accent-blue);
    font-size: 2rem;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--accent-blue);
}

.hero-cta-btn {
    background: var(--accent-blue);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 2.5rem auto 2rem;
    max-width: 1100px;
    opacity: 0.6;
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--accent-blue);
}

/* ==================== CARDS GRID ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.card:hover {
    border-color: var(--text-muted);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 500;
}

.card-footer i {
    font-size: 0.75rem;
}

/* ==================== INFO BOX ==================== */
.info-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-box-icon-box {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.info-box-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.info-box-content {
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==================== FORM ELEMENTS ==================== */
.input-field,
.select-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: border-color 0.2s;
    margin-top: 0.5rem;
}

.input-field:focus,
.select-field:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.input-field::placeholder {
    color: var(--text-muted);
}

/* ==================== WORKSPACE SELECTOR ==================== */
.workspace-selector {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.workspace-selector label {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.workspace-selector select {
    flex: 1;
    min-width: 200px;
}

/* ==================== REPORTS LIST ==================== */
.reports-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.report-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.report-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.report-card.selected {
    border-color: var(--accent-blue);
    background: rgba(87, 157, 255, 0.1);
}

.report-card-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.report-card-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.help-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
}

/* ==================== CHECKBOXES ==================== */
.checkbox-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-blue);
}

.checkbox-row label {
    cursor: pointer;
    user-select: none;
    font-size: 0.875rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--hover-bg);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-icon {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-icon:hover {
    background: var(--hover-bg);
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== SAVED CONFIGS ==================== */
.saved-configs {
    margin-top: 3rem;
}

.config-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.config-item:hover {
    border-color: var(--accent-blue);
}

.config-item-info {
    flex: 1;
}

.config-item-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.config-item-details {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.config-item-actions {
    display: flex;
    gap: 0.5rem;
}

/* ==================== PRESENTATION PAGE ==================== */
#presentationPage {
    background: #000;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.control-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(22, 27, 34, 0.98);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.control-bar.hidden {
    transform: translateY(-100%);
}

.control-left,
.control-center,
.control-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.control-center {
    flex: 1;
    justify-content: center;
    gap: 1.5rem;
}

#statusText {
    font-size: 0.875rem;
    color: var(--text-muted);
}

#clockDisplay {
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-blue);
}

.report-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* ==================== LOADING OVERLAY ==================== */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    z-index: 999;
}

.loading-overlay.hidden {
    display: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.btn-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.setting-row:last-of-type {
    border-bottom: none;
}

.setting-row label {
    font-weight: 600;
    color: var(--text-primary);
}

.setting-row span {
    color: var(--accent-blue);
}

/* ==================== FULLSCREEN MODE ==================== */
.fullscreen-mode .control-bar {
    opacity: 0;
    pointer-events: none;
}

.fullscreen-mode:hover .control-bar {
    opacity: 1;
    pointer-events: all;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-links i {
    color: var(--accent-blue);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .workspace-selector {
        flex-direction: column;
        align-items: stretch;
    }

    .reports-list {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }

    .control-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .control-left,
    .control-center,
    .control-right {
        width: 100%;
        justify-content: center;
    }

    .config-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .config-item-actions {
        width: 100%;
    }

    .config-item-actions .btn {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .control-bar,
    .loading-overlay,
    .modal {
        display: none !important;
    }
}

/* ==================== MICROSOFT BUTTON ==================== */
.microsoft-btn {
    background: #ffffff !important;
    color: #5e5e5e !important;
    border: 1px solid #8c8c8c !important;
    font-weight: 600;
    font-size: 0.9375rem !important;
    padding: 0.625rem 0.75rem !important;
}

.microsoft-btn:hover {
    background: #f3f2f1 !important;
    border-color: #8c8c8c !important;
    opacity: 1 !important;
}

.microsoft-logo {
    width: 21px;
    height: 21px;
    margin-right: 8px;
}

/* ==================== USER PROFILE DROPDOWN ==================== */
.user-profile-dropdown {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
}

.user-profile-btn:hover {
    background: var(--hover-bg);
    border-color: var(--accent-blue);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.user-info-small {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.user-name-small {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-email-small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.user-profile-btn i.fa-chevron-down {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.user-profile-btn:hover i.fa-chevron-down {
    color: var(--accent-blue);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

.profile-dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--hover-bg);
}

.dropdown-item i {
    color: var(--text-muted);
    width: 16px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.25rem 0;
}

/* Hide dropdown on mobile, show simpler version */
@media (max-width: 768px) {
    .user-info-small {
        display: none;
    }

    .user-profile-btn i.fa-chevron-down {
        display: none;
    }
}

/* ==================== PRICING PAGE ==================== */
.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.pricing-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-header h1 i {
    color: var(--accent-blue);
}

.pricing-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(87, 157, 255, 0.15);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(87, 157, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(87, 157, 255, 0.3);
}

.pricing-tier {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1;
}

.pricing-price span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-period {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features li i {
    color: var(--accent-blue);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-cta:hover {
    background: #4a8ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 157, 255, 0.3);
}

.pricing-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pricing-card.featured .pricing-cta {
    background: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(87, 157, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 4rem auto 2rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: var(--accent-blue);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 2rem 1rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-tier {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .faq-section {
        margin: 3rem auto 2rem;
    }

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}