:root {
    --green-950: #07382d;
    --green-900: #0a4637;
    --green-800: #0b5a44;
    --green-700: #107256;
    --green-600: #138a66;
    --green-100: #dff3eb;
    --green-50: #f0faf6;
    --orange-600: #ee8a10;
    --orange-500: #ff9f1c;
    --yellow-400: #ffd83d;
    --charcoal-950: #111817;
    --charcoal-900: #17211f;
    --charcoal-800: #25302e;
    --charcoal-700: #3d4946;
    --gray-600: #68736f;
    --gray-500: #87908d;
    --gray-400: #aab1af;
    --gray-300: #d3d9d7;
    --gray-200: #e6eae8;
    --gray-100: #f1f4f3;
    --gray-50: #f8faf9;
    --white: #ffffff;
    --danger: #b42318;
    --success: #067647;
    --warning: #b54708;
    --container: 1180px;
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 8px 24px rgba(16, 44, 35, 0.07);
    --shadow-md: 0 18px 50px rgba(16, 44, 35, 0.12);
    --shadow-lg: 0 28px 80px rgba(8, 38, 29, 0.2);
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--charcoal-800);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, var(--green-100), var(--gray-100));
}

svg {
    display: block;
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--charcoal-950);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--gray-600);
}

::selection {
    color: var(--charcoal-950);
    background: var(--yellow-400);
}

:focus-visible {
    outline: 3px solid rgba(255, 159, 28, 0.55);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section--soft {
    background: var(--gray-50);
}

.lead {
    color: var(--charcoal-700);
    font-size: 1.12rem;
    line-height: 1.8;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-900);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    width: 30px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--orange-500), var(--yellow-400));
}

.section-eyebrow--light {
    color: var(--yellow-400);
}

.section-heading {
    margin-bottom: 46px;
}

.section-heading h2 {
    max-width: 720px;
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 670px;
    margin-bottom: 0;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 70px;
    align-items: end;
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading__side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.section-heading__side p {
    margin: 0;
}

.section-heading--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-heading--center h2 {
    margin-inline: auto;
}

.section-heading--center p {
    margin-inline: auto;
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 21px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.2;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--charcoal-950);
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
    box-shadow: 0 10px 28px rgba(238, 138, 16, 0.26);
}

.btn--primary:hover {
    box-shadow: 0 16px 36px rgba(238, 138, 16, 0.35);
}

.btn--dark {
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 10px 28px rgba(7, 56, 45, 0.2);
}

.btn--dark:hover {
    background: var(--green-800);
}

.btn--light {
    color: var(--green-950);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.btn--outline-light:hover {
    color: var(--green-950);
    border-color: var(--white);
    background: var(--white);
}

.btn--outline-dark {
    color: var(--green-900);
    border-color: var(--green-900);
    background: transparent;
}

.btn--outline-dark:hover {
    color: var(--white);
    background: var(--green-900);
}

.btn--lg {
    min-height: 54px;
    padding: 15px 26px;
    font-size: 0.98rem;
}

.btn--sm {
    min-height: 38px;
    padding: 8px 15px;
    font-size: 0.82rem;
}

.btn--block {
    width: 100%;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-700);
    font-size: 0.92rem;
    font-weight: 800;
}

.text-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(4px);
}

/* Topbar and navigation */
.topbar {
    position: relative;
    z-index: 110;
    color: rgba(255, 255, 255, 0.82);
    background: var(--charcoal-950);
    font-size: 0.78rem;
}

.topbar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__contacts,
.topbar__hours,
.topbar__contacts a {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar__contacts a,
.topbar__hours {
    gap: 7px;
}

.topbar svg {
    width: 14px;
    height: 14px;
    color: var(--yellow-400);
}

.topbar a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(23, 33, 31, 0.06);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 36px rgba(7, 56, 45, 0.1);
}

.navbar {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 62px;
    height: 55px;
    object-fit: contain;
    background: transparent;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand__copy strong {
    color: var(--green-950);
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand__copy small {
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.primary-nav > ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 3px;
    list-style: none;
}

.primary-nav > ul a {
    position: relative;
    display: block;
    padding: 29px 9px 27px;
    color: var(--charcoal-700);
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
}

.primary-nav > ul a::after {
    position: absolute;
    right: 9px;
    bottom: 19px;
    left: 9px;
    height: 2px;
    content: "";
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.primary-nav > ul a:hover,
.primary-nav > ul a.is-active {
    color: var(--green-800);
}

.primary-nav > ul a:hover::after,
.primary-nav > ul a.is-active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 13px;
}

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-600);
    font-size: 0.82rem;
    font-weight: 750;
}

.nav-login svg {
    width: 17px;
    height: 17px;
}

.nav-login:hover,
.nav-login.is-active {
    color: var(--green-700);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--green-50);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--green-900);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgba(4, 24, 19, 0.55);
    backdrop-filter: blur(3px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 770px;
    padding: 104px 0 0;
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.hero__media,
.hero__overlay,
.hero__grid-pattern {
    position: absolute;
    inset: 0;
}

.hero__media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(4, 34, 26, 0.98) 0%, rgba(5, 49, 37, 0.9) 48%, rgba(4, 34, 26, 0.35) 100%);
}

.hero__grid-pattern {
    opacity: 0.15;
    background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
    gap: 84px;
    align-items: center;
}

.hero__content {
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__eyebrow-dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--yellow-400);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 216, 61, 0.12);
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3rem, 5.6vw, 5rem);
    line-height: 1.05;
}

.hero h1 span {
    color: var(--yellow-400);
}

.hero__content > p {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

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

.hero__proof {
    display: flex;
    margin-top: 36px;
    align-items: center;
    gap: 16px;
}

.hero__avatars {
    display: flex;
    padding-left: 8px;
}

.hero__avatars span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-left: -8px;
    place-items: center;
    color: var(--green-950);
    background: var(--white);
    border: 3px solid var(--green-900);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 850;
}

.hero__avatars span:nth-child(2) {
    background: var(--yellow-400);
}

.hero__avatars span:nth-child(3) {
    background: var(--orange-500);
}

.hero__proof > div:last-child {
    display: flex;
    flex-direction: column;
}

.hero__proof strong {
    font-size: 0.86rem;
}

