:root {
    --inner-main: #03172f;
    --inner-deep: #061f3f;
    --inner-card: #082b52;
    --inner-card-2: #063765;
    --inner-blue: #0d8bff;
    --inner-blue-soft: #6ed6ff;
    --inner-white: #ffffff;
    --inner-panel: #f4f8fc;
    --inner-ink: #081a34;
    --inner-muted: #b9cbe4;
    --inner-border: rgba(110, 214, 255, 0.32);
    --inner-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body.inner-shield-body {
    margin: 0;
    color: var(--inner-white);
    background: var(--inner-main);
    font-family: "Jost", Arial, sans-serif;
    letter-spacing: 0;
}

.inner-shield-body a {
    text-decoration: none;
}

.inner-shield-body *,
.inner-shield-body *::before,
.inner-shield-body *::after {
    box-sizing: border-box;
}

.inner-shield-body img {
    max-width: 100%;
}

.inner-shield-body .container {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(24px, 4vw, 72px);
    padding-right: clamp(24px, 4vw, 72px);
}

.is-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(3, 23, 47, 0.94);
    border-bottom: 1px solid rgba(110, 214, 255, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.is-header .navbar {
    min-height: 82px;
    padding: 0;
}

.is-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 0;
}

.is-brand img,
.inner-footer-brand img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: var(--inner-white);
    border: 1px solid rgba(110, 214, 255, 0.34);
    border-radius: 8px;
}

.is-brand-emblem {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    color: var(--inner-blue-soft);
    background: linear-gradient(145deg, rgba(13, 139, 255, 0.2), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(110, 214, 255, 0.44);
    border-radius: 8px;
    box-shadow: inset 0 0 18px rgba(13, 139, 255, 0.18);
}

.is-brand-emblem i {
    font-size: 27px;
}

.is-brand span {
    color: var(--inner-white);
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.is-nav {
    gap: 2px;
}

.is-nav .nav-link {
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 15px;
    font-weight: 800;
    padding: 12px 11px !important;
    border-radius: 8px;
}

.is-nav .nav-link:hover,
.is-nav .nav-link:focus {
    color: var(--inner-white) !important;
    background: rgba(13, 139, 255, 0.14);
}

.is-login {
    margin-left: 8px;
    color: var(--inner-blue-soft) !important;
    border: 1px solid rgba(110, 214, 255, 0.4);
}

.is-header-cta {
    margin-left: 12px;
    white-space: nowrap;
}

.is-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(110, 214, 255, 0.36);
    border-radius: 8px;
    background: rgba(13, 139, 255, 0.1);
}

.is-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--inner-white);
    border-radius: 2px;
}

.is-mobile-menu {
    display: none;
}

.is-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.is-btn:hover,
.is-btn:focus {
    transform: translateY(-1px);
}

.is-btn-primary {
    color: var(--inner-white);
    background: linear-gradient(135deg, #0d8bff, #17bfff);
    border: 1px solid rgba(110, 214, 255, 0.8);
    box-shadow: 0 14px 30px rgba(13, 139, 255, 0.3);
}

.is-btn-primary:hover,
.is-btn-primary:focus {
    color: var(--inner-white);
    box-shadow: 0 18px 38px rgba(13, 139, 255, 0.38);
}

.is-btn-outline {
    color: var(--inner-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(110, 214, 255, 0.42);
}

.is-btn-outline:hover,
.is-btn-outline:focus {
    color: var(--inner-white);
    border-color: var(--inner-blue-soft);
    box-shadow: 0 14px 30px rgba(13, 139, 255, 0.18);
}

.inner-dark-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, #03172f 0%, #041c39 48%, #03172f 100%);
    overflow-x: hidden;
}

.inner-hero-dark {
    position: relative;
    overflow: hidden;
    padding: 58px 0 36px;
    background:
        linear-gradient(90deg, rgba(3, 23, 47, 1) 0%, rgba(6, 31, 63, 0.96) 42%, rgba(5, 44, 83, 0.88) 100%);
}

.inner-hero-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 23, 47, 0.04), rgba(13, 139, 255, 0.12)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
    pointer-events: none;
}

