.start-academy-page,
.start-academy-page * {
    box-sizing: border-box;
}

.start-academy-page {
    overflow-x: hidden;
    background: #f8fafc;
    padding: 24px 0 8px;
}

.start-academy-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.start-academy-hero__media {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.start-academy-hero__media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.start-academy-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    padding: 24px;
    margin-top: 18px;
}

.start-academy-intro h1 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.start-academy-intro p {
    margin: 0 0 14px;
    color: #4b5563;
}

.start-academy-intro ul,
.start-academy-intro ol {
    margin: 0 0 14px;
    padding-left: 20px;
    list-style: disc;
    color: #4b5563;
}

.start-academy-intro ol {
    list-style: decimal;
}

.start-academy-intro,
.start-academy-intro * {
    text-align: left !important;
    overflow-wrap: anywhere;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card--current {
    border-color: #2563eb;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.12);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #374151;
}

.pricing-price {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
    color: #111827;
}

.pricing-price-old {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 6px;
    color: #6b7280;
    text-decoration: line-through;
}

.pricing-subtitle {
    color: #6b7280;
    margin: 0 0 12px;
}

.pricing-features {
    margin: 0 0 16px;
    color: #374151;
    flex: 1 1 auto;
}

.pricing-features ul,
.pricing-features ol {
    margin: 0;
    padding-left: 18px;
}

.pricing-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.pricing-list--checks li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 6px;
}

.pricing-list--checks li:before {
    content: "\2713";
    color: #16a34a;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-offer {
    margin: 0 0 12px;
    font-weight: 600;
    color: #b91c1c;
}

.pricing-offer__old {
    text-decoration: line-through;
}

.pricing-note {
    margin: 0 0 8px;
}

.pricing-note--alert {
    color: #ef001b;
}

.pricing-note--success {
    color: #16a34a;
}

/* Prevent hidden inline styles from clipping dynamic CMS content */
.pricing-features [style*="overflow"] {
    overflow: visible !important;
}

.pricing-features [style*="height"] {
    height: auto !important;
    max-height: none !important;
}

.pricing-cta {
    margin-top: auto;
}

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

.start-academy-terms {
    margin-top: 16px;
}

.start-academy-terms p {
    margin: 0;
    text-align: center;
    color: #4b5563;
}

.start-academy-shell--bottom {
    margin: 0 auto 20px;
}

.start-academy-shell--bottom > * {
    max-width: 100%;
}

.start-academy-shell--bottom > section,
.start-academy-shell--bottom > .section {
    border-radius: 14px;
    overflow: hidden;
}

.academy-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    padding: 22px;
    margin: 18px 0 0;
}

.academy-block h2 {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 14px;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.academy-grid--3 {
    grid-template-columns: 1fr;
}

.academy-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.academy-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.academy-item p {
    margin: 0;
    color: #4b5563;
}

.academy-steps {
    counter-reset: academy-step;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.academy-step {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 16px 16px 58px;
}

.academy-step:before {
    counter-increment: academy-step;
    content: counter(academy-step);
    position: absolute;
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.academy-step h3 {
    margin: 0 0 6px;
    font-size: 17px;
}

.academy-step p {
    margin: 0;
    color: #4b5563;
}

.academy-cta-fallback {
    border-radius: 14px;
    overflow: hidden;
    min-height: 240px;
    padding: 34px 28px;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.academy-cta-fallback h2 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #fff;
}

.academy-cta-fallback p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
}

@media (max-width: 991px) {
    .start-academy-content {
        padding: 18px;
    }
    .start-academy-intro h1 {
        font-size: 24px;
    }
    .pricing-price {
        font-size: 30px;
    }
    .academy-block h2 {
        font-size: 22px;
    }
    .academy-cta-fallback h2 {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .academy-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .academy-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
