.layout-public {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
        linear-gradient(180deg, #fcfcff 0%, #eef2f8 100%);
}

.public-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 42px;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 18px 16px 0;
}

.public-header__bar {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 45, 104, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.public-brand img {
    width: 150px;
    max-width: 34vw;
    object-fit: contain;
}

.public-brand span {
    display: grid;
    gap: 4px;
}

.public-brand strong {
    color: var(--primary);
    line-height: 1.1;
}

.public-brand small {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.public-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-weight: 700;
    transition: 0.2s ease;
}

.public-nav a:hover,
.public-nav a.is-active {
    background: var(--primary-soft);
    color: var(--primary);
}

.public-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.public-nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--primary);
    border-radius: 14px;
    min-height: 44px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
}

.public-hero,
.public-page-hero,
.public-section,
.public-article,
.public-form-card,
.public-info-card,
.public-empty {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 231, 234, 0.9);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.public-hero {
    margin-top: 22px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 28px;
    overflow: hidden;
    position: relative;
}

.public-hero::after {
    content: '';
    position: absolute;
    inset: auto -80px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(181, 154, 98, 0.2), transparent 70%);
}

.public-hero__content {
    display: grid;
    gap: 18px;
    align-content: start;
}

.public-hero h1,
.public-page-hero h1,
.public-section h2,
.public-article h1,
.public-article h2 {
    margin: 0;
    color: var(--primary);
    line-height: 1.08;
}

.public-hero h1,
.public-page-hero h1,
.public-article h1 {
    font-size: clamp(34px, 5vw, 54px);
}

.public-hero p,
.public-page-hero p,
.public-section p,
.public-article p,
.public-form-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.public-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.public-summary-grid,
.public-cards-grid,
.public-news-grid,
.public-info-grid,
.public-form-grid {
    display: grid;
    gap: 18px;
}

.public-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-cards-grid,
.public-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-section {
    margin-top: 24px;
    padding: 28px;
    display: grid;
    gap: 18px;
}

.public-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.public-section__header div {
    display: grid;
    gap: 6px;
}

.public-summary-card,
.public-course-card,
.public-news-card,
.public-info-card {
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    overflow: hidden;
}

.public-summary-card,
.public-info-card {
    padding: 22px;
}

.public-course-card__image,
.public-news-card__image,
.public-page-hero__image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--primary) 0%, #4052a0 100%);
    overflow: hidden;
}

.public-course-card__image img,
.public-news-card__image img,
.public-page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-course-card__body,
.public-news-card__body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.public-course-meta,
.public-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.public-course-meta span,
.public-news-meta span,
.public-stat-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 700;
}

.public-page-hero {
    margin-top: 22px;
    padding: 28px;
    display: grid;
    gap: 18px;
}

.public-page-hero--with-image {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
}

.public-article {
    margin-top: 24px;
    padding: 30px;
    display: grid;
    gap: 18px;
}

.public-article__content,
.public-content-html {
    display: grid;
    gap: 14px;
    color: var(--text);
}

.public-content-html h2,
.public-content-html h3,
.public-content-html p,
.public-content-html ul,
.public-content-html ol,
.public-content-html blockquote {
    margin: 0;
}

.public-content-html ul,
.public-content-html ol {
    padding-left: 20px;
}

.public-content-html a {
    color: var(--primary);
    text-decoration: underline;
}

.public-content-html blockquote {
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    background: var(--accent-soft);
    border-radius: 0 18px 18px 0;
}

.public-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.public-meta-list {
    display: grid;
    gap: 10px;
}

.public-meta-list span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-soft);
    color: var(--muted-strong);
}

.public-form-card {
    padding: 26px;
    display: grid;
    gap: 16px;
}

.public-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-form-grid .form-field--full {
    grid-column: 1 / -1;
}

.public-form-card textarea {
    min-height: 180px;
}

.public-empty {
    padding: 28px;
    text-align: center;
    color: var(--muted);
}

.public-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 34px;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 231, 234, 0.9);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.public-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
    gap: 22px;
}

.public-footer__brand {
    display: grid;
    gap: 14px;
}

