:root {
    --color-navy: #0c1b2d;
    --color-navy-soft: #142945;
    --color-gold: #d5a85d;
    --color-gold-soft: #efd6a7;
    --color-ink: #1e293b;
    --color-muted: #667085;
    --color-border: rgba(12, 27, 45, 0.12);
    --color-bg: #f5f4f0;
    --color-surface: #ffffff;
    --color-surface-alt: #f0f2f5;
    --color-success: #1f8b4c;
    --color-error: #c1453d;
    --shadow-soft: 0 18px 45px rgba(7, 18, 31, 0.12);
    --shadow-card: 0 14px 36px rgba(7, 18, 31, 0.1);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --font-body: "Manrope", sans-serif;
    --font-heading: "Red Hat Display", "Manrope", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-ink);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(12, 27, 45, 0.06);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
}

.site-logo img {
    width: clamp(150px, 38vw, 255px);
}

.menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    gap: 0.32rem;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: var(--color-navy);
    cursor: pointer;
}

.menu-toggle span {
    width: 1.15rem;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.site-header__tools {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.55rem;
}

.site-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.16rem;
    border: 1px solid rgba(12, 27, 45, 0.12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(7, 18, 31, 0.08);
    cursor: pointer;
}

.site-language-toggle img {
    width: 1.52rem;
    height: 1.52rem;
    border-radius: 999px;
    object-fit: cover;
}

.site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.65rem;
}

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

.site-nav a {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-navy-soft);
}

.site-nav a.is-active,
.site-nav a:hover {
    background: rgba(12, 27, 45, 0.08);
}

.site-header__cta {
    display: none;
}

.site-main {
    overflow: hidden;
}

.google-translate-element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skiptranslate,
body > .skiptranslate,
.goog-te-gadget,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos {
    display: none !important;
    visibility: hidden !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

body,
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
}

.hero {
    position: relative;
    min-height: 72vh;
    min-height: 72svh;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.hero__content {
    display: flex;
    align-items: center;
    min-height: inherit;
    padding: 3.25rem 0 3.5rem;
}

.hero__copy {
    max-width: 27rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-gold);
}

.hero h1,
.page-hero h1,
.course-hero h1,
.section-heading h2,
.conviction-content h2,
.newsletter-box h2,
.content-panel h2,
.course-block h2,
.sidebar-card h3,
.site-footer h3,
.step-card h2,
.contact-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

.hero h1 {
    font-size: clamp(2.1rem, 7vw, 4.3rem);
    max-width: 15ch;
}

.hero p,
.page-hero p,
.course-hero p {
    margin: 1rem 0 0;
    max-width: 36rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.78rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.button--dark {
    background: var(--color-navy);
    color: #fff;
}

.button--ghost {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-navy);
}

.button--ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.button--light {
    background: #fff;
    color: var(--color-navy);
}

.button--buy {
    background: var(--color-navy-soft);
    color: #fff;
    box-shadow: 0 12px 28px rgba(20, 41, 69, 0.18);
}

.button--buy:hover {
    background: #17314f;
}

.button__icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    flex: 0 0 1rem;
}

.button--wide-mobile {
    width: 100%;
}

.section {
    padding: 3.25rem 0;
}

.section--muted {
    background: linear-gradient(180deg, rgba(12, 27, 45, 0.03), rgba(12, 27, 45, 0.01));
}

.section-heading {
    margin-bottom: 1.6rem;
}

.section-heading--center {
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 4vw, 2.65rem);
    color: var(--color-navy);
}

.section-heading p {
    max-width: 42rem;
    margin: 0.85rem auto 0;
    color: var(--color-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.feature-card,
.course-card,
.accordion-card,
.step-card,
.contact-card,
.contact-form-card,
.sidebar-card,
.content-panel,
.content-aside {
    background: var(--color-surface);
    border: 1px solid rgba(12, 27, 45, 0.06);
    box-shadow: var(--shadow-card);
}

.feature-card {
    overflow: hidden;
    border-radius: 0.85rem;
    box-shadow: 0 8px 20px rgba(7, 18, 31, 0.08);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card--image {
    aspect-ratio: 1 / 1;
}

.feature-card--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 10.5rem;
    padding: 0.95rem 0.9rem;
    background: #fff;
}

.feature-card__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    margin-bottom: 0.45rem;
    color: #9ca7b2;
}

.feature-card__glyph svg {
    width: 100%;
    height: 100%;
}

.feature-card h3,
.course-card h3 {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    line-height: 1.15;
    color: var(--color-navy);
}

.feature-card p,
.course-card p {
    margin: 0;
    font-size: 0.57rem;
    line-height: 1.35;
    color: var(--color-muted);
}

.feature-card p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.courses-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
}