.inner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
    align-items: center;
    gap: 38px;
    min-height: 470px;
}

.inner-hero-content {
    min-width: 0;
    max-width: 760px;
}

.inner-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

.inner-hero-brand img {
    width: 118px;
    height: 118px;
    object-fit: cover;
    object-position: 50% 24%;
    background: #fff;
    border: 1px solid rgba(110, 214, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 0 36px rgba(13, 139, 255, 0.36);
}

.inner-hero-brand strong,
.inner-hero-brand span {
    display: block;
}

.inner-hero-brand strong {
    color: var(--inner-white);
    font-size: 66px;
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.inner-hero-brand span {
    margin-top: 8px;
    color: #d8ecff;
    font-size: 22px;
    font-weight: 800;
}

.inner-hero-slogan {
    margin: 0 0 3px;
    color: var(--inner-blue-soft);
    font-size: 32px;
    line-height: 1.16;
    font-weight: 900;
}

.inner-hero-kicker {
    margin: 0 0 24px;
    color: var(--inner-white);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.inner-hero-content h1 {
    max-width: 650px;
    margin: 0;
    color: var(--inner-white);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.inner-hero-content h1 span {
    color: var(--inner-blue-soft);
}

.inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.inner-hero-visual {
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 0;
    min-height: 0;
    background:
        linear-gradient(135deg, rgba(3, 23, 47, 0.88), rgba(6, 31, 63, 0.42)),
        #03172f;
    border-radius: 8px;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.inner-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: cover;
    object-position: center;
}

.inner-hero-badge {
    position: absolute;
    right: 22px;
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 260px;
    padding: 13px 15px;
    color: var(--inner-white);
    background: rgba(3, 23, 47, 0.74);
    border: 1px solid rgba(110, 214, 255, 0.32);
    border-radius: 8px;
    box-shadow: var(--inner-shadow);
    backdrop-filter: blur(10px);
    font-weight: 900;
}

.inner-hero-badge i {
    color: var(--inner-blue-soft);
}

.inner-feature-icons {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
    padding-top: 26px;
    border-top: 1px solid rgba(110, 214, 255, 0.18);
}

.inner-feature-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 70px;
    color: var(--inner-white);
}

.inner-feature-item i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--inner-blue-soft);
    border: 1px solid rgba(110, 214, 255, 0.52);
    border-radius: 8px;
    font-size: 22px;
}

.inner-feature-item span {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.inner-section {
    padding: 34px 0 0;
}

.inner-light-panel,
.inner-platform-panel {
    color: var(--inner-ink);
    background: linear-gradient(180deg, #ffffff 0%, var(--inner-panel) 100%);
    border: 1px solid rgba(9, 44, 85, 0.18);
    border-radius: 8px;
    box-shadow: var(--inner-shadow);
}

.inner-light-panel {
    padding: 14px 16px 24px;
}

.inner-section-title {
    text-align: center;
}

.inner-section-title h2 {
    margin: 0;
    color: #0c65a9;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-section-title-dark h2 {
    color: var(--inner-blue-soft);
}

.inner-journey-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    margin-top: 34px;
    border: 1px solid rgba(9, 44, 85, 0.22);
    border-radius: 8px;
    overflow: visible;
}

.inner-journey-step {
    position: relative;
    min-height: 246px;
    padding: 22px 12px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.52);
    border-right: 1px solid rgba(9, 44, 85, 0.16);
}

.inner-journey-step:last-child {
    border-right: 0;
}

.inner-journey-step:not(:last-child)::after {
    content: "\f061";
    position: absolute;
    top: -17px;
    right: -10px;
    z-index: 2;
    color: var(--inner-ink);
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
}

.inner-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--inner-white);
    background: #064e8c;
    border: 3px solid #eaf5ff;
    border-radius: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 900;
}

.inner-step-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 68px;
    margin: 22px auto 16px;
    color: #063765;
    border: 4px solid #0f4f84;
    border-radius: 8px;
    font-size: 30px;
}