.public-footer__brand img {
    width: min(180px, 100%);
    object-fit: contain;
}

.public-footer h3 {
    margin: 0 0 10px;
    color: var(--primary);
}

.public-footer__links {
    display: grid;
    gap: 10px;
    color: var(--muted-strong);
}

.public-footer__links span,
.public-footer__links a {
    line-height: 1.6;
}

.public-news-card__body h3,
.public-course-card__body h3,
.public-summary-card h3,
.public-info-card h3 {
    margin: 0;
    color: var(--primary);
}

.rich-editor {
    display: grid;
    gap: 10px;
}

.rich-editor__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rich-editor__toolbar button {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--muted-strong);
    cursor: pointer;
    font-weight: 700;
}

.rich-editor__preview {
    min-height: 120px;
    padding: 16px;
    border-radius: 16px;
    border: 1px dashed #cfd7e5;
    background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fa 100%);
}

.rich-editor__preview.is-empty {
    color: var(--muted);
}

.modal-card--wide {
    width: min(1040px, calc(100vw - 32px));
}

.public-hero--sales {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    border: none;
    background:
        radial-gradient(circle at top right, rgba(181, 154, 98, 0.3), transparent 26%),
        linear-gradient(135deg, #11204c 0%, #1f2d68 42%, #2f4596 100%);
}

.public-hero--sales::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 16, 46, 0.2), rgba(7, 16, 46, 0)),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.public-hero--sales h1,
.public-hero--sales p,
.public-hero--sales .public-hero-card h3,
.public-hero--sales .public-hero-card p {
    color: #f5f7ff;
}

.public-hero--sales .eyebrow,
.public-page-hero--service .eyebrow,
.public-info-card--cta .eyebrow,
.public-section--contrast .eyebrow {
    background: rgba(247, 239, 223, 0.14);
    color: #fff;
}

.public-hero--sales .public-stat-pill {
    background: rgba(255, 255, 255, 0.09);
    color: #f5f7ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.public-hero__chips,
.public-hero__aside {
    display: grid;
    gap: 12px;
}

.public-hero__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-hero-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.public-hero-card--accent {
    background:
        linear-gradient(145deg, rgba(181, 154, 98, 0.18), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.1);
}

.public-hero-card h3,
.public-metric-card strong {
    margin: 0;
}

.public-hero--sales .button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.public-hero--sales .button--ghost,
.public-page-hero--service .button--ghost,
.public-info-card--cta .button--ghost,
.public-section--contrast .button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.public-metrics {
    margin-top: 20px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-metrics--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-metric-card {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(31, 45, 104, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 252, 0.98) 100%);
    box-shadow: var(--shadow-sm);
}

.public-metric-card strong {
    color: var(--primary);
    font-size: 20px;
    line-height: 1.2;
}

.public-metric-card span {
    color: var(--muted);
    line-height: 1.6;
}

.public-summary-grid--stack {
    grid-template-columns: 1fr;
    align-content: start;
}

.public-summary-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-section--contrast,
.public-section--cta {
    border: none;
    background:
        radial-gradient(circle at top right, rgba(181, 154, 98, 0.18), transparent 24%),
        linear-gradient(135deg, #18275f 0%, #223470 100%);
}

.public-section--contrast h2,
.public-section--contrast h3,
.public-section--contrast p,
.public-section--cta h2,
.public-section--cta h3,
.public-section--cta p {
    color: #f5f7ff;
}

.public-section--contrast .public-summary-card,
.public-section--contrast .public-service-card,
.public-section--cta .public-form-card,
.public-section--cta .public-info-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.public-section--contrast .public-summary-card h3,
.public-section--cta .public-info-card h3 {
    color: #fff;
}

.public-section--contrast .public-summary-card p,
.public-section--contrast .public-service-card p,
.public-section--contrast .public-bullet-list {
    color: rgba(245, 247, 255, 0.88);
}

.public-service-card {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.public-service-card,
.public-course-card,
.public-news-card {
    height: 100%;
}

.public-service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.public-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--muted-strong);
}

.public-bullet-list li {
    line-height: 1.6;
}

.public-bullet-list--spaced {
    gap: 12px;
}

.public-bullet-list--light {
    color: rgba(255, 255, 255, 0.92);
}

.public-course-card__body,
.public-news-card__body,
.public-service-card {
    align-content: start;
}

.public-course-card__body .button-row,
.public-news-card__body .button-row,
.public-service-card .button-row {
    margin-top: auto;
}

.public-article--flat {
    margin-top: 0;
}

.public-detail-grid--offset {
    margin-top: 24px;
}

.public-inline-section {
    display: grid;
    gap: 16px;
    padding-top: 8px;
}

.public-page-hero--service {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    border: none;
    background:
        radial-gradient(circle at top right, rgba(181, 154, 98, 0.22), transparent 24%),
        linear-gradient(135deg, #1b2a63 0%, #27418a 100%);
}

.public-page-hero--service h1,
.public-page-hero--service p {
    color: #f5f7ff;
}

.public-page-hero--service .public-hero-card {
    height: 100%;
}

.public-info-card--cta {
    padding: 24px;
    border: none;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #132453 0%, #243f8a 100%);
    box-shadow: var(--shadow-md);
}

.public-info-card--cta h3,
.public-info-card--cta p {
    color: #fff;
}

.public-info-card--outline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 253, 0.98) 100%);
}

