/* =============================================
   AI Maturity methodology page
   Reuses master.css tokens & primitives (.step-item, .bento-card,
   .section-tag, .section-title/.section-desc, .gradient-text, .blob,
   .score-badge). Only page-specific .amt-* helpers live here.
   Dark + light + RTL via logical properties and design tokens.
   ============================================= */

.amt-hero {
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
    border-block-end: 1px solid var(--clr-border);
}

.amt-hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--clr-text);
    letter-spacing: -1px;
    line-height: 1.3;
    margin-block-end: 1.1rem;
}

.amt-fit {
    width: fit-content;
}

.amt-muted {
    color: var(--clr-muted);
}

.amt-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-block-start: 1.75rem;
}

.amt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-primary-md);
    transition: box-shadow 0.2s ease;
}

.amt-cta-btn:hover {
    color: #fff;
    box-shadow: var(--shadow-primary-lg);
}

.amt-cta-btn-alt {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    box-shadow: none;
}

.amt-cta-btn-alt:hover {
    color: var(--clr-text);
    background: var(--primary-12);
    box-shadow: none;
}

.amt-soon {
    color: var(--clr-muted);
    font-size: 0.9rem;
}

.amt-nav {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
}

.amt-nav-title {
    font-weight: 800;
    color: var(--clr-text);
    margin-block-end: 0.5rem;
}

.amt-nav-link {
    color: var(--clr-muted);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.amt-nav-link:hover,
.amt-nav-link.active {
    color: var(--clr-text);
    background: var(--primary-12);
}

.amt-section {
    margin-block-end: 3.5rem;
    scroll-margin-top: 100px;
}

.amt-subtitle {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-text);
    margin-block: 1.75rem 1rem;
}

.amt-ladder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-block-start: 1.5rem;
}

.amt-level-desc {
    color: var(--clr-muted);
}

.amt-level-desc p {
    margin: 0;
}

.amt-dim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.amt-dim-icon {
    font-size: 1.6rem;
}

.amt-level-en {
    color: var(--clr-muted);
    font-weight: 600;
    font-size: 0.85em;
    margin-inline-start: 0.35rem;
}

.amt-dim-card {
    text-align: center;
}

.amt-dim-card .amt-dim-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-block-end: 0.75rem;
    background: color-mix(in srgb, currentColor 14%, transparent);
    font-size: 1.5rem;
}

.amt-dim-card h5 {
    margin-block-end: 0.4rem;
}

.amt-plan {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-block-end: 1rem;
    background: var(--clr-card);
}

.amt-plan-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-block-end: 0.75rem;
}

.amt-plan-head strong {
    color: var(--clr-text);
}

.amt-plan-period {
    color: var(--clr-muted);
    font-size: 0.85rem;
    margin-inline-start: auto;
}

.amt-checklist {
    margin: 0;
    padding-inline-start: 1.25rem;
    color: var(--clr-muted);
    display: grid;
    gap: 0.4rem;
}

.amt-checklist li {
    line-height: 1.6;
}

/* ── Bundle product card (methodology page teaser) ── */
.amt-product {
    position: relative;
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
    padding: 2.5rem 2rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(120% 90% at 50% 0%, var(--primary-12), transparent 70%),
        var(--clr-card);
    box-shadow: var(--shadow-primary-md);
    overflow: hidden;
}

.amt-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    background: var(--primary-12);
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 0.85rem;
    margin-block-end: 1rem;
}

.amt-product-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 900;
    color: var(--clr-text);
    margin-block-end: 0.75rem;
}

.amt-product-desc {
    color: var(--clr-muted);
    line-height: 1.7;
    margin-block-end: 1.5rem;
}

.amt-product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-block-end: 1.5rem;
}

.amt-product-price-prefix,
.amt-product-price-suffix {
    color: var(--clr-muted);
    font-size: 0.9rem;
}

.amt-product-price-value {
    font-size: clamp(2.75rem, 7vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amt-product-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    text-align: start;
    max-width: 420px;
    margin-inline: auto;
}

.amt-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.amt-product-features i {
    color: var(--clr-primary);
    margin-block-start: 0.15rem;
    flex: 0 0 auto;
}

.amt-product-cta {
    justify-content: center;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    font-size: 1.05rem;
    padding-block: 0.9rem;
}

.amt-product-note {
    display: block;
    color: var(--clr-muted);
    font-size: 0.85rem;
    margin-block-start: 0.85rem;
}

/* ── Bundle ─────────────────────────────────────── */
.amt-hero-compact {
    padding: 120px 0 40px;
}

.amt-bundle-note-wide {
    max-width: 900px;
    margin-inline: auto;
}

.amt-bundle-errors {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--red-15);
    border-radius: var(--radius-md);
    background: var(--red-12);
    color: var(--clr-red-text);
}

.amt-bundle-errors i {
    font-size: 1.2rem;
    margin-block-start: 0.1rem;
}

.amt-bundle-errors ul {
    margin: 0;
    padding-inline-start: 1.1rem;
}

.amt-bundle-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.9rem 1.1rem;
    margin-block: 1.25rem 1.75rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--primary-12);
    color: var(--clr-text);
    line-height: 1.6;
}