.hero__proof span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
}

.hero-card {
    position: relative;
    padding: 28px;
    color: var(--charcoal-800);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.hero-card::before {
    position: absolute;
    top: -11px;
    right: 32px;
    width: 58px;
    height: 11px;
    content: "";
    background: linear-gradient(90deg, var(--yellow-400), var(--orange-500));
    border-radius: 10px 10px 0 0;
}

.hero-card__head {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.hero-card__head span {
    color: var(--gray-500);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card__head strong {
    color: var(--green-700);
    font-size: 0.78rem;
}

.hero-card__program {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: var(--radius-md);
}

.hero-card__icon svg {
    width: 25px;
    height: 25px;
}

.hero-card__program > div:last-child {
    display: flex;
    flex-direction: column;
}

.hero-card__program span {
    color: var(--gray-500);
    font-size: 0.72rem;
}

.hero-card__program strong {
    color: var(--charcoal-950);
    font-size: 1.16rem;
}

.hero-card__list {
    display: grid;
    margin: 25px 0;
    padding: 0;
    gap: 13px;
    list-style: none;
    color: var(--charcoal-700);
    font-size: 0.88rem;
}

.check-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

.hero-card__note {
    margin: 14px 0 0;
    color: var(--gray-500);
    font-size: 0.72rem;
    text-align: center;
}

.trust-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 86px;
    padding: 22px 30px;
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -12px 40px rgba(4, 28, 22, 0.18);
}

.trust-item {
    display: flex;
    padding: 9px 24px;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--gray-200);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-700);
    background: var(--green-50);
    border-radius: 50%;
}

.trust-item__icon svg {
    width: 23px;
    height: 23px;
}

.trust-item > div:last-child {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--charcoal-900);
    font-size: 0.9rem;
}

.trust-item span {
    color: var(--gray-500);
    font-size: 0.72rem;
}

/* Cards and home sections */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.training-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.training-card:hover {
    border-color: rgba(16, 114, 86, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.training-card__image {
    position: relative;
    display: block;
    height: 215px;
    overflow: hidden;
    background: var(--green-100);
}

.training-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(4, 35, 27, 0.35), transparent 60%);
}

.training-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.training-card:hover .training-card__image img {
    transform: scale(1.06);
}

.training-card__category {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 6px 11px;
    color: var(--green-950);
    background: var(--yellow-400);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.training-card__body {
    padding: 23px;
}

.training-card__meta {
    display: flex;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 12px;
}

.training-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: 0.7rem;
    font-weight: 700;
}

.training-card__meta svg {
    width: 14px;
    height: 14px;
    color: var(--green-600);
}

.training-card h3 {
    margin-bottom: 12px;
    font-size: 1.22rem;
}

.training-card h3 a:hover {
    color: var(--green-700);
}

.training-card p {
    display: -webkit-box;
    min-height: 76px;
    margin-bottom: 18px;
    overflow: hidden;
    font-size: 0.88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.about-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 90px;
    align-items: center;
}

.about-preview__visual {
    position: relative;
    min-height: 570px;
}

.about-preview__image {
    position: absolute;
    top: 0;
    right: 28px;
    bottom: 25px;
    left: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview__badge {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: flex;
    width: 225px;
    padding: 24px;
    flex-direction: column;
    color: var(--white);
    background: var(--green-900);
    border: 7px solid var(--gray-50);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-preview__badge strong {
    color: var(--yellow-400);
    font-size: 1.3rem;
}

.about-preview__badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.about-preview__shape {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 130px;
    height: 130px;
    opacity: 0.5;
    background-image: radial-gradient(var(--orange-500) 2px, transparent 2px);
    background-size: 13px 13px;
}

.about-preview__content h2 {
    margin-bottom: 20px;
}

.commitment-list {
    display: grid;
    margin: 30px 0;
    gap: 16px;
}

.commitment-list > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 13px;
    align-items: start;
}

.commitment-list span {
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 850;
}

.commitment-list strong {
    color: var(--charcoal-900);
    font-size: 0.95rem;
}

.commitment-list p {
    margin: 2px 0 0;
    font-size: 0.82rem;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.advantage-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.advantage-card__number {
    position: absolute;
    top: -17px;
    right: 12px;
    color: rgba(11, 90, 68, 0.06);
    font-size: 5.7rem;
    font-weight: 900;
    line-height: 1;
}

.advantage-card:hover .advantage-card__number {
    color: rgba(255, 255, 255, 0.06);
}

.advantage-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--green-700);
    background: var(--green-50);
    border-radius: var(--radius-md);
}

.advantage-card__icon svg {
    width: 25px;
    height: 25px;
}

.advantage-card:hover .advantage-card__icon {
    color: var(--charcoal-950);
    background: var(--yellow-400);
}

.advantage-card h3 {
    position: relative;
    margin-bottom: 10px;
}

.advantage-card p {
    position: relative;
    margin: 0;
    font-size: 0.86rem;
}

.advantage-card:hover h3,
.advantage-card:hover p {
    color: var(--white);
}

.schedule-preview {
    overflow: hidden;
    background: var(--green-950);
}

.schedule-preview__background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.2) 46%, transparent 46%);
    background-size: 32px 32px;
}

.schedule-preview .container {
    position: relative;
}

.schedule-preview__list {
    display: grid;
    gap: 14px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 140px 1fr 52px;
    padding: 17px 18px;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    transition: background var(--transition), transform var(--transition);
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(5px);
}

.schedule-row__date {
    display: flex;
    padding-right: 20px;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-row__date > span {
    color: var(--yellow-400);
    font-size: 1.15rem;
    font-weight: 850;
}

.schedule-row__date small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
}

.schedule-row__main h3 {
    margin: 7px 0 6px;
    color: var(--white);
    font-size: 1.08rem;
}

.schedule-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.schedule-row__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.schedule-row__meta svg {
    width: 14px;
    height: 14px;
    color: var(--yellow-400);
}

.schedule-row__action {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--green-950);
    background: var(--yellow-400);
    border-radius: 50%;
}

.schedule-row__action:hover {
    transform: rotate(-35deg);
}

.status-badge,
.method-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 850;
    line-height: 1;
}

.status-badge--tersedia {
    color: #05603a;
    background: #d9f7e8;
}

