:root {
  --blue: #1184ee;
  --blue-dark: #004d8f;
  --sky: #83bff4;
  --ink: #0b2240;
  --muted: #5f6f85;
  --line: #e4edf7;
  --soft: #f4f9ff;
  --soft-blue: #eef7ff;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #128c4a;
  --huawei-red: #e1222b;
  --shadow: 0 18px 45px rgba(17, 132, 238, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 13px 22px;
}

.brand img {
  display: block;
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #243b57;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--blue);
}

.primary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(17, 132, 238, 0.22);
  font-weight: 800;
  cursor: pointer;
}

.whatsapp,
.whatsapp-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-dark);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(18, 140, 74, 0.2);
  font-weight: 800;
}

.whatsapp svg,
.whatsapp-link svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    radial-gradient(circle at 76% 24%, rgba(225, 34, 43, 0.08), transparent 28%),
    radial-gradient(circle at 72% 58%, rgba(131, 191, 244, 0.18), transparent 36%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  max-width: 1240px;
  min-height: 620px;
  margin: 0 auto;
  padding: 72px 22px 58px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--blue-dark);
}

.hero-copy h1 span::before {
  color: var(--huawei-red);
}

.hero-copy p {
  margin: 0;
  color: #304c68;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
}

.hero-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
}

.huawei-brand-card {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(100%, 430px);
  min-height: 310px;
  align-content: center;
  justify-items: center;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96)),
    radial-gradient(circle at 50% 38%, rgba(225, 34, 43, 0.08), transparent 42%);
  border: 1px solid rgba(228, 237, 247, 0.9);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(11, 34, 64, 0.12);
}

.huawei-brand-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-top: 5px solid var(--huawei-red);
  pointer-events: none;
}

.huawei-emblem {
  position: relative;
  width: 172px;
  height: 96px;
  margin-bottom: 24px;
}

.huawei-emblem span {
  position: absolute;
  bottom: 0;
  width: 74px;
  height: 104px;
  background: linear-gradient(180deg, #f04a4f, #d9151d);
  border-radius: 42px 42px 18px 18px;
  transform-origin: bottom center;
}

.huawei-emblem span:nth-child(1) {
  left: 10px;
  height: 82px;
  transform: rotate(-55deg);
}

.huawei-emblem span:nth-child(2) {
  left: 49px;
  height: 106px;
  transform: rotate(-16deg);
}

.huawei-emblem span:nth-child(3) {
  right: 8px;
  height: 82px;
  transform: rotate(55deg);
}

.huawei-brand-card strong {
  display: block;
  color: #2f3238;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.03em;
}

.huawei-brand-card small {
  display: block;
  margin-top: 12px;
  color: #7a838e;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cloud-features {
  padding-top: 34px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-strip article {
  min-height: 196px;
  padding: 22px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 77, 143, 0.06);
}

.feature-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--huawei-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-strip h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section,
.section-narrow {
  max-width: 1240px;
  margin: 0 auto;
  padding: 74px 22px;
  scroll-margin-top: 96px;
}

.section-narrow {
  max-width: 1040px;
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  text-align: center;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.centered,
.centered-text {
  text-align: center;
}

.section-title h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 900;
}

.section-title p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.lead {
  max-width: 860px;
  margin: 0 auto 34px;
}

.certificate-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: stretch;
}

.level-menu {
  display: grid;
  gap: 12px;
}

.level-tab {
  min-height: 58px;
  padding: 0 18px;
  text-align: left;
  color: #294866;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.level-tab.active {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.certificate-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 32px;
  min-height: 350px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.certificate-card h3,
.training-list h3,
.why-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
}

.certificate-card p,
.training-list p,
.why-grid p {
  color: var(--muted);
}

.certificate-card h4 {
  margin: 26px 0 8px;
  color: var(--ink);
}

.certificate-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.certificate-badge {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: linear-gradient(180deg, #f9fcff, #eef7ff);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.certificate-badge span {
  color: var(--ink);
  font-weight: 900;
}

.service-badge {
  padding: 26px;
}

.service-badge ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-badge li {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
}

.training {
  background: linear-gradient(180deg, #ffffff, #fafcff);
}

.training-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
}

.training-list {
  display: grid;
  gap: 20px;
}

.training-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.training-visual {
  display: grid;
  min-height: 360px;
  align-content: center;
  gap: 12px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.service-stack span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sky);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 900;
}

.during-title {
  margin: 48px 0 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

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

.during-grid article {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.during-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 50%;
  font-weight: 900;
}

.during-grid p {
  margin: 0;
  color: var(--muted);
}

.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  gap: 26px;
}

.why-grid article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.why-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(17, 132, 238, 0.08);
  font-size: 20px;
  font-weight: 900;
}

.services {
  background: #fafcff;
}

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

.service-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 77, 143, 0.08);
  font-size: 18px;
  font-weight: 900;
}

.service-grid img {
  display: block;
  width: 54px;
  height: 54px;
}

.service-grid span {
  display: block;
  line-height: 1.3;
}

.calendar-section {
  max-width: 1280px;
}

.calendar-toolbar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.calendar-toolbar button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  background: #294866;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}

