:root {
  --red: #e30613;
  --red-dark: #9f0710;
  --graphite: #232427;
  --ink: #121316;
  --steel: #59616c;
  --silver: #e7e9ed;
  --mist: #f6f7f8;
  --white: #ffffff;
  --safety: #f5c542;
  --green: #1f8a5b;
  --shadow: 0 18px 46px rgba(18, 19, 22, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--graphite);
  color: var(--white);
  font-size: 0.86rem;
}

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

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

.topbar__links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, 0.88);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 19, 22, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 188px;
}

.brand img {
  width: 154px;
  height: auto;
}

.brand__text {
  display: none;
  font-weight: 800;
  color: var(--red);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu > li {
  position: relative;
  margin: 0;
}

.menu a,
.menu button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 0.72rem;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--graphite);
  font: 700 0.86rem/1 Inter, Arial, sans-serif;
  cursor: pointer;
}

.menu a:hover,
.menu a:focus-visible,
.menu button:hover,
.menu button:focus-visible,
.menu a[aria-current="page"] {
  color: var(--red);
  background: rgba(227, 6, 19, 0.07);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  padding: 0.55rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu li:hover > .submenu,
.menu li:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
  min-height: 38px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-dark);
}

.btn--dark {
  color: var(--white);
  background: var(--graphite);
}

.btn--light {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--silver);
}

.btn--outline {
  color: var(--red);
  background: transparent;
  border-color: rgba(227, 6, 19, 0.35);
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--graphite);
}

.hero--page {
  min-height: 360px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 19, 22, 0.88), rgba(18, 19, 22, 0.58) 45%, rgba(18, 19, 22, 0.22));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 3.2rem;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--safety);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-title {
  max-width: 900px;
  margin: 0;
  font-size: 3.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero--page h1 {
  font-size: 3.2rem;
}

.hero__lead {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 2rem));
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 118px;
  padding: 1.35rem;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--steel);
  font-weight: 700;
}

.section {
  padding: 5.6rem 0;
}

.section--muted {
  background: var(--mist);
}

.section--dark {
  color: var(--white);
  background: var(--graphite);
}

.section--red {
  color: var(--white);
  background: var(--red);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section__head h2,
.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section--dark .section__head h2,
.section--red .section__head h2,
.section--dark .section-title,
.section--red .section-title {
  color: var(--white);
}

.section__head p {
  color: var(--steel);
  margin: 0;
}

.section--dark .section__head p,
.section--red .section__head p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.card__body {
  padding: 1.25rem;
}

.card h3,
.service-panel h3,
.proof h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.card p,
.service-panel p,
.proof p {
  color: var(--steel);
}

.card__media {
  aspect-ratio: 16 / 10;
  background: var(--silver);
}

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

.service-panel {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

.lead-text {
  color: var(--graphite);
  font-size: 1.1rem;
  font-weight: 750;
}

.service-panel__tag,
.tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  color: var(--red);
  background: rgba(227, 6, 19, 0.08);
  font-weight: 850;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.link-more {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--red);
  font-weight: 850;
}

.link-row {
  margin-top: 1rem;
}

.program-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.program-jump a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(227, 6, 19, 0.25);
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(227, 6, 19, 0.06);
  font-weight: 850;
  font-size: 0.88rem;
}

.academy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.academy-copy p {
  color: var(--steel);
}

.academy-visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 220px;
  gap: 0.85rem;
}

.visual-card {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.visual-card--large {
  grid-row: span 2;
}

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

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.08), rgba(18, 19, 22, 0.84));
}

.visual-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1rem;
  color: var(--white);
}

.visual-card strong,
.visual-card span {
  display: block;
}

.visual-card strong {
  color: var(--safety);
  font-size: 1rem;
}

.visual-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.program-group {
  display: grid;
  gap: 0.85rem;
}

.program-grid {
  margin-top: 1rem;
}

.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.module-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(227, 6, 19, 0.22);
  border-radius: var(--radius);
  color: var(--graphite);
  background: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.session-carousel {
  position: relative;
  min-height: 250px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.session-card {
  display: none;
  min-height: 210px;
  align-content: center;
  padding: 1.6rem;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.07), rgba(245, 197, 66, 0.12));
}

.session-card.is-active {
  display: grid;
  animation: sessionFade 480ms ease both;
}

.session-card time {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-weight: 850;
}

.session-card h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.18;
}

.session-card p,
.session-empty {
  margin: 0;
  color: var(--steel);
}