.public-form-card--cta {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.public-cards-grid--services .public-service-card .eyebrow {
    width: fit-content;
}

@media (max-width: 1180px) {
    .public-hero,
    .public-page-hero--with-image,
    .public-detail-grid,
    .public-footer__grid {
        grid-template-columns: 1fr;
    }

    .public-cards-grid,
    .public-news-grid,
    .public-summary-grid,
    .public-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .public-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .public-header__bar {
        flex-wrap: wrap;
    }

    .public-nav {
        display: none;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }

    .public-nav.is-open {
        display: flex;
    }

    .public-header__actions {
        margin-left: auto;
    }
}

@media (max-width: 760px) {
    .public-page {
        width: min(100%, calc(100% - 18px));
        padding-bottom: 28px;
    }

    .public-header {
        padding: 12px 9px 0;
    }

    .public-header__bar,
    .public-hero,
    .public-section,
    .public-article,
    .public-form-card,
    .public-footer {
        padding: 20px;
    }

    .public-cards-grid,
    .public-news-grid,
    .public-summary-grid,
    .public-info-grid,
    .public-form-grid {
        grid-template-columns: 1fr;
    }

    .public-brand {
        width: 100%;
    }

    .public-brand img {
        width: 126px;
    }

    .public-header__actions {
        width: 100%;
        justify-content: stretch;
        margin-left: 0;
    }

    .public-header__actions .button {
        flex: 1 1 0;
    }
}

@media (max-width: 1180px) {
    .public-hero--sales,
    .public-page-hero--service,
    .public-summary-grid--wide,
    .public-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-hero--sales,
    .public-page-hero--service {
        grid-template-columns: 1fr;
    }

    .public-metrics--compact,
    .public-cards-grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .public-hero__chips,
    .public-metrics,
    .public-metrics--compact,
    .public-summary-grid--wide,
    .public-cards-grid--services {
        grid-template-columns: 1fr;
    }

    .public-section__header {
        align-items: flex-start;
    }
}

.demo-lp {
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
    padding: 18px 0 44px;
    display: grid;
    gap: 22px;
    position: relative;
}

.demo-lp--course::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(245, 124, 43, 0.08), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(30, 50, 110, 0.08), transparent 30%),
        linear-gradient(180deg, #faf7f2 0%, #f5f7fb 100%);
    pointer-events: none;
    z-index: -1;
}

.demo-lp-header,
.demo-lp-hero,
.demo-lp-section,
.demo-lp-footer {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 223, 236, 0.92);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(22, 37, 92, 0.08);
    overflow: hidden;
}

.demo-lp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 24px;
    position: sticky;
    top: 12px;
    z-index: 30;
    backdrop-filter: blur(14px);
}

.demo-lp-header::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 124, 43, 0.22), transparent);
}