.course-card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(7, 18, 31, 0.08);
}

.course-card__image-wrap {
    overflow: hidden;
}

.course-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.course-card__content {
    display: grid;
    gap: 0.7rem;
    padding: 0.85rem;
}

.course-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.course-card__actions .button {
    min-height: 2.2rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
}

.empty-state {
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.conviction-grid {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.conviction-content h2 {
    max-width: 24rem;
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    line-height: 1.12;
    color: var(--color-navy);
}

.accordion-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.accordion-card {
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(7, 18, 31, 0.06);
}

.accordion-card__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--color-navy);
    cursor: pointer;
}

.accordion-card__trigger span {
    font-weight: 700;
    font-size: 0.82rem;
}

.accordion-card__label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.accordion-card__icon {
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 1.55rem;
    object-fit: contain;
}

.accordion-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 2.15rem;
    border-radius: 0.7rem;
    background: var(--color-navy);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.accordion-card.is-open .accordion-card__arrow {
    transform: rotate(90deg);
}

.accordion-card__content {
    display: none;
    padding: 0 1rem 0.95rem;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.accordion-card.is-open .accordion-card__content {
    display: block;
}

.conviction-visual {
    display: flex;
    justify-content: center;
}

.conviction-visual img {
    width: min(100%, 17rem);
    object-fit: contain;
}

.newsletter-section {
    background: linear-gradient(180deg, rgba(12, 27, 45, 0.04), rgba(12, 27, 45, 0.02));
    padding: 3.2rem 0 2.5rem;
}

.newsletter-box {
    max-width: 34rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.newsletter-box .section-eyebrow {
    margin-bottom: 0.55rem;
    color: #98a1ad;
}

.newsletter-box h2 {
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    color: var(--color-navy);
}

.newsletter-box p {
    max-width: 36rem;
    margin: 0.8rem auto 0;
    color: var(--color-muted);
}

.newsletter-form {
    display: grid;
    gap: 0.45rem;
    max-width: 24rem;
    margin: 1.4rem auto 0;
}

.newsletter-form input,
.contact-card a,
.site-footer a {
    word-break: break-word;
}

.newsletter-form input {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-navy-soft);
    border-radius: 0.55rem;
    background: var(--color-navy-soft);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.newsletter-form input:focus {
    outline: 0;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(20, 41, 69, 0.12);
}

.newsletter-form__button {
    min-height: 2.95rem;
    padding-inline: 1.25rem;
    border-color: #fff;
    border-radius: 0.55rem;
    background: #fff;
    color: var(--color-navy-soft);
}

.alert {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-size: 0.92rem;
    font-weight: 700;
}

.alert--success {
    background: rgba(31, 139, 76, 0.12);
    color: var(--color-success);
}

.alert--error {
    background: rgba(193, 69, 61, 0.12);
    color: var(--color-error);
}

.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.84);
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    padding: 2.6rem 0 1.8rem;
}

.site-footer__brand p,
.footer-links,
.site-footer__bottom p,
.site-footer__meta a {
    font-size: 0.94rem;
}

.site-footer__logo img {
    width: min(100%, 220px);
}

.site-footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.social-links img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
    min-height: 3rem;
    padding: 1.8rem 0 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.8rem;
}

.site-footer__bottom p,
.site-footer__meta a {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: clamp(0.54rem, 1.8vw, 0.82rem);
    white-space: nowrap;
}

.signature-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signature-bar img {
    width: min(100%, 120px);
    opacity: 0.88;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 6.8rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    padding: 0.55rem;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 16px 34px rgba(7, 18, 31, 0.18);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cookies-accepted .whatsapp-float {
    bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 90;
}

.cookie-banner.is-hidden,
.cookies-accepted .cookie-banner {
    display: none;
}

.cookie-banner__content {
    display: grid;
    gap: 0.9rem;
    width: min(100%, 66rem);
    margin: 0 auto;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(12, 27, 45, 0.96);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(7, 18, 31, 0.22);
}

.cookie-banner__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner__link {
    color: var(--color-gold-soft);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.cookie-banner__button {
    min-width: 9.75rem;
}

.page-hero,
.course-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, #17314f 100%);
    color: #fff;
}

.page-hero--inner {
    padding: 4.5rem 0 3.5rem;
}

.page-hero h1,
.course-hero h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
}

