.pricing-hero {
    padding: 100px 0 50px;
    text-align: center;
}

.pricing-tag {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--color-accent);
    font-weight: 600;
}

.pricing-subtitle {
    max-width: 650px;
    margin: auto;
    font-size: 1.15rem;
}

.pricing-section {
    padding-bottom: 100px;
}

.billing-toggle {
    display: flex;
    width: fit-content;
    margin: 0 auto 24px;
    padding: 5px;
    gap: 4px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
}

.billing-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-text-muted);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.billing-toggle-button span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #e8f7ed;
    color: #18733a;
    font-size: 0.75rem;
    white-space: nowrap;
}

.billing-toggle-button.active {
    background: var(--color-accent);
    color: #ffffff;
}

.pricing-card {
    max-width: 650px;
    margin: auto;
    padding: 50px;
    text-align: center;
}

.pricing-card h2 {
    margin-bottom: 8px;
}

.pricing-card .pricing-amount {
    color: inherit;
    font-size: 4rem;
    font-weight: 700;
}

.pricing-card .pricing-interval {
    color: var(--color-text-muted);
    font-size: 1.4rem;
    font-weight: 400;
}

.pricing-saving {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e8f7ed;
    color: #18733a;
    font-weight: 700;
}

.pricing-card hr {
    margin: 32px 0;
    border: none;
    border-top: 1px solid var(--color-border);
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
    list-style: none;
    text-align: left;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-footnote {
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .pricing-hero {
        padding-top: 70px;
    }

    .billing-toggle {
        width: 100%;
    }

    .billing-toggle-button {
        flex: 1;
        justify-content: center;
        padding-inline: 12px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card .pricing-amount {
        font-size: 3.25rem;
    }
}


/* ManagedHorizons responsive application pass v2 */

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

textarea,
input,
select,
button {
    max-width: 100%;
    box-sizing: border-box;
}

.modal {
    padding: 12px;
    overflow-y: auto;
}

.modal-card {
    width: min(900px, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
}

@media (max-width: 900px) {

    .dashboard-layout,
    .app-layout {
        display: block !important;
    }

    .sidebar {
        width: 100% !important;
        position: relative !important;
    }

    .hero,
    .hero-layout,
    .checkout-layout,
    .support-layout,
    .template-editor-layout {
        grid-template-columns: 1fr !important;
    }

    .stats-grid,
    .dashboard-grid,
    .billing-grid,
    .admin-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 600px) {

    .site-header,
    .navbar,
    nav {
        flex-wrap: wrap;
        height: auto !important;
    }

    .site-header {
        padding: 16px !important;
    }

    .site-header nav {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }

    .stats-grid,
    .dashboard-grid,
    .billing-grid,
    .admin-grid,
    .feature-grid,
    .template-editor-layout,
    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .dashboard-content,
    .admin-content,
    .container {
        width: 100%;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .modal-card,
    .card,
    .panel {
        width: 100%;
        max-width: 100%;
    }

    .modal-actions,
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .modal-actions button,
    .hero-actions a,
    .hero-actions button {
        width: 100%;
    }

    textarea {
        min-height: 180px;
    }
}