.demo-lp-header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.demo-lp-header__brand img {
    width: 146px;
    max-width: 100%;
    object-fit: contain;
}

.demo-lp-header__brand span {
    display: grid;
    gap: 4px;
}

.demo-lp-header__brand strong,
.demo-lp-footer strong,
.demo-lp-section h2,
.demo-course-card h2,
.demo-lp-feature-card h3 {
    color: #1b2b64;
}

.demo-lp-header__brand strong {
    font-size: 15px;
    line-height: 1.2;
}

.demo-lp-header__brand small {
    color: #d36a24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.demo-lp-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-lp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 30px;
    padding: 44px;
}

.demo-lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(245, 124, 43, 0.08), transparent 42%),
        radial-gradient(circle at 84% 18%, rgba(27, 43, 100, 0.09), transparent 28%);
    pointer-events: none;
}

.demo-lp-hero__content,
.demo-course-card,
.demo-lp-contact-card,
.demo-lp-form-card {
    position: relative;
    z-index: 1;
}

.demo-lp-hero__content {
    display: grid;
    align-content: center;
    gap: 18px;
}

.demo-lp .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(245, 124, 43, 0.1);
    color: #cb6521;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-lp-hero h1 {
    margin: 0;
    max-width: 10.5ch;
    color: #14224f;
    font-size: clamp(40px, 5.4vw, 66px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.demo-lp-hero p,
.demo-lp-section p,
.demo-lp-form-footer p,
.demo-lp-footer span {
    margin: 0;
    color: #5c6788;
    line-height: 1.75;
}

.demo-lp-hero__content > p {
    max-width: 60ch;
    font-size: 18px;
}

.demo-lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.demo-lp-trustbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 6px;
}

.demo-lp-trustbar span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(245, 124, 43, 0.18);
    color: #ad5416;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(27, 43, 100, 0.05);
}

.demo-lp-copy {
    display: grid;
    gap: 12px;
}

.demo-lp-copy p,
.demo-lp-copy li {
    color: #44506d;
    line-height: 1.72;
}

.demo-lp-copy ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 9px;
}

.demo-course-card {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(155deg, #17265d 0%, #1f377c 52%, #0f1b44 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(20, 34, 79, 0.2);
}

.demo-course-card .eyebrow,
.demo-course-card h2,
.demo-course-card p,
.demo-course-card strong,
.demo-course-card small {
    color: #fff;
}

.demo-course-card__head {
    display: grid;
    gap: 10px;
}

.demo-course-card__head h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.demo-course-card__head p {
    color: rgba(255, 255, 255, 0.76);
}

.demo-course-card__meta {
    display: grid;
    gap: 10px;
}

.demo-course-card__meta span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.demo-course-card__meta strong {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-course-card__meta small {
    max-width: 220px;
    text-align: right;
    color: rgba(255, 255, 255, 0.82);
}

.demo-course-card__offer {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(245, 124, 43, 0.22), rgba(245, 124, 43, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-course-card__offer p {
    color: rgba(255, 255, 255, 0.9);
}

.demo-course-card__actions {
    display: flex;
}

.demo-course-card__actions .button {
    width: 100%;
}

.demo-lp-section {
    padding: 32px;
    display: grid;
    gap: 20px;
}

.demo-lp-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.demo-lp-section__header div {
    display: grid;
    gap: 6px;
    max-width: 760px;
}

.demo-lp-section h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.demo-lp-section--spotlight {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 0.98));
}

.demo-lp-benefits {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 18px;
}

.demo-lp-benefits__card,
.demo-lp-benefits__journey,
.demo-lp-feature-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(217, 223, 236, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.demo-lp-benefits__card strong,
.demo-lp-benefits__journey strong,
.demo-lp-feature-card h3 {
    color: #1b2b64;
}

.demo-lp-copy--light ul {
    padding-left: 16px;
}

.demo-lp-journey {
    display: grid;
    gap: 10px;
}

.demo-lp-journey span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(22, 37, 92, 0.05), rgba(22, 37, 92, 0.03));
    color: #33405f;
    font-weight: 700;
}

.demo-lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.demo-lp-feature-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.demo-lp-section--form {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 24px;
}

.demo-lp-form-intro {
    display: grid;
    gap: 16px;
}

.demo-lp-form-intro h2 {
    margin: 0;
}

.demo-lp-contact-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(245, 124, 43, 0.18), transparent 28%),
        linear-gradient(160deg, #16255c 0%, #223d87 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(22, 37, 92, 0.16);
}