.content-grid,
.contact-layout,
.contact-grid,
.steps-grid,
.course-layout {
    display: grid;
    gap: 1.25rem;
}

.content-panel,
.content-aside,
.contact-card,
.contact-form-card,
.step-card,
.sidebar-card {
    border-radius: 1.5rem;
}

.content-panel,
.content-aside,
.contact-card,
.contact-form-card,
.step-card {
    padding: 1.5rem;
}

.content-panel p {
    margin-top: 0;
    color: var(--color-muted);
}

.legal-content {
    display: grid;
    gap: 1.15rem;
}

.legal-content h2 {
    margin-top: 1rem;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    color: var(--color-navy);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--color-muted);
    font-size: 1rem;
}

.legal-content ul {
    margin: -0.35rem 0 0;
    padding-left: 1.25rem;
}

.legal-content a {
    color: var(--color-navy-soft);
    text-decoration: underline;
    text-decoration-color: rgba(20, 41, 69, 0.28);
    text-underline-offset: 0.18em;
}

.content-aside img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    border-radius: 1rem;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(213, 168, 93, 0.2);
    color: var(--color-navy);
    font-weight: 800;
}

.step-card h2,
.contact-card h2 {
    margin-top: 1rem;
    font-size: 2rem;
    color: var(--color-navy);
}

.step-card p,
.contact-card p {
    margin: 0.8rem 0 0;
    color: var(--color-muted);
}

.contact-card__list {
    display: grid;
    gap: 0.95rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-card__list li {
    display: grid;
    gap: 0.2rem;
    color: var(--color-muted);
}

.contact-card__list strong {
    color: var(--color-navy);
    font-size: 0.95rem;
}

.contact-form-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-navy);
}