.status-badge--hampir-penuh {
    color: #99540a;
    background: #fff1d6;
}

.status-badge--ditutup {
    color: #9d241c;
    background: #fee4e2;
}

.method-badge {
    color: var(--green-800);
    background: var(--green-100);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.process-grid::before {
    position: absolute;
    z-index: 0;
    top: 37px;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--green-200, #c1e6d8), var(--orange-500));
}

.process-card {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    text-align: center;
}

.process-card__number {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    place-items: center;
    color: var(--green-800);
    background: var(--white);
    border: 1px solid var(--green-100);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 900;
}

.process-card:nth-child(even) .process-card__number {
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-color: var(--yellow-400);
}

.process-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-card p {
    margin: 0;
    font-size: 0.78rem;
}

.statistics-section {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    background: var(--green-900);
}

.statistics-section__pattern {
    position: absolute;
    top: -130px;
    right: -80px;
    width: 460px;
    height: 460px;
    opacity: 0.12;
    border: 100px solid var(--yellow-400);
    border-radius: 50%;
}

.statistics-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.statistics-intro h2,
.statistics-intro p {
    color: var(--white);
}

.statistics-intro p {
    margin: 0;
    opacity: 0.72;
}

.statistics-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.stat-card {
    display: flex;
    min-height: 145px;
    padding: 26px;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
}

.stat-card strong {
    color: var(--yellow-400);
    font-size: 2.5rem;
    line-height: 1;
}

.stat-card > span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 165px;
    gap: 14px;
}