.session-card strong {
  color: var(--graphite);
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  padding: 1rem;
  animation: logoMarquee 34s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track .logo-tile {
  min-width: 168px;
}

.fire-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.fire-offer__content p {
  color: var(--steel);
}

.equipment-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.equipment-item {
  padding: 1rem;
  border: 1px solid var(--silver);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
}

.equipment-item strong,
.equipment-item span {
  display: block;
}

.equipment-item strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.equipment-item span {
  color: var(--steel);
}

.fire-offer__visuals {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-auto-rows: 220px;
  gap: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 3px var(--white);
  outline: 1px solid var(--red);
  content: "";
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.16);
}

.feature-strip > div {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.08);
}

.feature-strip strong {
  display: block;
  color: var(--safety);
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item time {
  color: var(--red);
  font-weight: 850;
}

.timeline-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0;
  color: var(--steel);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.logo-tile {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

.logo-tile img {
  max-height: 64px;
  object-fit: contain;
}

.logo-tile span {
  font-weight: 850;
  color: var(--graphite);
  text-align: center;
}

.proof {
  padding: 1.35rem;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--silver);
}

.gallery-card__body {
  padding: 1.15rem;
}

.gallery-card__body time {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-card__body h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.12rem;
}

.gallery-card__body p {
  color: var(--steel);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  color: var(--graphite);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.9rem;
  border: 1px solid #cfd4da;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(227, 6, 19, 0.17);
  border-color: var(--red);
}

.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--graphite);
}

.contact-card h3 {
  margin: 0 0 0.9rem;
  color: var(--white);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list strong {
  display: block;
  color: var(--safety);
}

.cta-band {
  padding: 2.2rem;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  color: var(--white);
  font-size: 2rem;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #18191c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.75fr));
  gap: 2rem;
  padding: 4rem 0 2.4rem;
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
  background: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0;
}

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

.footer-bottom {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--silver);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--graphite);
}

tr:last-child td {
  border-bottom: 0;
}

.notice {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(245, 197, 66, 0.18);
  border: 1px solid rgba(245, 197, 66, 0.5);
}

.form-status {
  margin: 0;
}

.form-status[data-state="success"] {
  color: #0f5132;
  background: rgba(31, 138, 91, 0.14);
  border-color: rgba(31, 138, 91, 0.42);
}

.form-status[data-state="error"] {
  color: var(--red-dark);
  background: rgba(227, 6, 19, 0.08);
  border-color: rgba(227, 6, 19, 0.34);
}

.language-tools {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: min(300px, calc(100% - 2rem));
  padding: 0.45rem;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(18, 19, 22, 0.12);
}

.language-tools:empty {
  display: none;
}

@keyframes sessionFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .menu-wrap {
    position: fixed;
    inset: 124px 1rem auto 1rem;
    max-height: calc(100dvh - 140px);
    overflow: auto;
    padding: 0.85rem;
    border: 1px solid var(--silver);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body[data-nav-open="true"] .menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu {
    display: grid;
    gap: 0.2rem;
  }

  .menu a,
  .menu button {
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    min-width: 100%;
    margin: 0.25rem 0 0.6rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--mist);
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.75rem 0;
  }

  .hero {
    min-height: 470px;
  }

  .hero--page {
    min-height: 340px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(18, 19, 22, 0.78), rgba(18, 19, 22, 0.7));
  }

  .hero__stats,
  .academy-layout,
  .fire-offer,
  .section__head,
  .grid--2,
  .grid--3,
  .grid--4,
  .split,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    margin-top: 0;
  }

  .feature-strip,
  .academy-visuals,
  .fire-offer__visuals,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card--large {
    grid-row: auto;
  }

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

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .nav__inner,
  .container,
  .hero__content,
  .hero__stats {
    width: min(100% - 1rem, var(--max));
  }

  .nav__inner {
    min-height: 72px;
  }

  .brand img {
    width: 126px;
  }

  .menu-wrap {
    inset: 132px 0.5rem auto 0.5rem;
  }

  .hero h1,
  .hero--page h1 {
    font-size: 2.15rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section__head h2,
  .section-title {
    font-size: 1.85rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .academy-visuals,
  .fire-offer__visuals,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 1.35rem;
  }

  .session-carousel {
    min-height: 280px;
    padding: 0.85rem;
  }

  .session-card {
    min-height: 238px;
    padding: 1rem;
  }

  .session-card h3 {
    font-size: 1.25rem;
  }

  .language-tools {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}