.demo-lp-contact-card strong,
.demo-lp-contact-card span,
.demo-lp-contact-card a {
    color: #fff;
}

.demo-lp-contact-card a {
    text-decoration: underline;
}

.demo-lp-form-card {
    padding: 28px;
    border: 1px solid rgba(217, 223, 236, 0.92);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    display: grid;
    gap: 16px;
}

.demo-lp-form-card .alert {
    margin: 0;
}

.demo-lp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.demo-lp-form-grid .form-field {
    display: grid;
    gap: 8px;
}

.demo-lp-form-grid .form-field--full {
    grid-column: 1 / -1;
}

.demo-lp-form-grid label {
    color: #22325f;
    font-weight: 700;
}

.demo-lp-form-grid input,
.demo-lp-form-grid select,
.demo-lp-form-grid textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(194, 203, 224, 0.94);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.demo-lp-form-grid input:focus,
.demo-lp-form-grid select:focus,
.demo-lp-form-grid textarea:focus {
    border-color: rgba(245, 124, 43, 0.58);
    box-shadow: 0 0 0 4px rgba(245, 124, 43, 0.12);
    outline: none;
}

.demo-lp-form-grid textarea {
    min-height: 140px;
}

.demo-lp-form-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 8px;
}

.demo-lp-form-footer p {
    max-width: 560px;
}

.demo-lp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
}

.demo-lp-footer > div:first-child {
    display: grid;
    gap: 6px;
}

.demo-lp-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.demo-lp-footer__actions a {
    color: #1b2b64;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .demo-lp-hero,
    .demo-lp-benefits,
    .demo-lp-section--form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .demo-lp {
        width: min(100%, calc(100% - 22px));
        padding-bottom: 28px;
    }

    .demo-lp-header,
    .demo-lp-hero,
    .demo-lp-section,
    .demo-lp-footer {
        padding: 22px;
    }

    .demo-lp-header,
    .demo-lp-footer,
    .demo-lp-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-lp-header__actions,
    .demo-lp-hero__actions {
        width: 100%;
    }

    .demo-lp-header__actions .button,
    .demo-lp-hero__actions .button {
        flex: 1 1 0;
    }

    .demo-lp-feature-grid,
    .demo-lp-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .demo-lp {
        width: min(100%, calc(100% - 14px));
        gap: 16px;
    }

    .demo-lp-header {
        top: 8px;
    }

    .demo-lp-header__brand {
        align-items: flex-start;
    }

    .demo-lp-header__brand img {
        width: 120px;
    }

    .demo-lp-hero h1 {
        max-width: none;
        font-size: clamp(34px, 12vw, 48px);
    }

    .demo-lp-hero__content > p {
        font-size: 16px;
    }

    .demo-course-card,
    .demo-lp-benefits__card,
    .demo-lp-benefits__journey,
    .demo-lp-feature-card,
    .demo-lp-contact-card,
    .demo-lp-form-card {
        padding: 20px;
    }

    .demo-course-card__meta span {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-course-card__meta small {
        max-width: none;
        text-align: left;
    }
}

.course-fast-lp {
    width: min(1080px, calc(100% - 28px));
    margin: 0 auto;
    padding: 22px 0 40px;
    display: grid;
    gap: 20px;
    position: relative;
}

.course-fast-lp::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 14% 10%, rgba(245, 124, 43, 0.08), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(27, 43, 100, 0.07), transparent 30%),
        linear-gradient(180deg, #fbf8f3 0%, #f5f7fb 100%);
    pointer-events: none;
    z-index: -1;
}

.course-fast-lp__top,
.course-fast-lp__panel {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 223, 236, 0.92);
    border-radius: 28px;
    box-shadow: 0 18px 56px rgba(22, 37, 92, 0.08);
}