.gallery-mosaic__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-mosaic__item--1,
.gallery-mosaic__item--4 {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-mosaic__item--2,
.gallery-mosaic__item--3,
.gallery-mosaic__item--5,
.gallery-mosaic__item--6 {
    grid-column: span 3.5;
}

.gallery-mosaic__item--2,
.gallery-mosaic__item--5 {
    grid-column: span 4;
}

.gallery-mosaic__item--3,
.gallery-mosaic__item--6 {
    grid-column: span 3;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.gallery-mosaic__item:hover img {
    transform: scale(1.07);
}

.gallery-mosaic__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: linear-gradient(to top, rgba(4, 30, 23, 0.88), transparent 68%);
}

.gallery-mosaic__overlay span {
    color: var(--yellow-400);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-mosaic__overlay strong {
    font-size: 0.96rem;
}

.logo-slider {
    position: relative;
    overflow: hidden;
}

.logo-slider__track {
    display: flex;
    gap: 16px;
    transition: transform 400ms ease;
}

.partner-logo {
    display: flex;
    min-width: calc((100% - 48px) / 4);
    min-height: 105px;
    padding: 18px;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.partner-logo > span {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-800);
    background: var(--green-50);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 900;
}

.partner-logo > div {
    display: flex;
    flex-direction: column;
}

.partner-logo strong {
    color: var(--charcoal-900);
    font-size: 0.82rem;
}

.partner-logo small {
    color: var(--gray-500);
    font-size: 0.68rem;
}

.slider-controls {
    display: flex;
    margin-top: 24px;
    justify-content: center;
    gap: 9px;
}

.slider-controls--left {
    justify-content: flex-start;
}

.slider-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: var(--green-800);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
}

.slider-controls button:hover {
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-color: var(--yellow-400);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.testimonials-intro p {
    max-width: 430px;
}

.testimonial-slider {
    position: relative;
    min-height: 330px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: var(--green-950);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateX(20px);
    transition: opacity 350ms ease, transform 350ms ease, visibility 350ms ease;
}

.testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card__quote {
    position: absolute;
    top: 14px;
    right: 32px;
    color: rgba(255, 216, 61, 0.18);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
}

.testimonial-card > p {
    position: relative;
    margin-bottom: 28px;
    color: var(--white);
    font-size: 1.17rem;
    line-height: 1.75;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-card__person > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.testimonial-card__person > div {
    display: flex;
    flex-direction: column;
}

.testimonial-card__person strong {
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-card__person small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
}

.cta-section__shape {
    position: absolute;
    top: -100px;
    right: 5%;
    width: 340px;
    height: 340px;
    opacity: 0.1;
    border: 70px solid var(--yellow-400);
    border-radius: 50%;
}

.cta-section__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-section h2 {
    max-width: 680px;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-section p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.cta-section__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

/* Page header */
.page-header {
    position: relative;
    padding: 86px 0 90px;
    overflow: hidden;
    background: linear-gradient(130deg, var(--green-950), var(--green-800));
}

.page-header::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.13;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 70px 70px;
}

.page-header__shape {
    position: absolute;
    border-radius: 50%;
}

.page-header__shape--one {
    top: -140px;
    right: 10%;
    width: 360px;
    height: 360px;
    border: 70px solid rgba(255, 216, 61, 0.12);
}

.page-header__shape--two {
    right: 2%;
    bottom: -80px;
    width: 190px;
    height: 190px;
    background: rgba(255, 255, 255, 0.05);
}

.page-header__inner {
    position: relative;
    max-width: var(--container);
}

.page-header h1 {
    max-width: 900px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.page-header p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.breadcrumb {
    display: flex;
    margin-bottom: 23px;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.breadcrumb a:hover {
    color: var(--yellow-400);
}

.breadcrumb--light {
    color: rgba(255, 255, 255, 0.65);
}

/* About */
.profile-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: center;
}

.profile-grid__content h2 {
    margin-bottom: 20px;
}

.profile-highlight {
    display: flex;
    margin-top: 28px;
    padding: 20px;
    align-items: center;
    gap: 16px;
    background: var(--green-50);
    border-left: 4px solid var(--green-700);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.profile-highlight svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    color: var(--green-700);
}

.profile-highlight > div {
    display: flex;
    flex-direction: column;
}

.profile-highlight strong {
    color: var(--charcoal-900);
}

.profile-highlight span {
    color: var(--gray-600);
    font-size: 0.82rem;
}

.profile-grid__visual {
    position: relative;
    min-height: 560px;
}

.profile-grid__visual > img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.profile-grid__floating-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    padding: 22px 25px;
    flex-direction: column;
    color: var(--white);
    background: var(--green-900);
    border: 6px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.profile-grid__floating-card span {
    color: var(--yellow-400);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-grid__floating-card strong {
    font-size: 0.92rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vision-card {
    position: relative;
    min-height: 390px;
    padding: 44px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.vision-card--primary {
    color: var(--white);
    background: var(--green-900);
    border-color: var(--green-900);
}

.vision-card__label {
    display: inline-flex;
    margin-bottom: 40px;
    padding: 7px 13px;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.vision-card--primary .vision-card__label {
    color: var(--charcoal-950);
    background: var(--yellow-400);
}

.vision-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.vision-card--primary h2 {
    max-width: 650px;
    color: var(--white);
}

.vision-card__icon {
    position: absolute;
    right: -35px;
    bottom: -35px;
    display: grid;
    width: 160px;
    height: 160px;
    place-items: center;
    color: rgba(255, 216, 61, 0.3);
    border: 2px solid rgba(255, 216, 61, 0.16);
    border-radius: 50%;
}

.vision-card__icon svg {
    width: 60px;
    height: 60px;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 15px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--charcoal-700);
    font-size: 0.9rem;
}

.check-list li > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

.check-list--grid {
    grid-template-columns: repeat(2, 1fr);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.value-card {
    padding: 27px 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.value-card > span {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-weight: 900;
}

.value-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.value-card p {
    margin: 0;
    font-size: 0.78rem;
}

.commitment-section {
    padding: 0;
    background: var(--green-950);
}

.commitment-section__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    min-height: 600px;
    align-items: stretch;
}

.commitment-section__content {
    padding: 90px 80px 90px 0;
}

.commitment-section__content h2,
.commitment-section__content p {
    color: var(--white);
}

.commitment-section__content p {
    opacity: 0.7;
}

.commitment-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
    gap: 16px;
}

.commitment-metrics > div {
    display: flex;
    min-height: 100px;
    padding: 18px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.commitment-metrics strong {
    color: var(--yellow-400);
    font-size: 1.05rem;
}

.commitment-metrics span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.commitment-section__image {
    min-height: 600px;
}

.commitment-section__image img {
    width: calc(100% + max(20px, (100vw - var(--container)) / 2));
    height: 100%;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.team-card {
    display: flex;
    padding: 25px;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.team-card__avatar {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--charcoal-950);
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
    border-radius: 50%;
    font-weight: 900;
}

.team-card h3 {
    margin: 0 0 3px;
    font-size: 1rem;
}

.team-card p {
    margin: 0;
    font-size: 0.74rem;
}

.team-card__tag {
    margin-left: auto;
    padding: 5px 8px;
    color: var(--green-700);
    background: var(--green-50);
    border-radius: 999px;
    font-size: 0.63rem;
    font-weight: 800;
}

.legal-section__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.legal-placeholder {
    display: grid;
    gap: 12px;
}

.legal-placeholder > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    padding: 18px 20px;
    column-gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.legal-placeholder span {
    display: grid;
    width: 46px;
    height: 46px;
    grid-row: 1 / span 2;
    place-items: center;
    color: var(--green-800);
    background: var(--green-50);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.legal-placeholder strong {
    color: var(--charcoal-900);
}

.legal-placeholder small {
    color: var(--gray-500);
}

/* Filters and training page */
.filter-panel,
.schedule-filter {
    margin-bottom: 44px;
    padding: 30px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.filter-panel__head,
.schedule-filter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.filter-panel__head {
    margin-bottom: 24px;
}

.filter-panel__head h2,
.schedule-filter__title h2 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.filter-panel__head p {
    max-width: 410px;
    margin: 0;
    font-size: 0.82rem;
}

.filter-controls,
.schedule-filter__controls {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) repeat(2, minmax(160px, 0.65fr)) auto;
    gap: 12px;
    align-items: end;
}

.filter-search {
    position: relative;
}

.filter-search svg {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    transform: translateY(-50%);
}

.filter-search input,
.filter-select select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    color: var(--charcoal-800);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.filter-search input {
    height: 50px;
    padding: 0 16px 0 44px;
}

.filter-select {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-select label {
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 800;
}

.filter-select select {
    height: 50px;
    padding: 0 37px 0 13px;
}

.filter-search input:focus,
.filter-select select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(19, 138, 102, 0.1);
    outline: 0;
}

.filter-reset {
    height: 50px;
    padding: 0 18px;
    color: var(--green-800);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
}

.filter-reset:hover {
    border-color: var(--green-600);
}

.filter-summary {
    margin-top: 16px;
    color: var(--gray-500);
    font-size: 0.78rem;
}

.filter-summary span {
    color: var(--green-800);
    font-weight: 900;
}

.training-grid--page {
    grid-template-columns: repeat(3, 1fr);
}

.empty-state {
    padding: 60px 30px;
    text-align: center;
}

.empty-state__icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    place-items: center;
    color: var(--green-700);
    background: var(--green-50);
    border-radius: 50%;
}

.empty-state__icon svg {
    width: 32px;
    height: 32px;
}

.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 20px;
}

.custom-training-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.custom-training-grid__image {
    position: relative;
    height: 490px;
}

.custom-training-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.custom-training-grid__image > span {
    position: absolute;
    right: -20px;
    bottom: 30px;
    padding: 14px 20px;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border: 5px solid var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.custom-training-grid .check-list {
    margin: 25px 0 30px;
}

/* Training detail */
.training-hero {
    position: relative;
    min-height: 590px;
    padding: 90px 0;
    overflow: hidden;
    background: var(--green-950);
}

.training-hero__media,
.training-hero__overlay {
    position: absolute;
    inset: 0;
}

.training-hero__media {
    background-position: center;
    background-size: cover;
}

.training-hero__overlay {
    background: linear-gradient(90deg, rgba(4, 31, 24, 0.98) 0%, rgba(4, 45, 34, 0.92) 52%, rgba(4, 31, 24, 0.45) 100%);
}

.training-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
}

.training-hero__category {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 12px;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.training-hero h1 {
    max-width: 820px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.2rem);
}

.training-hero__inner > p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

.training-hero__meta {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 15px;
}

.training-hero__meta > div {
    display: flex;
    min-width: 180px;
    padding: 15px 18px;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.training-hero__meta svg {
    width: 23px;
    height: 23px;
    color: var(--yellow-400);
}

.training-hero__meta span {
    display: flex;
    flex-direction: column;
}

.training-hero__meta small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.65rem;
}

.training-hero__meta strong {
    color: var(--white);
    font-size: 0.82rem;
}

.training-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.training-detail-main {
    display: grid;
    gap: 22px;
}

.content-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 36px;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.content-card__number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--green-700);
    background: var(--green-50);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.content-card h2 {
    margin-bottom: 17px;
    font-size: 1.85rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card--compact {
    display: block;
    padding: 30px;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-list span {
    padding: 8px 12px;
    color: var(--green-800);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 750;
}

.module-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.module-list > div {
    display: flex;
    min-height: 72px;
    padding: 15px;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}

.module-list span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-size: 0.66rem;
    font-weight: 900;
}

.module-list strong {
    color: var(--charcoal-800);
    font-size: 0.8rem;
}

.plain-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.plain-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--gray-600);
    font-size: 0.82rem;
}

.plain-list li span {
    width: 7px;
    height: 7px;
    margin-top: 8px;
    flex: 0 0 auto;
    background: var(--orange-500);
    border-radius: 50%;
}

.certificate-card {
    display: flex;
    padding: 32px;
    align-items: center;
    gap: 22px;
    color: var(--white);
    background: var(--green-900);
    border-radius: var(--radius-lg);
}

.certificate-card__icon {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-radius: 50%;
}

.certificate-card__icon svg {
    width: 34px;
    height: 34px;
}

.certificate-card span {
    color: var(--yellow-400);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.certificate-card h2 {
    margin: 3px 0 8px;
    color: var(--white);
    font-size: 1.5rem;
}

.certificate-card p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.certificate-card small {
    color: rgba(255, 255, 255, 0.5);
}

.training-detail-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.enrollment-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 5px solid var(--orange-500);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.enrollment-card__eyebrow {
    color: var(--green-700);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.enrollment-card h2 {
    margin: 8px 0 10px;
    font-size: 1.45rem;
}

.enrollment-card > p {
    font-size: 0.82rem;
}

.enrollment-card__facts {
    display: grid;
    margin: 22px 0;
    gap: 8px;
}

.enrollment-card__facts > div {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.enrollment-card__facts span {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.enrollment-card__facts strong {
    color: var(--charcoal-800);
    font-size: 0.75rem;
    text-align: right;
}

.enrollment-card .btn + .btn {
    margin-top: 10px;
}

.enrollment-card__note {
    display: block;
    margin-top: 14px;
    color: var(--gray-500);
    text-align: center;
}

.sidebar-contact {
    display: flex;
    padding: 23px;
    flex-direction: column;
    color: var(--white);
    background: var(--green-900);
    border-radius: var(--radius-md);
}

.sidebar-contact span {
    color: var(--yellow-400);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sidebar-contact strong {
    font-size: 1.25rem;
}

.sidebar-contact p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.related-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-schedule-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.related-schedule-card h3 {
    margin: 18px 0 12px;
}

.related-schedule-card > div {
    display: flex;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}

.related-schedule-card > div span {
    padding: 5px 9px;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 999px;
    font-size: 0.68rem;
}

.schedule-contact-card {
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.schedule-contact-card h3,
.schedule-contact-card p {
    margin-bottom: 5px;
}

/* Schedule */
.schedule-filter {
    align-items: end;
}

.schedule-filter__title {
    flex: 0 0 auto;
}

.schedule-filter__controls {
    grid-template-columns: repeat(4, minmax(125px, 1fr)) auto;
    flex: 1;
}

.schedule-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.schedule-table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.schedule-table th {
    color: var(--gray-500);
    background: var(--gray-50);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.schedule-table td {
    color: var(--gray-600);
    font-size: 0.78rem;
}

.schedule-table tbody tr:last-child td {
    border-bottom: 0;
}

.schedule-table tbody tr:hover {
    background: var(--green-50);
}

.schedule-table td > a:first-child,
.schedule-table td:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.schedule-table td strong {
    color: var(--charcoal-900);
    font-size: 0.82rem;
}

.schedule-table td span:not(.status-badge):not(.method-badge) {
    color: var(--gray-500);
    font-size: 0.68rem;
}

.closed-label {
    color: var(--gray-400);
    font-size: 0.72rem;
    font-weight: 750;
}

.schedule-mobile-list {
    display: none;
}

.schedule-note__grid {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 75px;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.note-grid article {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.note-grid span {
    color: var(--orange-600);
    font-size: 0.72rem;
    font-weight: 900;
}

.note-grid h3 {
    margin: 17px 0 8px;
    font-size: 0.95rem;
}

.note-grid p {
    margin: 0;
    font-size: 0.76rem;
}

/* Gallery */
.gallery-filter {
    display: flex;
    margin-bottom: 42px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.gallery-filter h2 {
    margin-bottom: 0;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pills button {
    padding: 9px 14px;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 750;
}

.filter-pills button:hover,
.filter-pills button.is-active {
    color: var(--white);
    background: var(--green-800);
    border-color: var(--green-800);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    grid-column: span 4;
    height: 310px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    text-align: left;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
    grid-column: span 8;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: linear-gradient(to top, rgba(4, 30, 23, 0.9), transparent 70%);
}

.gallery-card__overlay small {
    color: var(--yellow-400);
    font-size: 0.67rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.gallery-card__overlay strong {
    padding-right: 45px;
    font-size: 1.12rem;
}

.gallery-card__overlay em {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--green-950);
    background: var(--yellow-400);
    border-radius: 50%;
    font-style: normal;
}

.gallery-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    padding: 30px;
    place-items: center;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 22, 17, 0.9);
    backdrop-filter: blur(12px);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 60px);
    overflow: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox figure {
    margin: 0;
}

.gallery-lightbox figure img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-lightbox figcaption {
    padding: 24px 30px 28px;
}

.gallery-lightbox figcaption small {
    color: var(--green-700);
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-lightbox figcaption h2 {
    margin: 4px 0 5px;
    font-size: 1.6rem;
}

.gallery-lightbox figcaption p {
    margin: 0;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    color: var(--white);
    background: rgba(4, 22, 17, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.gallery-lightbox__close {
    top: 16px;
    right: 16px;
}

.gallery-lightbox__nav {
    top: 42%;
}

.gallery-lightbox__nav--prev {
    left: 16px;
}

.gallery-lightbox__nav--next {
    right: 16px;
}

.gallery-story__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.gallery-story__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-story__facts > div {
    display: flex;
    min-height: 150px;
    padding: 22px;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.gallery-story__facts strong {
    color: var(--green-800);
    font-size: 1.1rem;
}

.gallery-story__facts span {
    color: var(--gray-500);
    font-size: 0.73rem;
}

/* Partners */
.partner-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.partner-intro-card {
    padding: 40px;
    color: var(--white);
    background: var(--green-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.partner-intro-card__label {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--yellow-400);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.partner-intro-card .check-list li {
    color: rgba(255, 255, 255, 0.78);
}

.partner-intro-card .check-list li > span {
    color: var(--charcoal-950);
    background: var(--yellow-400);
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.partner-page-card {
    position: relative;
    display: flex;
    min-height: 130px;
    padding: 24px;
    align-items: center;
    gap: 17px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.partner-page-card__logo {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-800);
    background: var(--green-50);
    border-radius: var(--radius-sm);
    font-weight: 900;
}

.partner-page-card h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.partner-page-card p {
    margin: 0;
    font-size: 0.72rem;
}

.partner-page-card > span {
    position: absolute;
    top: 12px;
    right: -25px;
    padding: 3px 30px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 0.58rem;
    font-weight: 900;
    transform: rotate(35deg);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.collaboration-card {
    min-height: 270px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: background var(--transition), transform var(--transition);
}

.collaboration-card:hover {
    color: var(--white);
    background: var(--green-900);
    transform: translateY(-5px);
}

.collaboration-card > span {
    color: var(--orange-600);
    font-size: 0.8rem;
    font-weight: 900;
}

.collaboration-card h3 {
    margin: 58px 0 12px;
}

.collaboration-card p {
    margin: 0;
    font-size: 0.82rem;
}

.collaboration-card:hover h3,
.collaboration-card:hover p {
    color: var(--white);
}

.partner-cta {
    padding: 75px 0;
    background: var(--charcoal-950);
}

.partner-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.partner-cta h2,
.partner-cta p {
    color: var(--white);
}

.partner-cta h2 {
    margin-bottom: 10px;
}

.partner-cta p {
    max-width: 690px;
    margin: 0;
    opacity: 0.65;
}

/* Contact and forms */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 17px;
}

.contact-cards {
    display: grid;
    margin-top: 30px;
    gap: 12px;
}

.contact-card {
    display: flex;
    padding: 18px;
    align-items: center;
    gap: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), transform var(--transition);
}

a.contact-card:hover {
    border-color: var(--green-600);
    transform: translateX(4px);
}

.contact-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: 50%;
}

.contact-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-card small {
    color: var(--gray-500);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--charcoal-900);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.contact-card em {
    color: var(--gray-500);
    font-size: 0.7rem;
    font-style: normal;
}

.form-card {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-card__head {
    margin-bottom: 28px;
}

.form-card__head > span {
    color: var(--green-700);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.form-card__head h2 {
    margin: 5px 0 8px;
    font-size: 2rem;
}

.form-card__head p {
    margin: 0;
    font-size: 0.8rem;
}

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

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

.form-group {
    display: flex;
    margin-bottom: 16px;
    flex-direction: column;
    gap: 6px;
}

.form-group label,
.label-row label {
    color: var(--charcoal-700);
    font-size: 0.75rem;
    font-weight: 800;
}

.form-group label span {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    font-size: 0.86rem;
}

.form-group input,
.form-group select {
    height: 49px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-consent {
    display: flex;
    margin: 3px 0 21px;
    align-items: flex-start;
    gap: 9px;
    color: var(--gray-600);
    font-size: 0.73rem;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--green-700);
}

.form-consent--compact {
    margin-top: 0;
}

.form-status {
    min-height: 24px;
    margin: 12px 0 0;
    color: var(--green-700);
    font-size: 0.76rem;
    text-align: center;
}

.map-frame,
.map-placeholder {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    display: flex;
    padding: 50px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--green-50), var(--gray-100));
    border: 1px dashed var(--green-600);
    text-align: left;
}

.map-placeholder__pin {
    display: grid;
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--green-700);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.map-placeholder__pin svg {
    width: 35px;
    height: 35px;
}

.map-placeholder strong {
    display: block;
    color: var(--charcoal-900);
    font-size: 1.2rem;
}

.map-placeholder p {
    max-width: 650px;
    margin: 5px 0;
}

.map-placeholder span {
    color: var(--gray-500);
    font-size: 0.74rem;
}

/* Registration */
.registration-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 35px;
    align-items: start;
}

.registration-aside {
    position: sticky;
    top: 110px;
    padding: 38px;
    color: var(--white);
    background: var(--green-950);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.registration-aside h2,
.registration-aside p {
    color: var(--white);
}

.registration-aside p {
    opacity: 0.7;
}

.registration-steps {
    display: grid;
    margin: 32px 0;
    padding: 0;
    gap: 20px;
    list-style: none;
}

.registration-steps li {
    display: flex;
    gap: 14px;
}

.registration-steps li > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.registration-steps strong {
    display: block;
    color: var(--white);
    font-size: 0.88rem;
}

.registration-steps p {
    margin: 2px 0 0;
    font-size: 0.73rem;
}

.registration-help {
    display: flex;
    padding: 17px;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
}

.registration-help svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: var(--yellow-400);
}

.registration-help > div {
    display: flex;
    flex-direction: column;
}

.registration-help span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
}

.registration-help a {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
}

.form-section-label {
    display: flex;
    margin: 26px 0 20px;
    padding-bottom: 12px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section-label:first-of-type {
    margin-top: 0;
}

.form-section-label span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--green-800);
    background: var(--green-100);
    border-radius: 50%;
    font-size: 0.63rem;
    font-weight: 900;
}

.form-section-label strong {
    color: var(--charcoal-900);
    font-size: 0.86rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.accordion {
    display: grid;
    gap: 10px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.accordion-item button {
    display: flex;
    width: 100%;
    padding: 18px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--charcoal-900);
    background: transparent;
    border: 0;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: left;
}

.accordion-item button svg {
    flex: 0 0 auto;
    color: var(--green-700);
    transition: transform var(--transition);
}

.accordion-item button[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 280ms ease;
}

.accordion-panel > p {
    min-height: 0;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    font-size: 0.8rem;
    transition: padding 280ms ease;
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel > p {
    padding: 0 20px 20px;
}

/* Login */
.login-page {
    position: relative;
    min-height: calc(100vh - 120px);
    padding: 90px 0;
    overflow: hidden;
    background: var(--green-950);
}

.login-page__background {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image: radial-gradient(circle at 20% 20%, var(--yellow-400) 0, transparent 25%), radial-gradient(circle at 80% 80%, var(--green-600) 0, transparent 30%), linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: auto, auto, 70px 70px, 70px 70px;
}

.login-page__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 90px;
    align-items: center;
}

.login-intro h1 {
    max-width: 700px;
    margin: 28px 0 22px;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.login-intro > p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.68);
}

.login-brand {
    display: inline-flex;
    margin-bottom: 54px;
    align-items: center;
    gap: 12px;
}

.login-brand img {
    width: 68px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
}

.login-brand > span {
    display: flex;
    flex-direction: column;
}

.login-brand strong {
    color: var(--white);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.login-brand small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-benefits {
    display: grid;
    margin-top: 30px;
    gap: 10px;
}

.login-benefits > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.login-benefits span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--charcoal-950);
    background: var(--yellow-400);
    border-radius: 50%;
    font-size: 0.66rem;
    font-weight: 900;
}

.login-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.login-card__head > span {
    color: var(--green-700);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.login-card__head h2 {
    margin: 5px 0 8px;
    font-size: 2rem;
}

.login-card__head p {
    margin-bottom: 22px;
    font-size: 0.8rem;
}

.notice {
    display: flex;
    margin-bottom: 24px;
    padding: 14px;
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
}

.notice--warning {
    color: #7a4707;
    background: #fff5df;
    border: 1px solid #f8d797;
}

.notice svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.input-icon {
    position: relative;
}

.input-icon > svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--gray-500);
    transform: translateY(-50%);
}

.input-icon input {
    padding-left: 44px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    color: var(--gray-500);
    background: transparent;
    border: 0;
    transform: translateY(-50%);
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.label-row a {
    color: var(--green-700);
    font-size: 0.68rem;
    font-weight: 750;
}

.login-card__footer {
    display: flex;
    margin-top: 22px;
    padding-top: 20px;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.75rem;
}

.login-card__footer a {
    color: var(--green-700);
    font-weight: 800;
}

/* Footer and floating controls */
.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    background: var(--charcoal-950);
}

.site-footer__pattern {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    opacity: 0.06;
    border: 100px solid var(--yellow-400);
    border-radius: 50%;
}

.site-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.85fr 1.1fr;
    padding-top: 75px;
    padding-bottom: 60px;
    gap: 50px;
}

.brand--footer .brand__copy strong {
    color: var(--white);
}

.brand--footer .brand__copy small {
    color: rgba(255, 255, 255, 0.5);
}

.footer-about > p {
    max-width: 340px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--yellow-400);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.62rem;
    font-weight: 900;
}

.social-links a:hover {
    color: var(--charcoal-950);
    background: var(--yellow-400);
}

.footer-title {
    margin: 6px 0 23px;
    color: var(--white);
    font-size: 0.92rem;
}

.footer-links,
.footer-contact {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.77rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--yellow-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
}

.footer-contact svg {
    width: 17px;
    height: 17px;
    margin-top: 4px;
    flex: 0 0 auto;
    color: var(--yellow-400);
}

.site-footer__bottom {
    position: relative;
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: flex;
    min-height: 52px;
    padding: 10px 17px;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: #1fa855;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(6, 80, 45, 0.28);
    font-size: 0.76rem;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
    box-shadow: 0 17px 38px rgba(6, 80, 45, 0.36);
    transform: translateY(-3px);
}

.floating-whatsapp svg {
    width: 23px;
    height: 23px;
}

.back-to-top {
    position: fixed;
    z-index: 75;
    right: 28px;
    bottom: 88px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    background: var(--green-900);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Reveal animation */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
    .primary-nav {
        gap: 15px;
    }

    .primary-nav > ul a {
        padding-inline: 6px;
        font-size: 0.76rem;
    }

    .nav-actions .btn {
        padding-inline: 14px;
    }

    .hero__inner {
        gap: 45px;
    }

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

    .schedule-filter {
        display: block;
    }

    .schedule-filter__title {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 84px 0;
    }

    .topbar {
        display: none;
    }

    .navbar {
        min-height: 76px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 120;
        top: 0;
        right: 0;
        display: flex;
        width: min(390px, 88vw);
        height: 100vh;
        padding: 95px 28px 30px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 25px;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -20px 0 60px rgba(4, 30, 23, 0.2);
        transform: translateX(105%);
        transition: transform 320ms ease;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav > ul {
        display: grid;
        align-items: stretch;
    }

    .primary-nav > ul a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.92rem;
    }

    .primary-nav > ul a::after {
        display: none;
    }

    .nav-actions {
        display: grid;
        gap: 10px;
    }

    .nav-login {
        min-height: 44px;
        justify-content: center;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-sm);
    }

    .site-header .nav-toggle {
        position: relative;
        z-index: 130;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero-card {
        max-width: 560px;
    }

    .trust-strip {
        margin-top: 70px;
    }

    .training-grid,
    .training-grid--page {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview__grid,
    .profile-grid,
    .partner-intro-grid,
    .custom-training-grid,
    .gallery-story__grid {
        gap: 55px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .process-grid::before {
        display: none;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .gallery-mosaic__item,
    .gallery-mosaic__item--1,
    .gallery-mosaic__item--2,
    .gallery-mosaic__item--3,
    .gallery-mosaic__item--4,
    .gallery-mosaic__item--5,
    .gallery-mosaic__item--6 {
        grid-column: auto;
        grid-row: auto;
    }

    .partner-logo {
        min-width: calc((100% - 32px) / 3);
    }

    .testimonials-grid {
        gap: 50px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-section__grid {
        grid-template-columns: 1fr;
    }

    .commitment-section__content {
        padding-right: 0;
    }

    .commitment-section__image {
        min-height: 430px;
    }

    .commitment-section__image img {
        width: 100%;
    }

    .training-detail-grid {
        grid-template-columns: 1fr;
    }

    .training-detail-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .enrollment-card {
        grid-row: span 2;
    }

    .schedule-table-wrap {
        display: none;
    }

    .schedule-mobile-list {
        display: grid;
        gap: 15px;
    }

    .schedule-mobile-card {
        padding: 24px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }

    .schedule-mobile-card__head {
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }

    .schedule-mobile-card h3 {
        margin: 18px 0;
    }

    .schedule-mobile-card__facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 18px;
        gap: 12px;
    }

    .schedule-mobile-card__facts > div {
        display: flex;
        padding: 12px;
        flex-direction: column;
        background: var(--gray-50);
        border-radius: var(--radius-sm);
    }

    .schedule-mobile-card__facts small {
        color: var(--gray-500);
        font-size: 0.65rem;
    }

    .schedule-mobile-card__facts strong {
        color: var(--charcoal-900);
        font-size: 0.78rem;
    }

    .schedule-note__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        grid-column: span 6;
    }

    .collaboration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .registration-aside {
        position: static;
    }

    .login-page__grid {
        grid-template-columns: 1fr 430px;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .brand img {
        width: 54px;
        height: 48px;
    }

    .brand__copy strong {
        font-size: 0.86rem;
    }

    .brand__copy small {
        font-size: 0.56rem;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero {
        padding-top: 65px;
    }

    .hero__overlay {
        background: linear-gradient(90deg, rgba(4, 34, 26, 0.97), rgba(5, 49, 37, 0.82));
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.3rem);
    }

    .trust-strip {
        grid-template-columns: 1fr;
        padding: 14px 22px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .trust-item {
        padding: 14px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .training-grid,
    .training-grid--page {
        grid-template-columns: 1fr;
    }

    .training-card__image {
        height: 245px;
    }

    .about-preview__grid,
    .profile-grid,
    .vision-grid,
    .partner-intro-grid,
    .custom-training-grid,
    .gallery-story__grid,
    .statistics-grid,
    .testimonials-grid,
    .legal-section__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-preview__visual {
        min-height: 500px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .schedule-row {
        grid-template-columns: 1fr 44px;
    }

    .schedule-row__date {
        grid-column: 1 / -1;
        padding: 0 0 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistics-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        min-width: calc((100% - 16px) / 2);
    }

    .testimonials-intro {
        text-align: center;
    }

    .testimonials-intro p {
        margin-inline: auto;
    }

    .slider-controls--left {
        justify-content: center;
    }

    .testimonial-slider {
        min-height: 390px;
    }

    .cta-section__inner,
    .partner-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid,
    .partners-page-grid {
        grid-template-columns: 1fr;
    }

    .commitment-metrics {
        grid-template-columns: 1fr;
    }

    .filter-panel__head,
    .gallery-filter {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-controls,
    .schedule-filter__controls {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-search {
        grid-column: 1 / -1;
    }

    .training-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .training-hero__meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .content-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .content-split,
    .module-list,
    .check-list--grid,
    .training-detail-sidebar,
    .related-schedule-grid {
        grid-template-columns: 1fr;
    }

    .certificate-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .note-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card:nth-child(1),
    .gallery-card:nth-child(6) {
        grid-column: span 12;
    }

    .gallery-story__facts,
    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-grid--two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-placeholder {
        align-items: flex-start;
        flex-direction: column;
    }

    .login-page {
        padding: 60px 0;
    }

    .login-page__grid {
        grid-template-columns: 1fr;
    }

    .login-intro {
        text-align: center;
    }

    .login-brand {
        margin-bottom: 35px;
    }

    .login-intro > p {
        margin-inline: auto;
    }

    .login-benefits {
        justify-items: center;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .site-footer__bottom {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 58px 0;
    }

    h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .brand__copy {
        display: none;
    }

    .hero__actions,
    .cta-section__actions,
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn,
    .cta-section__actions .btn,
    .button-row .btn {
        width: 100%;
    }

    .hero-card {
        padding: 23px;
    }

    .hero__proof {
        align-items: flex-start;
        flex-direction: column;
    }

    .training-card__image {
        height: 220px;
    }

    .about-preview__visual {
        min-height: 410px;
    }

    .about-preview__image {
        right: 0;
    }

    .about-preview__badge {
        right: -5px;
        width: 190px;
        padding: 18px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .statistics-cards {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-auto-rows: 220px;
    }

    .partner-logo {
        min-width: 100%;
    }

    .testimonial-card {
        padding: 28px;
    }

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

    .page-header {
        padding: 68px 0 72px;
    }

    .page-header h1 {
        font-size: 2.65rem;
    }

    .profile-grid__visual,
    .profile-grid__visual > img {
        min-height: 420px;
        height: 420px;
    }

    .profile-grid__floating-card {
        right: -4px;
        bottom: 18px;
    }

    .vision-card {
        min-height: auto;
        padding: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .team-card__tag {
        width: fit-content;
        margin-left: 80px;
    }

    .filter-panel,
    .schedule-filter,
    .form-card,
    .registration-aside,
    .login-card {
        padding: 24px;
        border-radius: var(--radius-md);
    }

    .filter-controls,
    .schedule-filter__controls {
        grid-template-columns: 1fr;
    }

    .filter-search {
        grid-column: auto;
    }

    .custom-training-grid__image {
        height: 390px;
    }

    .training-hero h1 {
        font-size: 2.7rem;
    }

    .training-hero__meta {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 24px;
    }

    .certificate-card {
        padding: 25px;
    }

    .schedule-mobile-card__facts {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 260px;
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox figcaption {
        padding: 20px;
    }

    .gallery-lightbox__nav {
        top: 35%;
    }

    .partner-page-card {
        align-items: flex-start;
    }

    .map-placeholder {
        min-height: 360px;
        padding: 30px;
    }

    .login-brand {
        justify-content: center;
    }

    .login-benefits {
        justify-items: start;
        text-align: left;
    }

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

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 52px;
        padding: 0;
        justify-content: center;
        border-width: 2px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .back-to-top {
        right: 19px;
        bottom: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