.contact-form-card p {
    margin: 0.8rem 0 0;
    color: var(--color-muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-form__grid {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(12, 27, 45, 0.15);
    border-radius: 1rem;
    background: #fff;
    color: var(--color-ink);
}

.contact-form textarea {
    resize: vertical;
    min-height: 9rem;
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.course-hero {
    background-position: center;
    background-size: cover;
}

.course-hero__grid {
    display: grid;
    gap: 1.2rem;
    padding: 4.5rem 0 3rem;
    align-items: start;
}

.course-help-box {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(12, 27, 45, 0.9);
    box-shadow: var(--shadow-soft);
}

.course-help-box h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: #fff;
}

.course-help-box p {
    margin: 0.7rem 0 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.course-content {
    display: grid;
    gap: 1.6rem;
}

.course-cover {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.course-block h2 {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
}

.rich-content {
    color: var(--color-muted);
}

.rich-content p:first-child,
.rich-content ul:first-child,
.rich-content ol:first-child {
    margin-top: 0;
}

.rich-content ul,
.rich-content ol {
    padding-left: 1.2rem;
}

.sidebar-card {
    position: sticky;
    top: 6.5rem;
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-size: 2.1rem;
    color: var(--color-navy);
}

.sidebar-card p {
    color: var(--color-muted);
}

@media (min-width: 680px) {
    .newsletter-form {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cookie-banner__content {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .courses-grid,
    .steps-grid,
    .contact-grid,
    .contact-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: none;
    }

    .site-nav {
        grid-column: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .site-header__cta {
        display: inline-flex;
    }

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

    .conviction-grid,
    .content-grid,
    .contact-layout,
    .course-layout,
    .site-footer__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .course-layout {
        align-items: start;
    }

    .course-hero__grid {
        grid-template-columns: minmax(0, 1.2fr) 320px;
        align-items: center;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 0.7fr 0.7fr;
    }

    .contact-layout {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 0.9rem;
        align-items: start;
    }

    .page-static .content-panel--media .content-panel__layout {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .page-static .institutional-grid {
        grid-template-columns: 3fr 1fr;
    }

    .page-course .course-hero__grid,
    .page-course .course-layout {
        grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 4.6rem 0;
    }

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

    .content-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .contact-layout {
        grid-template-columns: 0.78fr 1.22fr;
    }
}

.page-home .site-header__inner {
    min-height: 4rem;
}

.page-home .site-nav {
    justify-content: center;
    gap: 0.1rem;
}

.page-home .section-heading .section-eyebrow,
.page-home .conviction-content > .section-eyebrow {
    display: none;
}

.page-home .site-header__cta {
    min-height: 2.35rem;
    padding-inline: 1rem;
}

.page-home .hero--home {
    min-height: 27rem;
    background-position: 62% center;
}

.page-home .hero--home .hero__content {
    align-items: flex-start;
    padding-top: 13rem;
    padding-bottom: 14rem;
}

.page-home .hero--home .hero__copy {
    max-width: 40rem;
}

.page-home .hero--home h1 {
    font-size: clamp(1.68rem, 5.6vw, 3.44rem);
    max-width: 18ch;
}

.page-home .hero--home .hero__copy p {
    max-width: 36rem;
    font-size: 1.32rem;
    line-height: 1.45;
}

.page-home .hero--home .section-eyebrow {
    display: none;
}

.page-home .hero--home .hero__actions {
    gap: 0.55rem;
}

.page-home .hero--home .button--primary {
    background: #ffffff;
    color: var(--color-navy);
}

.page-home .hero--home .button--ghost-light {
    border-color: rgba(255, 255, 255, 0.7);
}

.page-home .section-heading p {
    max-width: 46rem;
    font-size: 1rem;
}

.page-home .section {
    padding: 2.7rem 0;
}

.page-home .features-grid {
    gap: 0.5rem;
}

.page-home .feature-card h3 {
    margin-bottom: 0.28rem;
    font-size: clamp(1rem, 1.55vw, 1.45rem);
    line-height: 1.1;
}

.page-home .feature-card p {
    font-size: 1rem;
    line-height: 1.35;
}

.page-home .feature-card--text {
    min-height: 11rem;
    padding: 1rem 0.95rem;
}

.page-home .feature-card__glyph {
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 0.8rem;
}

.page-home .courses-grid {
    gap: 0.9rem;
}

.page-home .course-card {
    border-radius: 0.9rem;
}

.page-home .course-card__content {
    row-gap: 1.1rem;
    padding: 0.8rem;
}

.page-home .course-card h3 {
    font-size: 1.2rem;
}

.page-home .courses-grid .course-card__content p {
    font-size: 1rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-home .accordion-card__trigger {
    padding: 0.95rem 1rem;
}

.page-home .conviction-content h2 {
    max-width: 100%;
    width: 100%;
}

.page-home .accordion-card__label > span {
    font-size: 1.25rem;
    line-height: 1.15;
}

.page-home .accordion-card__arrow {
    width: 2.4rem;
    height: 2.4rem;
    flex-basis: 2.4rem;
    font-size: 1.85rem;
}

.page-home .accordion-card__content {
    font-size: 1rem;
}

.page-home .newsletter-section {
    padding: 2.9rem 0 2.2rem;
}

.page-home .newsletter-box {
    max-width: 46rem;
    margin: 0 auto;
    padding: 0;
}

.page-home .newsletter-box h2 {
    font-size: 2.15rem;
    line-height: 1.06;
    max-width: 100%;
}

.page-home .site-footer__brand p,
.page-home .footer-links a,
.page-home .footer-links li,
.page-home .site-footer__bottom p,
.page-home .site-footer__meta a {
    font-size: 1rem;
}

.page-static .newsletter-section,
.page-courses .newsletter-section,
.page-course .newsletter-section {
    padding: 2.9rem 0 2.2rem;
}

.page-static .newsletter-box,
.page-courses .newsletter-box,
.page-course .newsletter-box {
    max-width: 46rem;
    margin: 0 auto;
    padding: 0;
}

.page-static .newsletter-box h2,
.page-courses .newsletter-box h2,
.page-course .newsletter-box h2 {
    font-size: 2.15rem;
    line-height: 1.06;
    max-width: 100%;
}

.page-static .page-hero,
.page-courses .page-hero {
    position: relative;
    overflow: hidden;
}

.page-static .page-hero::before,
.page-courses .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 16%, rgba(213, 168, 93, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%);
    pointer-events: none;
}

.page-static .page-hero .container,
.page-courses .page-hero .container {
    position: relative;
    z-index: 1;
}

.page-static .page-hero--inner,
.page-courses .page-hero--inner {
    padding: 5.25rem 0 4rem;
}

.page-static .page-hero h1,
.page-courses .page-hero h1 {
    max-width: 14ch;
    line-height: 1.02;
}

.page-static .page-hero p,
.page-courses .page-hero p {
    max-width: 42rem;
    font-size: 1.04rem;
    line-height: 1.6;
}

.page-static .section,
.page-courses .section,
.page-course .section {
    padding: 3rem 0;
}

.page-static .content-grid,
.page-static .contact-layout,
.page-static .steps-grid,
.page-courses .courses-grid,
.page-course .course-layout {
    gap: 1rem;
}

.page-static .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
}

.page-static .content-panel,
.page-static .content-aside,
.page-static .contact-card,
.page-static .contact-form-card,
.page-static .step-card,
.page-course .course-block,
.page-course .sidebar-card {
    border-radius: 1rem;
    border: 1px solid rgba(12, 27, 45, 0.07);
    box-shadow: 0 14px 36px rgba(7, 18, 31, 0.08);
    background: var(--color-surface);
}

.page-static .content-panel,
.page-static .contact-card,
.page-static .contact-form-card,
.page-static .step-card,
.page-course .course-block {
    padding: 1.6rem;
}

.page-static .content-panel h2,
.page-static .contact-card h2,
.page-static .contact-form-card h2,
.page-static .step-card h2,
.page-course .course-block h2,
.page-course .sidebar-card h3 {
    font-size: clamp(1.5rem, 2.8vw, 2.15rem);
    line-height: 1.08;
}

.page-static .content-panel p,
.page-static .content-panel li,
.page-static .rich-content,
.page-static .step-card p,
.page-static .contact-card p,
.page-static .contact-card__list li,
.page-course .rich-content {
    font-size: 1rem;
    line-height: 1.72;
}

.page-static .content-panel p:last-child,
.page-static .contact-card p:last-child,
.page-static .contact-form-card p:last-child,
.page-static .step-card p:last-child,
.page-course .rich-content p:last-child {
    margin-bottom: 0;
}

.page-static .content-panel--media .content-panel__layout {
    display: grid;
    gap: 1.15rem;
    align-items: center;
}

.page-static .content-panel__visual img {
    width: 100%;
    min-height: 18rem;
    object-fit: cover;
    border-radius: 0.95rem;
}

.page-static .content-aside img {
    min-height: 22rem;
    border-radius: 0.95rem;
}

.page-static .step-card {
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.page-static .step-card span {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.15rem;
}

.page-static .step-card h2 {
    margin-bottom: 0.7rem;
}

.page-static .steps-grid--compact .step-card {
    gap: 0.45rem;
}

.page-static .steps-grid--compact .step-card span {
    margin-bottom: 0;
}

.page-static .steps-grid--compact .step-card h2 {
    margin-bottom: 0.3rem;
}

.page-static .content-panel--spacious-title h2 {
    margin-bottom: 1.25rem;
}

.page-static .content-panel .rich-content + .button--primary {
    margin-top: 1.35rem;
}

.page-static .contact-form-card .button--primary,
.page-static .content-panel .button--primary {
    background: var(--color-navy-soft);
    color: #fff;
    box-shadow: 0 12px 28px rgba(20, 41, 69, 0.16);
}

.page-static .contact-form input,
.page-static .contact-form textarea {
    border-radius: 0.95rem;
}

.page-static .legal-content {
    max-width: 100%;
}

.page-courses .courses-grid {
    gap: 1rem;
}

.page-courses .course-card {
    border-radius: 1rem;
}

.page-courses .course-card__content {
    row-gap: 1rem;
    padding: 0.95rem;
}

.page-courses .course-card h3 {
    font-size: 1.18rem;
}

.page-courses .courses-grid .course-card__content p {
    font-size: 1rem;
    line-height: 1.55;
}

.page-course .course-hero__copy {
    width: 100%;
    max-width: none;
}

.page-course .course-hero__copy p {
    width: 100%;
    max-width: none;
}

.page-course .course-content {
    gap: 1.25rem;
}

.page-course .course-cover {
    border-radius: 1rem;
}

.page-course .course-block {
    margin: 0;
}

.page-course .course-block h2 {
    margin-bottom: 1rem;
}

.page-course .sidebar-card {
    padding: 1.55rem;
}

.page-course .sidebar-card--mobile-help {
    display: none;
    background: rgba(12, 27, 45, 0.94);
    border-color: rgba(12, 27, 45, 0.2);
    box-shadow: var(--shadow-soft);
}

.page-course .sidebar-card--mobile-help h3 {
    color: #fff;
}

.page-course .sidebar-card--mobile-help p {
    color: rgba(255, 255, 255, 0.82);
}

.page-course .course-sidebar {
    display: grid;
    gap: 1rem;
}

.page-course .course-sidebar__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.8rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(12, 27, 45, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-navy);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 10px 24px rgba(7, 18, 31, 0.06);
}

@media (max-width: 520px) {
    .page-home .hero--home {
        min-height: 23rem;
        background-position: 64% center;
    }

    .page-home .hero--home .hero__content {
        align-items: flex-start;
        padding-top: 8.8rem;
        padding-bottom: 14rem;
    }

    .page-home .hero--home .hero__copy {
        max-width: 28.8rem;
    }

    .page-home .hero--home h1 {
        font-size: 1.44rem;
        max-width: 16ch;
        line-height: 1.08;
    }

    .page-home .hero--home .hero__copy p {
        font-size: 1.1rem;
    }

    .page-home .hero--home .button {
        min-height: 2.25rem;
        padding: 0.55rem 0.95rem;
        font-size: 0.68rem;
    }

    .page-home .newsletter-box h2 {
        font-size: 1.85rem;
    }

    .page-home .newsletter-form,
    .page-static .newsletter-form,
    .page-courses .newsletter-form,
    .page-course .newsletter-form {
        max-width: 21rem;
    }

    .page-static .newsletter-box h2,
    .page-courses .newsletter-box h2,
    .page-course .newsletter-box h2 {
        font-size: 1.85rem;
    }

    .page-static .page-hero--inner,
    .page-courses .page-hero--inner {
        padding: 4.3rem 0 3.15rem;
    }

    .page-static .page-hero p,
    .page-courses .page-hero p {
        font-size: 1rem;
    }

    .page-home .conviction-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }

    .page-home .conviction-visual {
        align-self: end;
    }

    .page-home .conviction-visual img {
        width: min(100%, 12rem);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.5rem;
    }

    .page-course .course-help-box--hero,
    .page-course .sidebar-card--desktop {
        display: none;
    }

    .page-course .sidebar-card--mobile-help {
        display: block;
    }

    .page-course .sidebar-card {
        position: static;
    }

    .site-header__cta {
        display: none !important;
    }

    .site-logo img {
        width: clamp(188px, 47.5vw, 320px);
    }

    .page-home .conviction-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
    }

    .page-home .conviction-content {
        order: 1;
    }

    .page-home .conviction-visual {
        order: 2;
        justify-content: center;
        align-self: start;
        margin-top: 0.1rem;
    }

    .page-home .conviction-visual img {
        width: min(100%, 13rem);
    }

    .site-footer__bottom {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .site-footer__bottom p {
        width: 100%;
        white-space: normal;
    }

    .site-footer__meta {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 360px) {
    .feature-card--text {
        min-height: 10rem;
        padding: 0.85rem 0.7rem;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .page-static .content-grid,
    .page-static .contact-layout {
        grid-template-columns: 1.04fr 0.96fr;
    }

    .page-static .institutional-grid {
        grid-template-columns: 3fr 1fr;
    }

    .page-static .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-static .contact-layout {
        gap: 0.65rem;
    }

    .page-static .contact-form-card {
        margin-left: -0.15rem;
    }

    .page-home .newsletter-form {
        position: relative;
        display: block;
        max-width: 42rem;
        margin-top: 1.55rem;
    }

    .page-static .newsletter-form,
    .page-courses .newsletter-form,
    .page-course .newsletter-form {
        position: relative;
        display: block;
        max-width: 42rem;
        margin-top: 1.55rem;
    }

    .page-home .newsletter-form input {
        min-height: 3.45rem;
        padding-right: 11rem;
    }

    .page-static .newsletter-form input,
    .page-courses .newsletter-form input,
    .page-course .newsletter-form input {
        min-height: 3.45rem;
        padding-right: 11rem;
    }

    .page-home .newsletter-form__button {
        position: absolute;
        top: 50%;
        right: 0.38rem;
        min-height: 2.7rem;
        padding-inline: 1.5rem;
        transform: translateY(-50%);
        box-shadow: 0 10px 24px rgba(20, 41, 69, 0.12);
    }

    .page-static .newsletter-form__button,
    .page-courses .newsletter-form__button,
    .page-course .newsletter-form__button {
        position: absolute;
        top: 50%;
        right: 0.38rem;
        min-height: 2.7rem;
        padding-inline: 1.5rem;
        transform: translateY(-50%);
        box-shadow: 0 10px 24px rgba(20, 41, 69, 0.12);
    }
}