.inner-journey-step h3 {
    margin: 0 0 9px;
    color: #092c55;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-journey-step p {
    margin: 0;
    color: #102b4d;
    font-size: 13px;
    line-height: 1.38;
    font-weight: 700;
}

.inner-lessons {
    padding-top: 32px;
}

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

.inner-lesson-card {
    min-width: 0;
    padding: 14px;
    color: var(--inner-white);
    background: linear-gradient(180deg, #073662 0%, #052747 100%);
    border: 1px solid rgba(110, 214, 255, 0.42);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.inner-lesson-card h3 {
    margin: 0 0 12px;
    color: var(--inner-white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.inner-lesson-visual {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    background: #021429;
    border: 1px solid rgba(110, 214, 255, 0.28);
    border-radius: 8px;
}

.inner-lesson-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-lesson-visual-brand img {
    object-fit: cover;
    object-position: center;
}

.inner-playbar {
    position: absolute;
    left: 12px;
    bottom: 10px;
    color: var(--inner-white);
    font-size: 16px;
}

.inner-quiz-preview {
    display: grid;
    gap: 7px;
    width: 92%;
    padding: 12px;
    color: var(--inner-white);
    background: #021d38;
    border: 1px solid rgba(110, 214, 255, 0.28);
    border-radius: 8px;
    font-size: 12px;
}

.inner-quiz-preview strong {
    font-size: 13px;
}

.inner-quiz-preview span {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
}

.inner-quiz-preview .is-correct {
    color: #d9ffde;
    background: rgba(58, 183, 103, 0.5);
}

.inner-lesson-blueprint {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 26px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 139, 255, 0.28), transparent 58%),
        #041c39;
}

.inner-lesson-blueprint span,
.inner-lesson-blueprint strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 170px;
    color: var(--inner-white);
    text-transform: uppercase;
}

.inner-lesson-blueprint span {
    color: var(--inner-blue-soft);
    font-size: 13px;
    font-weight: 900;
}

.inner-lesson-blueprint strong {
    margin-top: 4px;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 900;
}

.inner-lesson-blueprint i {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: rgba(110, 214, 255, 0.5);
    font-size: 82px;
}

.inner-motivation-preview {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(13, 139, 255, 0.42), rgba(255, 196, 87, 0.26)),
        #041c39;
}