.course-fast-lp__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 22px;
    text-align: center;
}

.course-fast-lp__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    margin: 0 auto;
    text-align: center;
}

.course-fast-lp__brand img {
    width: 142px;
    max-width: 100%;
    object-fit: contain;
}

.course-fast-lp__brand span {
    display: grid;
    gap: 4px;
}

.course-fast-lp__brand strong,
.course-fast-lp__summary h1,
.course-fast-lp__form-head h2,
.course-fast-lp__detail strong,
.course-fast-lp__offer strong {
    color: #1b2b64;
}

.course-fast-lp__brand strong {
    font-size: 15px;
    line-height: 1.2;
}

.course-fast-lp__brand small {
    color: #d36a24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.course-fast-lp__top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-fast-lp__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 22px;
    padding: 28px;
}

.course-fast-lp__summary {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.course-fast-lp__summary h1 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 18ch;
    text-wrap: balance;
}

.course-fast-lp__summary p,
.course-fast-lp__form-head p,
.course-fast-lp__form-footer p,
.course-fast-lp__offer p {
    margin: 0;
    color: #5d6888;
    font-size: 15px;
    line-height: 1.72;
}

.course-fast-lp .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(245, 124, 43, 0.1);
    color: #cb6521;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-fast-lp__poster {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(217, 223, 236, 0.92);
    background: #fff;
    box-shadow: 0 18px 42px rgba(27, 43, 100, 0.08);
}

.course-fast-lp__poster img {
    display: block;
    width: 100%;
    height: auto;
}

.course-fast-lp__meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.course-fast-lp__meta-chips .button {
    min-height: 42px;
}

.course-fast-lp__meta-chips span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(245, 124, 43, 0.18);
    color: #ad5416;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(27, 43, 100, 0.05);
}