.month-title {
  margin: 0 0 14px;
  text-align: center;
  color: var(--ink);
  font-size: 26px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.day {
  min-height: 118px;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #39516d;
  font-size: 13px;
  font-weight: 800;
}

.day.head {
  min-height: auto;
  color: var(--ink);
  background: #f3f7fb;
  text-align: center;
}

.day.muted {
  color: #9aa8b8;
}

.day.event {
  color: var(--ink);
  background: #f8fbff;
}

.day span {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 12px;
  line-height: 1.35;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.94)),
    radial-gradient(circle at 78% 30%, rgba(131, 191, 244, 0.22), transparent 35%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 22px));
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.cta p {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
}

.cta .primary-button {
  color: var(--white);
  background: var(--blue-dark);
}

.cta-logo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  min-height: 230px;
  align-content: center;
}

.cta-logo::before {
  position: absolute;
  inset: 24px;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 132, 238, 0.08);
  border-radius: 4px;
}

.cta-logo span {
  position: relative;
  display: grid;
  min-height: 74px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 77, 143, 0.08);
  font-weight: 900;
}

.video-section {
  position: relative;
  overflow: hidden;
  padding: 78px 22px;
  scroll-margin-top: 96px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #080b0f;
  background-size: 56px 56px;
}

.video-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 24%, rgba(17, 132, 238, 0.18), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(131, 191, 244, 0.1), transparent 28%);
  pointer-events: none;
}

.video-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

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

.video-heading p {
  margin: 0 0 10px;
  color: #e1222b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 34px;
}

.video-tabs button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  color: #c4cbd5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.video-tabs .active {
  color: var(--white);
  background: #e1222b;
  border-color: #e1222b;
}

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

.video-card {
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(225, 34, 43, 0.6);
  outline: 0;
}

.video-card.is-hidden {
  display: none;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #05070a;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  transform: scale(1.04);
  opacity: 0.95;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #e1222b;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(225, 34, 43, 0.36);
  transform: translate(-50%, -50%);
}

.play-icon::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--white);
  border-top: 9px solid transparent;
}

.video-card strong {
  display: block;
  min-height: 76px;
  padding: 14px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.video-more {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  padding: 0 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.video-more:hover,
.video-more:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 23, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.video-modal-dialog iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  right: -12px;
  top: -12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #e1222b;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: 100%;
  padding: 19px 22px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
}

.faq-item span {
  font-weight: 900;
}

.faq-item strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.faq-item.open strong {
  transform: rotate(45deg);
}

.registration {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: start;
  background: #fafcff;
}

.registration-mark {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 14px;
  color: var(--blue-dark);
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
}

.registration-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.registration-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.contact-form p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 45px;
  padding: 11px 12px;
  border: 1px solid #ccdbea;
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form .check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.references {
  background: var(--white);
}

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

.reference-grid span {
  display: grid;
  min-height: 84px;
  place-items: center;
  color: #7b8b9e;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  background: #fafcff;
}

.contact h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
}

.contact a:not(.primary-button),
.contact p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 800;
}

.contact .primary-button {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  gap: 10px;
  width: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel strong {
  color: var(--ink);
  font-size: 20px;
}

.contact-panel span {
  padding: 10px 12px;
  color: var(--blue-dark);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 40px 22px;
  color: #d9e9f8;
  background: #030c17;
  text-align: center;
}

.site-footer img {
  width: 118px;
  height: auto;
  opacity: 0.96;
}

.site-footer p {
  margin: 0;
  color: #a8bed5;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .whatsapp {
    display: none;
  }

  .site-header.open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    width: 100%;
    justify-content: stretch;
    border-top: 1px solid var(--line);
  }

  .site-header.open .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-inner,
  .certificate-layout,
  .certificate-card,
  .training-grid,
  .cta,
  .registration,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    text-align: center;
  }

  .during-grid,
  .service-grid,
  .reference-grid,
  .video-grid,
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta,
  .contact {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  .section,
  .section-narrow {
    padding: 52px 18px;
  }

  .hero-inner {
    padding: 50px 18px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .level-menu,
  .during-grid,
  .service-grid,
  .reference-grid,
  .video-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .cloud-features {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .feature-strip article {
    min-height: auto;
    padding: 18px;
  }

  .huawei-brand-card {
    width: min(100%, 300px);
    min-height: 240px;
    padding: 28px;
  }

  .huawei-emblem {
    width: 126px;
    height: 72px;
    margin-bottom: 18px;
  }

  .huawei-emblem span {
    width: 54px;
    height: 76px;
  }

  .huawei-emblem span:nth-child(1),
  .huawei-emblem span:nth-child(3) {
    height: 60px;
  }

  .huawei-emblem span:nth-child(2) {
    left: 36px;
    height: 78px;
  }

  .huawei-brand-card small {
    font-size: 13px;
  }

  .video-section {
    padding: 56px 18px;
  }

  .video-card strong {
    min-height: auto;
    padding: 12px;
    font-size: 13px;
  }

  .play-icon {
    width: 44px;
    height: 44px;
  }

  .calendar {
    display: block;
    border: 1px solid var(--line);
  }

  .day.head {
    display: none;
  }

  .day {
    min-height: 78px;
    border-right: 0;
  }

  .why-grid article {
    grid-template-columns: 1fr;
  }

  .why-icon {
    width: 140px;
  }

  .contact-panel {
    width: 100%;
    max-width: 280px;
  }
}