.inner-motivation-preview strong {
    max-width: 260px;
    color: var(--inner-white);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-card-stack {
    position: relative;
    width: 190px;
    height: 132px;
}

.inner-card-stack span {
    position: absolute;
    top: 15px;
    left: 50%;
    width: 76px;
    height: 108px;
    background: linear-gradient(180deg, #0d8bff, #03477f);
    border: 2px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    transform-origin: bottom center;
}

.inner-card-stack span::before {
    content: "\f3ed";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--inner-white);
    font-family: "Font Awesome 5 Free";
    font-size: 28px;
    font-weight: 900;
}

.inner-card-stack span:nth-child(1) {
    background: linear-gradient(180deg, #19b36b, #087442);
    transform: translateX(-95px) rotate(-16deg);
}

.inner-card-stack span:nth-child(2) {
    background: linear-gradient(180deg, #f2c44b, #b77908);
    transform: translateX(-56px) rotate(-8deg);
}

.inner-card-stack span:nth-child(3) {
    transform: translateX(-38px);
}

.inner-card-stack span:nth-child(4) {
    background: linear-gradient(180deg, #d7e8ff, #8baed6);
    transform: translateX(2px) rotate(8deg);
}

.inner-card-stack span:nth-child(5) {
    background: linear-gradient(180deg, #cc8d2e, #8a5300);
    transform: translateX(42px) rotate(16deg);
}

.inner-certificate-preview {
    display: grid;
    place-items: center;
    width: 86%;
    min-height: 124px;
    padding: 14px;
    color: #092c55;
    text-align: center;
    background: #f8f2e7;
    border: 4px double #b38b4b;
    border-radius: 8px;
}

.inner-certificate-preview strong {
    font-size: 22px;
    line-height: 1;
}

.inner-certificate-preview span,
.inner-certificate-preview small {
    font-weight: 900;
    text-transform: uppercase;
}

.inner-certificate-preview i {
    color: #b38b4b;
    font-size: 24px;
}

.inner-lesson-card ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding-left: 18px;
}

.inner-lesson-card li {
    color: var(--inner-white);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.inner-program-material {
    padding-top: 34px;
}

.inner-material-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
    margin-top: 22px;
}

.inner-material-story,
.inner-source-card,
.inner-body-alarm {
    border: 1px solid rgba(110, 214, 255, 0.34);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.inner-material-story {
    min-width: 0;
    padding: 24px;
    color: var(--inner-white);
    background:
        linear-gradient(135deg, rgba(13, 139, 255, 0.22), rgba(255, 255, 255, 0.05)),
        #052747;
}

.inner-material-story > span,
.inner-body-alarm span,
.inner-source-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--inner-blue-soft);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-material-story h3,
.inner-body-alarm h3,
.inner-source-card h3 {
    margin: 0 0 10px;
    color: var(--inner-white);
    font-weight: 900;
    text-transform: uppercase;
}

.inner-material-story h3 {
    font-size: 32px;
    line-height: 1.05;
}

.inner-material-story p,
.inner-body-alarm p,
.inner-source-card p {
    margin: 0;
    color: #dceeff;
    font-weight: 700;
    line-height: 1.5;
}

.inner-material-questions {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(110, 214, 255, 0.22);
}

.inner-material-questions strong {
    display: block;
    margin-bottom: 10px;
    color: var(--inner-white);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-material-questions ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.inner-material-questions li {
    color: #dceeff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

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

.inner-source-card {
    min-width: 0;
    min-height: 208px;
    padding: 20px;
    background: #052747;
}

.inner-source-card h3 {
    font-size: 22px;
    line-height: 1.12;
}

.inner-source-card p {
    font-size: 14px;
}

.inner-source-card-red {
    background: linear-gradient(180deg, rgba(156, 26, 39, 0.88), rgba(73, 13, 25, 0.94));
    border-color: rgba(255, 132, 132, 0.42);
}

.inner-source-card-blue {
    background: linear-gradient(180deg, rgba(7, 75, 130, 0.96), rgba(4, 35, 68, 0.98));
}

.inner-source-card-yellow {
    background: linear-gradient(180deg, rgba(179, 123, 13, 0.92), rgba(91, 58, 7, 0.98));
    border-color: rgba(255, 216, 120, 0.42);
}

.inner-source-card-green {
    background: linear-gradient(180deg, rgba(17, 112, 75, 0.94), rgba(5, 59, 45, 0.98));
    border-color: rgba(115, 232, 165, 0.42);
}

.inner-body-alarm {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding: 22px 24px;
    color: var(--inner-white);
    background:
        linear-gradient(90deg, rgba(3, 23, 47, 0.96), rgba(6, 55, 101, 0.82)),
        #03172f;
}

.inner-body-alarm h3 {
    font-size: 24px;
    line-height: 1.15;
}

.inner-body-alarm ol {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: body-alarm;
}

.inner-body-alarm li {
    position: relative;
    min-height: 88px;
    padding: 34px 10px 12px;
    color: var(--inner-white);
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(110, 214, 255, 0.24);
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-body-alarm li::before {
    counter-increment: body-alarm;
    content: counter(body-alarm);
    position: absolute;
    top: 9px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #052747;
    background: var(--inner-blue-soft);
    border-radius: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 900;
}

.inner-platform-panel {
    padding: 18px 16px 20px;
}

.inner-platform-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 20px;
    border: 1px solid rgba(9, 44, 85, 0.18);
    border-radius: 8px;
    overflow: hidden;
}

.inner-platform-item {
    min-height: 176px;
    padding: 22px 14px 18px;
    text-align: center;
    border-right: 1px solid rgba(9, 44, 85, 0.15);
}

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

.inner-platform-item i {
    display: grid;
    place-items: center;
    width: 56px;
    height: 52px;
    margin: 0 auto 14px;
    color: #073662;
    font-size: 34px;
}

.inner-platform-item h3 {
    margin: 0 0 8px;
    color: #092c55;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-platform-item p {
    margin: 0;
    color: #102b4d;
    font-size: 13px;
    line-height: 1.38;
    font-weight: 700;
}

.inner-divisions {
    padding: 34px 0 28px;
    background:
        linear-gradient(90deg, #03172f 0%, #052747 58%, #03172f 100%);
}

.inner-divisions-grid {
    display: grid;
    grid-template-columns: 110px repeat(5, minmax(0, 1fr)) minmax(220px, 1.15fr);
    align-items: stretch;
    gap: 10px;
}

.inner-divisions-title,
.inner-division-item,
.inner-divisions-cta {
    min-width: 0;
    padding: 14px;
    border-right: 1px solid rgba(110, 214, 255, 0.18);
}

.inner-divisions-title {
    display: grid;
    align-content: center;
    color: var(--inner-white);
    text-transform: uppercase;
}

.inner-divisions-title span,
.inner-divisions-title strong {
    display: block;
    font-size: 19px;
    line-height: 1.1;
}

.inner-divisions-title span {
    color: var(--inner-blue-soft);
    font-weight: 700;
}

.inner-divisions-title strong {
    font-weight: 900;
}

.inner-division-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 10px;
    align-content: start;
}

.inner-division-item i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--inner-blue-soft);
    border: 1px solid rgba(110, 214, 255, 0.4);
    border-radius: 8px;
}

.inner-division-item h3,
.inner-divisions-cta h3 {
    margin: 0 0 6px;
    color: var(--inner-white);
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-division-item p,
.inner-divisions-cta p {
    margin: 0;
    color: #c8daf1;
    font-size: 12px;
    line-height: 1.42;
    font-weight: 700;
}

.inner-divisions-cta {
    display: grid;
    align-content: center;
    border-right: 0;
    background: rgba(13, 139, 255, 0.08);
    border: 1px solid rgba(110, 214, 255, 0.18);
    border-radius: 8px;
}

.inner-footer-dark {
    color: var(--inner-white);
    background:
        linear-gradient(180deg, #052747 0%, #03172f 100%);
    border-top: 1px solid rgba(110, 214, 255, 0.18);
    padding: 28px 0 22px;
}

.inner-footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(380px, 1.4fr) minmax(220px, 0.8fr);
    align-items: center;
    gap: 22px;
}

.inner-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--inner-white);
}

.inner-footer-brand:hover,
.inner-footer-brand:focus {
    color: var(--inner-white);
}

.inner-footer-brand span,
.inner-footer-brand strong,
.inner-footer-brand small {
    display: block;
}

.inner-footer-brand .is-brand-emblem {
    display: grid;
    place-items: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.inner-footer-brand .is-brand-emblem i {
    line-height: 1;
}

.inner-footer-brand strong {
    color: var(--inner-white);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.inner-footer-brand small {
    margin-top: 3px;
    color: #c8daf1;
    font-size: 13px;
    font-weight: 800;
}

.inner-footer-keywords {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    text-transform: uppercase;
}

.inner-footer-keywords span {
    position: relative;
    color: #dceeff;
    font-size: 15px;
    font-weight: 900;
}

.inner-footer-keywords span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 4px;
    height: 4px;
    background: var(--inner-blue-soft);
    border-radius: 50%;
    transform: translateY(-50%);
}

.inner-footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.inner-footer-contact > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--inner-white);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.inner-footer-socials {
    display: flex;
    gap: 8px;
}

.inner-footer-socials a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--inner-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(110, 214, 255, 0.34);
    border-radius: 50%;
}

.inner-footer-socials a:hover,
.inner-footer-socials a:focus {
    color: var(--inner-blue-soft);
}

.inner-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(110, 214, 255, 0.14);
}

.inner-footer-bottom p,
.inner-footer-bottom a {
    margin: 0;
    color: #b9cbe4;
    font-size: 14px;
}

.inner-footer-bottom a {
    color: var(--inner-blue-soft);
    font-weight: 900;
}

.inner-footer-bottom a:hover,
.inner-footer-bottom a:focus {
    color: var(--inner-white);
}

@media (max-width: 1399.98px) {
    .inner-shield-body .container {
        max-width: 100%;
    }

    .inner-hero-brand strong {
        font-size: 54px;
    }

    .inner-hero-content h1 {
        font-size: 24px;
    }

    .inner-journey-step {
        padding-left: 9px;
        padding-right: 9px;
    }

    .inner-step-icon {
        width: 64px;
        height: 60px;
        font-size: 26px;
    }
}

@media (max-width: 1199.98px) {
    .is-header .navbar-collapse {
        display: none !important;
    }

    .is-menu-toggle {
        display: inline-flex;
    }

    .is-mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9998;
        display: none;
        padding: 0 20px 20px;
        background: rgba(3, 23, 47, 0.98);
        border-top: 1px solid rgba(110, 214, 255, 0.18);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    }

    .is-mobile-menu.is-open {
        display: block;
    }

    .is-mobile-menu-panel {
        display: grid;
        gap: 0;
        max-width: 680px;
        margin: 0 auto;
        padding: 10px 0 0;
    }

    .is-mobile-menu-panel a {
        display: block;
        width: 100%;
        padding: 14px 4px;
        color: var(--inner-white);
        border-bottom: 1px solid rgba(110, 214, 255, 0.14);
        font-size: 16px;
        font-weight: 900;
        line-height: 1.25;
    }

    .is-mobile-menu-panel a:hover,
    .is-mobile-menu-panel a:focus {
        color: var(--inner-blue-soft);
    }

    .is-mobile-menu-panel .is-mobile-register {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        margin-top: 14px;
        padding: 13px 18px;
        color: var(--inner-white);
        background: linear-gradient(135deg, #0d8bff, #17bfff);
        border: 1px solid rgba(110, 214, 255, 0.8);
        border-radius: 8px;
        text-align: center;
    }

    .inner-hero-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 24px;
    }

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

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

    .inner-journey-step:nth-child(4n) {
        border-right: 0;
    }

    .inner-journey-step:nth-child(n + 5) {
        border-top: 1px solid rgba(9, 44, 85, 0.16);
    }

    .inner-journey-step::after {
        display: none;
    }

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

    .inner-material-grid,
    .inner-body-alarm {
        grid-template-columns: 1fr;
    }

    .inner-body-alarm ol {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .inner-platform-item:nth-child(4n) {
        border-right: 0;
    }

    .inner-platform-item:nth-child(n + 5) {
        border-top: 1px solid rgba(9, 44, 85, 0.15);
    }

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

    .inner-divisions-title,
    .inner-division-item,
    .inner-divisions-cta {
        border-right: 0;
        border: 1px solid rgba(110, 214, 255, 0.16);
        border-radius: 8px;
    }

    .inner-footer-main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .inner-footer-contact {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 991.98px) {
    .inner-hero-dark {
        padding-top: 42px;
    }

    .inner-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .inner-hero-content {
        max-width: none;
        text-align: center;
    }

    .inner-hero-brand {
        justify-content: center;
    }

    .inner-hero-actions {
        justify-content: center;
    }

    .inner-hero-visual {
        width: 100%;
        height: auto;
        min-height: 0;
        margin-top: 30px;
    }

    .inner-hero-visual img {
        height: auto;
        max-height: 320px;
    }

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

    .inner-journey-step {
        border-top: 1px solid rgba(9, 44, 85, 0.16);
    }

    .inner-journey-step:nth-child(odd) {
        border-right: 1px solid rgba(9, 44, 85, 0.16);
    }

    .inner-journey-step:nth-child(even) {
        border-right: 0;
    }

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

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

    .inner-source-card {
        min-height: 0;
    }

    .inner-body-alarm ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inner-platform-item:nth-child(3n) {
        border-right: 0;
    }

    .inner-platform-item:nth-child(n + 4) {
        border-top: 1px solid rgba(9, 44, 85, 0.15);
    }
}

@media (max-width: 767.98px) {
    .inner-shield-body .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .is-header .navbar {
        min-height: 70px;
    }

    .is-brand {
        min-width: 0;
        gap: 9px;
    }

    .is-brand img {
        width: 42px;
        height: 42px;
    }

    .is-brand-emblem {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .is-brand-emblem i {
        font-size: 22px;
    }

    .is-brand span {
        font-size: 18px;
    }

    .inner-hero-brand {
        display: grid;
        justify-items: center;
        gap: 14px;
    }

    .inner-hero-brand img {
        width: 98px;
        height: 98px;
    }

    .inner-hero-brand strong {
        font-size: 36px;
        line-height: 0.96;
    }

    .inner-hero-brand span {
        font-size: 17px;
    }

    .inner-hero-slogan {
        font-size: 27px;
    }

    .inner-hero-kicker {
        font-size: 21px;
    }

    .inner-hero-content h1 {
        font-size: 18px;
    }

    .inner-hero-actions .is-btn {
        width: 100%;
    }

    .inner-hero-visual {
        margin-top: 26px;
    }

    .inner-hero-badge {
        left: 16px;
        right: 16px;
        bottom: 14px;
        max-width: none;
        justify-content: center;
        font-size: 13px;
    }

    .inner-feature-icons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .inner-feature-item {
        min-height: 58px;
    }

    .inner-light-panel,
    .inner-platform-panel {
        padding: 14px 10px 16px;
    }

    .inner-section-title h2 {
        font-size: 21px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .inner-journey-grid,
    .inner-lesson-grid,
    .inner-platform-grid,
    .inner-divisions-grid {
        grid-template-columns: 1fr;
    }

    .inner-material-story,
    .inner-source-card,
    .inner-body-alarm {
        padding: 18px;
    }

    .inner-material-story h3 {
        font-size: 26px;
    }

    .inner-body-alarm h3 {
        font-size: 21px;
    }

    .inner-journey-step,
    .inner-platform-item {
        border-right: 0;
        border-top: 1px solid rgba(9, 44, 85, 0.15);
    }

    .inner-journey-step:first-child,
    .inner-platform-item:first-child {
        border-top: 0;
    }

    .inner-journey-step {
        min-height: 0;
        padding: 28px 18px 20px;
    }

    .inner-step-number {
        top: 12px;
        left: 18px;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .inner-step-icon {
        margin-top: 22px;
    }

    .inner-platform-item {
        min-height: 0;
    }

    .inner-divisions-title,
    .inner-division-item,
    .inner-divisions-cta {
        padding: 16px;
    }

    .inner-footer-keywords {
        gap: 8px 14px;
    }

    .inner-footer-keywords span {
        font-size: 13px;
    }

    .inner-footer-bottom {
        display: grid;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .inner-shield-body .container {
        max-width: min(334px, calc(100% - 32px));
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .inner-hero-brand strong {
        font-size: 30px;
    }

    .inner-hero-content h1 {
        font-size: 16px;
        line-height: 1.38;
    }

    .inner-hero-actions {
        width: 100%;
    }

    .inner-hero-visual {
        margin-top: 24px;
    }

    .inner-hero-visual img {
        width: 100%;
    }

    .inner-body-alarm ol {
        grid-template-columns: 1fr;
    }

    .inner-body-alarm li {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    .inner-shield-body .container {
        max-width: min(334px, calc(100% - 32px));
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .is-brand span {
        font-size: 16px;
    }

    .inner-hero-dark {
        padding-top: 34px;
    }

    .inner-hero-slogan {
        font-size: 22px;
    }

    .inner-hero-kicker {
        font-size: 18px;
    }

    .inner-feature-icons {
        grid-template-columns: 1fr;
    }

    .inner-lesson-card h3 {
        font-size: 16px;
    }

    .inner-footer-contact {
        display: grid;
        justify-items: center;
    }
}