.course-fast-lp__details {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.course-fast-lp__detail {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid rgba(217, 223, 236, 0.92);
    text-align: center;
}

.course-fast-lp__detail strong {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.course-fast-lp__detail span {
    color: #32405f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.course-fast-lp__offer {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(245, 124, 43, 0.12), rgba(245, 124, 43, 0.04));
    border: 1px solid rgba(245, 124, 43, 0.16);
    text-align: center;
}

.course-fast-lp__note {
    padding-top: 4px;
    color: #4f5b7f;
    font-size: 15px;
    line-height: 1.72;
    text-align: center;
}

.course-fast-lp__form-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid rgba(217, 223, 236, 0.92);
}

.course-fast-lp__form-head {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.course-fast-lp__form-head h2 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 31px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.course-fast-lp__form-card .alert {
    margin: 0;
}

.course-fast-lp__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.course-fast-lp__form-grid .form-field {
    display: grid;
    gap: 8px;
}

.course-fast-lp__form-grid .form-field--full {
    grid-column: 1 / -1;
}

.course-fast-lp__form-grid label {
    color: #22325f;
    font-weight: 700;
}

.course-fast-lp__form-grid input,
.course-fast-lp__form-grid select,
.course-fast-lp__form-grid textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(194, 203, 224, 0.94);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.course-fast-lp__form-grid input:focus,
.course-fast-lp__form-grid select:focus,
.course-fast-lp__form-grid textarea:focus {
    border-color: rgba(245, 124, 43, 0.58);
    box-shadow: 0 0 0 4px rgba(245, 124, 43, 0.12);
    outline: none;
}

.course-fast-lp__form-grid textarea {
    min-height: 138px;
}

.course-fast-lp__form-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding-top: 6px;
    text-align: center;
}

.course-fast-lp__form-footer p {
    max-width: 440px;
}

.course-fast-lp__feedback-modal {
    z-index: 1400;
}

.course-fast-lp__feedback-card {
    width: min(100%, 520px);
    display: grid;
    gap: 18px;
    padding: 28px;
    text-align: center;
}

.course-fast-lp__feedback-head {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.course-fast-lp__feedback-card h3 {
    margin: 0;
    color: #1b2b64;
    font-size: clamp(28px, 4vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.course-fast-lp__feedback-card p {
    margin: 0;
    color: #5d6888;
    line-height: 1.74;
}

.course-fast-lp__feedback-actions {
    display: flex;
    justify-content: center;
}

.course-fast-lp__feedback-actions .button {
    min-width: 180px;
    justify-content: center;
}

.course-fast-lp__feedback-card--success .eyebrow {
    background: rgba(15, 157, 88, 0.12);
    color: #17824f;
}

.course-fast-lp__feedback-card--error .eyebrow,
.course-fast-lp__feedback-card--warning .eyebrow {
    background: rgba(217, 73, 73, 0.1);
    color: #c03c3c;
}

@media (max-width: 980px) {
    .course-fast-lp__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .course-fast-lp {
        width: min(100%, calc(100% - 16px));
        padding-bottom: 28px;
    }

    .course-fast-lp__top,
    .course-fast-lp__panel {
        padding: 20px;
    }

    .course-fast-lp__top,
    .course-fast-lp__form-footer {
        flex-direction: column;
        align-items: center;
    }

    .course-fast-lp__top-actions {
        width: 100%;
    }

    .course-fast-lp__top-actions .button {
        width: 100%;
    }

    .course-fast-lp__form-grid {
        grid-template-columns: 1fr;
    }

    .course-fast-lp__feedback-card {
        padding: 24px 20px;
    }
}

@media (max-width: 560px) {
    .course-fast-lp__brand {
        align-items: flex-start;
    }

    .course-fast-lp__brand img {
        width: 120px;
    }

    .course-fast-lp__summary h1 {
        max-width: 15ch;
        font-size: clamp(24px, 7vw, 30px);
    }

    .course-fast-lp__meta-chips {
        gap: 8px;
    }

    .course-fast-lp__meta-chips span,
    .course-fast-lp__meta-chips .button {
        width: 100%;
        justify-content: center;
    }

    .course-fast-lp__form-card {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.cursosrpps-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 42px;
    display: grid;
    gap: 22px;
}

.cursosrpps-anchor-nav,
.cursosrpps-hero,
.cursosrpps-section {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 223, 236, 0.92);
    border-radius: 28px;
    box-shadow: 0 18px 56px rgba(22, 37, 92, 0.08);
}

.cursosrpps-anchor-nav {
    position: sticky;
    top: 104px;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 18px;
    scrollbar-width: thin;
}

.cursosrpps-anchor-nav a {
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    color: #4a5677;
    background: #f5f7fb;
    border: 1px solid transparent;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cursosrpps-anchor-nav a:hover,
.cursosrpps-anchor-nav a:focus-visible {
    color: #1b2b64;
    background: rgba(245, 124, 43, 0.12);
    border-color: rgba(245, 124, 43, 0.24);
    outline: none;
}

.cursosrpps-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 26px;
    padding: 38px;
    overflow: hidden;
    position: relative;
}

.cursosrpps-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(245, 124, 43, 0.08), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(27, 43, 100, 0.08), transparent 30%);
    pointer-events: none;
}

.cursosrpps-hero__content,
.cursosrpps-hero__aside,
.cursosrpps-hero-panel {
    position: relative;
    z-index: 1;
}

.cursosrpps-hero__content {
    display: grid;
    align-content: center;
    gap: 18px;
}

.cursosrpps-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(245, 124, 43, 0.1);
    color: #cb6521;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cursosrpps-eyebrow--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cursosrpps-hero h1,
.cursosrpps-section h2 {
    margin: 0;
    color: #1b2b64;
    letter-spacing: -0.04em;
}

.cursosrpps-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.96;
    max-width: 11ch;
}

.cursosrpps-hero p,
.cursosrpps-section p,
.cursosrpps-course-card p,
.cursosrpps-methodology-card strong,
.cursosrpps-public-card strong {
    margin: 0;
    color: #5d6888;
    line-height: 1.72;
}

.cursosrpps-hero__actions,
.cursosrpps-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cursosrpps-hero-panel {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(160deg, #17265d 0%, #223d87 100%);
    box-shadow: 0 26px 56px rgba(22, 37, 92, 0.16);
}

.cursosrpps-hero-panel h2,
.cursosrpps-hero-panel li {
    color: #fff;
}

.cursosrpps-hero-panel h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.cursosrpps-hero-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.cursosrpps-hero-list li {
    line-height: 1.65;
}

.cursosrpps-section {
    display: grid;
    gap: 20px;
    padding: 30px;
}

.cursosrpps-section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 253, 0.98) 100%);
}