.amt-bundle-note i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-block-start: 0.1rem;
}

.amt-bundle-login {
    font-size: 0.85rem;
    font-weight: 600;
    margin-inline-start: auto;
    color: var(--clr-primary);
    text-decoration: none;
}

.amt-req {
    color: var(--clr-red-text);
}

@media (max-width: 991px) {
    .amt-nav {
        position: static;
        margin-block-end: 1.5rem;
    }
}

/* =============================================
   Bundle purchase page (checkout-business.css look)
   Reuses .glass-card/.step-indicator/.pkg-*/.seats-*/.payment-method/
   .radio-dot/.plan-summary/.summary-row/.btn-pay/.trust-badge from
   checkout-business.css. These .amt-co-* helpers replace what that page
   expresses inline, so this page stays inline-style-free.
   ============================================= */
.amt-co-sublabel {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-block-end: 12px;
}

.amt-co-grow {
    flex: 1;
}

.amt-co-custom-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text);
}

.amt-co-custom-hint {
    font-size: 0.68rem;
    color: var(--clr-muted);
}

.amt-co-price-box {
    text-align: end;
}

.amt-co-price-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--clr-text);
    line-height: 1;
}

.amt-co-price-unit {
    font-size: 0.65rem;
    color: var(--clr-muted);
}

.amt-co-slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.63rem;
    color: var(--clr-muted);
    margin-block-start: 6px;
}

.amt-co-plan-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block-end: 14px;
}

.amt-co-plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--clr-primary);
    flex: 0 0 auto;
}

.amt-co-plan-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--clr-text);
}

.amt-co-plan-sub {
    font-size: 0.72rem;
    color: var(--clr-muted);
}

.amt-co-feature {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    padding: 4px 0;
    color: var(--clr-muted);
}

.amt-co-strong {
    color: var(--clr-text);
    font-weight: 700;
}

.amt-co-divider {
    border-block-start: 1px solid var(--clr-border);
    padding-block-start: 8px;
    margin-block-start: 4px;
}

.amt-co-pay-block {
    border-block-start: 1px solid var(--clr-border);
    padding-block-start: 16px;
    margin-block-start: 8px;
}

.amt-co-pay-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-text);
    flex: 1;
}

.amt-co-pay-badge {
    font-size: 0.62rem;
    background: var(--primary-12);
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 1px 6px;
    white-space: nowrap;
}

.amt-co-note-info {
    margin-block-start: 16px;
    background: var(--primary-12);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    font-size: 0.72rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

/* Bundle checkout: coupon + card-payment block */
.amt-co-coupon {
    border-block-start: 1px solid var(--clr-border);
    padding-block-start: 16px;
    margin-block-start: 8px;
}

.amt-co-coupon-row {
    display: flex;
    gap: 0.5rem;
}

.amt-co-coupon-row .form-control {
    letter-spacing: 1px;
}

.amt-co-coupon-btn {
    flex: 0 0 auto;
    padding-inline: 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    background: var(--primary-12);
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease;
}

.amt-co-coupon-btn:hover {
    background: color-mix(in srgb, var(--clr-primary) 20%, transparent);
}

.amt-co-coupon-msg {
    font-size: 0.75rem;
    margin-block-start: 6px;
    min-height: 1rem;
}

.amt-co-coupon-msg.is-valid {
    color: var(--green);
}

.amt-co-coupon-msg.is-invalid {
    color: var(--clr-red-text);
}

.amt-co-pay-static {
    cursor: default;
}

.amt-co-pay-cards {
    display: flex;
    gap: 6px;
}

.amt-co-card-badge {
    background: var(--primary-12);
    color: var(--clr-muted);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Bundle checkout: even preset grid (4-up desktop, 2×2 mobile — no orphan card) */
.amt-co-pkg-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-block-start: 0.5rem;
}

@media (max-width: 768px) {
    .amt-co-pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Bundle checkout: store-style "what's included" as assess-items */
.amt-co-assess {
    cursor: default;
    padding-block-start: 14px;
}

.amt-co-assess .assess-name {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.amt-co-assess-icon {
    background: var(--primary-12);
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.amt-co-included-tag {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--amber);
    background: var(--amber-12);
    border: 1px solid var(--amber-15);
    border-radius: 4px;
    padding: 1px 6px;
    white-space: nowrap;
}

.amt-co-assess-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
    line-height: 1.2;
}

.amt-co-selector-note {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-block-start: 14px;
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--primary-12);
    font-size: 0.76rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.amt-co-selector-note i {
    color: var(--clr-primary);
    margin-block-start: 0.15rem;
}

/* Preset tier badges + per-employee savings pill (store-style) */
.amt-co-tier-green {
    background: var(--green-12);
    color: var(--green);
    border: 1px solid var(--green-15);
}

.amt-co-tier-primary {
    background: var(--primary-12);
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
}

.amt-co-tier-amber {
    background: var(--amber-12);
    color: var(--amber);
    border: 1px solid var(--amber-15);
}

.amt-co-tier-save {
    background: var(--green-12);
    color: var(--green);
}