.cursosrpps-section--cta {
    background:
        radial-gradient(circle at top right, rgba(245, 124, 43, 0.16), transparent 24%),
        linear-gradient(155deg, #14224f 0%, #1f377c 100%);
    border: none;
}

.cursosrpps-section--cta h2,
.cursosrpps-section--cta p {
    color: #fff;
}

.cursosrpps-section__header {
    display: grid;
    gap: 8px;
    max-width: 760px;
}

.cursosrpps-section h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.02;
}

.cursosrpps-benefits-grid,
.cursosrpps-courses-grid,
.cursosrpps-public-grid,
.cursosrpps-methodology__highlights {
    display: grid;
    gap: 18px;
}

.cursosrpps-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cursosrpps-benefit-card,
.cursosrpps-course-card,
.cursosrpps-public-card,
.cursosrpps-methodology-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(217, 223, 236, 0.92);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.cursosrpps-benefit-card__icon,
.cursosrpps-methodology-card__mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(245, 124, 43, 0.12);
    color: #cb6521;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.cursosrpps-benefit-card h3,
.cursosrpps-course-card h3,
.cursosrpps-public-card strong,
.cursosrpps-methodology-card strong {
    margin: 0;
    color: #1b2b64;
}

.cursosrpps-course-card h3 {
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.cursosrpps-courses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cursosrpps-course-card {
    align-content: start;
}

.cursosrpps-course-card__category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(27, 43, 100, 0.07);
    color: #1b2b64;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cursosrpps-course-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.cursosrpps-course-meta li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f7f9fc;
    color: #45516f;
}

.cursosrpps-course-meta strong {
    color: #1b2b64;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cursosrpps-course-card .button {
    margin-top: auto;
}

.cursosrpps-public-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cursosrpps-public-card {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
}

.cursosrpps-public-card__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cb6521;
    box-shadow: 0 0 0 8px rgba(245, 124, 43, 0.12);
}

.cursosrpps-methodology {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
}

.cursosrpps-methodology__content {
    display: grid;
    align-content: center;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(217, 223, 236, 0.92);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.cursosrpps-methodology__highlights {
    grid-template-columns: 1fr;
}

.cursosrpps-methodology-card {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
}

.cursosrpps-cta-actions .button--secondary,
.cursosrpps-section--cta .button--ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cursosrpps-section--cta .button--secondary {
    background: rgba(255, 255, 255, 0.12);
}

.cursosrpps-section--cta .button--ghost {
    background: transparent;
}

@media (max-width: 1180px) {
    .cursosrpps-benefits-grid,
    .cursosrpps-courses-grid,
    .cursosrpps-public-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cursosrpps-methodology {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .cursosrpps-hero {
        grid-template-columns: 1fr;
    }

    .cursosrpps-anchor-nav {
        top: 144px;
    }
}

@media (max-width: 760px) {
    .cursosrpps-page {
        width: min(100%, calc(100% - 16px));
        padding-bottom: 30px;
        gap: 16px;
    }

    .cursosrpps-anchor-nav,
    .cursosrpps-hero,
    .cursosrpps-section {
        padding: 20px;
    }

    .cursosrpps-benefits-grid,
    .cursosrpps-courses-grid,
    .cursosrpps-public-grid,
    .cursosrpps-methodology__highlights {
        grid-template-columns: 1fr;
    }

    .cursosrpps-anchor-nav {
        top: 176px;
    }

    .cursosrpps-hero h1 {
        max-width: none;
        font-size: clamp(34px, 12vw, 48px);
    }

    .cursosrpps-course-meta li {
        flex-direction: column;
        align-items: flex-start;
    }

    .cursosrpps-cta-actions .button {
        width: 100%;
    }
}
