body.mo-home {
  --bg: #050505;
  --bg2: #0b0d12;
  --panel: #0a0c11;
  --panel2: #111521;
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.05);
  --text: #f5f7fb;
  --muted: rgba(255, 255, 255, 0.74);
  --muted2: rgba(255, 255, 255, 0.56);
  --muted3: rgba(255, 255, 255, 0.36);
  --blue: #295fff;
  --glow: rgba(35, 84, 255, 0.42);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(960px 540px at 12% 8%, rgba(27, 74, 255, 0.28) 0%, rgba(10, 35, 130, 0.16) 24%, rgba(0, 0, 0, 0) 62%),
    radial-gradient(860px 420px at 84% 24%, rgba(15, 34, 108, 0.18) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, #050505 0%, #040404 100%);
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

body.mo-home * {
  box-sizing: border-box;
}

body.mo-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.008) 0 1px, transparent 1px 4px);
  opacity: 0.17;
  mix-blend-mode: screen;
  z-index: 0;
}

body.mo-home .container.main-container {
  display: block;
  max-width: 100%;
  padding: 0;
  gap: 0;
}

body.mo-home .left-sidebar,
body.mo-home .right-sidebar {
  display: none !important;
}

body.mo-home main.main {
  width: 100%;
  max-width: 100%;
  gap: 0;
  padding-top: 0;
}

body.mo-home #top,
body.mo-home #about,
body.mo-home #certifications,
body.mo-home #contact {
  scroll-margin-top: 104px;
}

body.mo-home a {
  color: inherit;
  text-decoration: none;
}

body.mo-home a:focus-visible,
body.mo-home button:focus-visible {
  outline: 2px solid #7ea0ff;
  outline-offset: 2px;
}

body.mo-home img {
  display: block;
  max-width: 100%;
}

body.mo-home button {
  font: inherit;
}

body.mo-home .shell {
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body.mo-home .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.28) 78%, rgba(5, 5, 5, 0));
  border-bottom: 1px solid transparent;
}

body.mo-home .nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

body.mo-home .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

body.mo-home .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 18px rgba(57, 94, 255, 0.56);
}

body.mo-home .nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  font-size: 12px;
  color: var(--muted2);
}

body.mo-home .nav-links::-webkit-scrollbar {
  display: none;
}

body.mo-home .nav-links a {
  transition: opacity 0.35s var(--ease), color 0.35s var(--ease);
}

body.mo-home .nav-links a:hover {
  opacity: 1;
  color: #fff;
}

body.mo-home .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

body.mo-home .lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.mo-home .lang-btn {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.35s var(--ease);
  font-size: 12px;
}

body.mo-home .lang-btn:hover,
body.mo-home .lang-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

body.mo-home .top-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
}

body.mo-home .top-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

body.mo-home .hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(720px 460px at 10% 30%, rgba(35, 84, 255, 0.42) 0%, rgba(15, 36, 118, 0.15) 30%, rgba(0, 0, 0, 0) 68%),
    radial-gradient(420px 280px at 78% 32%, rgba(25, 58, 215, 0.14) 0%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.018) 51%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #050505;
}

body.mo-home .hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: end;
  min-height: 640px;
  padding: 86px 0 54px;
}

body.mo-home .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted2);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.mo-home .kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5d8dff;
  box-shadow: 0 0 18px rgba(41, 95, 255, 0.7);
}

body.mo-home h1 {
  margin: 26px 0 22px;
  font-size: 74px;
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.075em;
  max-width: 760px;
}

body.mo-home .hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

body.mo-home .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

body.mo-home .btn-primary,
body.mo-home .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.mo-home .btn-primary {
  color: #111;
  background: linear-gradient(180deg, #f8f8fb 0%, #d8d9dd 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 10px 28px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 255, 255, 0.15);
}

body.mo-home .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

body.mo-home .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.mo-home .btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

body.mo-home .meta-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

body.mo-home .meta-pill {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.mo-home .portrait-wrap {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(490px, 100%);
  border-radius: 32px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    radial-gradient(540px 260px at 28% 84%, rgba(42, 92, 255, 0.18), rgba(0, 0, 0, 0) 70%),
    #0b0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

body.mo-home .portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body.mo-home .portrait {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.98) contrast(1.02);
}

body.mo-home .portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 4px 2px;
  position: relative;
  z-index: 1;
}

body.mo-home .portrait-title {
  font-size: 15px;
  font-weight: 600;
}

body.mo-home .portrait-copy {
  font-size: 12px;
  color: var(--muted2);
  max-width: 260px;
  line-height: 1.55;
}

body.mo-home .search-variants {
  padding: 22px 0 34px;
  color: var(--muted3);
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.mo-home .section {
  padding: 88px 0;
  position: relative;
}

body.mo-home .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 30px;
}

body.mo-home .eyebrow {
  color: #5f8fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

body.mo-home h2 {
  margin: 0;
  font-size: 56px;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.065em;
}

body.mo-home .section-sub {
  color: var(--muted2);
  max-width: 620px;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

body.mo-home .logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.mo-home .logo-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  transition: transform 0.38s var(--ease), border-color 0.38s var(--ease), box-shadow 0.38s var(--ease);
}

body.mo-home .logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.mo-home .logo-image-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body.mo-home .logo-image {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

body.mo-home .logo-strip .logo-image-wrap {
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

body.mo-home .logo-strip .logo-image {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
}

body.mo-home .logo-strip .logo-image-wrap.logo-image-wrap-wide {
  width: 68px;
}

body.mo-home .logo-strip .logo-image.logo-image-wide {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

body.mo-home .logo-name {
  font-size: 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.mo-home .logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

body.mo-home .focus-grid,
body.mo-home .pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

body.mo-home .focus-card,
body.mo-home .pillar-card {
  min-height: 240px;
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0d12;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

body.mo-home .focus-card,
body.mo-home .pillar-card,
body.mo-home .portrait-wrap,
body.mo-home .article-card {
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
}

body.mo-home .focus-card:hover,
body.mo-home .pillar-card:hover {
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) - 4px), 0);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

body.mo-home .focus-card::after,
body.mo-home .pillar-card::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(240px 140px at 82% 14%, rgba(37, 82, 255, 0.24), rgba(0, 0, 0, 0) 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

body.mo-home .card-kicker {
  color: #5f8fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

body.mo-home .card-title {
  font-size: 24px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

body.mo-home .card-body {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 320px;
}

body.mo-home .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.mo-home .article-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

body.mo-home .article-card:hover {
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) - 4px), 0);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

body.mo-home .article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

body.mo-home .article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.mo-home .article-card-body {
  padding: 18px;
}

body.mo-home .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

body.mo-home .article-tags a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7c7ff;
  border: 1px solid rgba(88, 123, 255, 0.28);
  background: rgba(55, 86, 204, 0.15);
  padding: 5px 8px;
  border-radius: 999px;
}

body.mo-home .article-card-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

body.mo-home .article-card-title a:hover {
  color: #d6dfff;
}

body.mo-home .article-card-summary {
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.7;
}

body.mo-home .article-card-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted3);
  font-size: 11px;
}

body.mo-home .article-card-meta a {
  color: #fff;
}

body.mo-home .home-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

body.mo-home .page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

body.mo-home .page-btn,
body.mo-home .page-num {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 12px;
  padding: 9px 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s var(--ease);
}

body.mo-home .page-btn:hover,
body.mo-home .page-num:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.mo-home .page-num.current {
  background: #fff;
  color: #111;
  border-color: #fff;
}

body.mo-home .page-num.dots {
  pointer-events: none;
  opacity: 0.6;
}

body.mo-home .page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

body.mo-home .about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

body.mo-home .about-panel,
body.mo-home .facts-panel,
body.mo-home .cert-panel,
body.mo-home .faq-panel,
body.mo-home .cta-panel {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.mo-home .about-copy p,
body.mo-home .cert-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  margin: 0 0 16px;
}

body.mo-home .facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.mo-home .fact-item {
  min-height: 110px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.mo-home .fact-label {
  font-size: 11px;
  color: var(--muted3);
  margin-bottom: 12px;
}

body.mo-home .fact-value {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

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

body.mo-home .cert-org-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.mo-home .cert-org-logo {
  min-height: 108px;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

body.mo-home .cert-org-logo .logo-image {
  width: 60px;
  height: 60px;
  max-height: none;
  max-width: none;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.mo-home .cert-org-logo .logo-image.logo-image-wide {
  width: 60px;
  height: 60px;
  max-width: none;
  max-height: none;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.mo-home .cert-org-logo .logo-name {
  font-size: 11px;
}

body.mo-home .cert-logo {
  min-height: 144px;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease);
}

body.mo-home .cert-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.022));
}

body.mo-home .cert-logo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.mo-home .cert-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(110, 153, 255, 0.26);
  background: rgba(43, 86, 204, 0.18);
  color: #d9e5ff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
}

body.mo-home .cert-link-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

body.mo-home .cert-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f6f8fb;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.mo-home .cert-foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

body.mo-home .cert-cta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}

body.mo-home .cert-issuer-logo-wrap {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

body.mo-home .cert-issuer-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

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

body.mo-home .faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

body.mo-home .faq-btn {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  padding: 20px 20px 18px;
  cursor: pointer;
  text-align: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

body.mo-home .faq-icon {
  color: var(--muted2);
  font-size: 18px;
  transition: transform 0.35s var(--ease);
}

body.mo-home .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.72;
  transition: max-height 0.42s var(--ease), padding 0.42s var(--ease);
}

body.mo-home .faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 20px 18px;
}

body.mo-home .faq-item.open .faq-icon {
  transform: rotate(45deg);
}

body.mo-home .cta-panel {
  padding: 38px;
  background:
    radial-gradient(480px 260px at 50% 20%, rgba(23, 68, 255, 0.32), rgba(16, 42, 130, 0.1) 32%, rgba(0, 0, 0, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  text-align: center;
}

body.mo-home .cta-title {
  font-size: 64px;
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.072em;
  max-width: 760px;
  margin: 0 auto 16px;
}

body.mo-home .cta-copy {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

body.mo-home .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

body.mo-home footer {
  padding: 34px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.mo-home .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 0.8fr));
  gap: 20px;
  align-items: start;
}

body.mo-home .footer-brand {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

body.mo-home .footer-copy {
  font-size: 13px;
  color: var(--muted2);
  max-width: 300px;
  line-height: 1.7;
}

body.mo-home .footer-col h5 {
  margin: 0 0 12px;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.02em;
}

body.mo-home .footer-col a {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 10px;
  line-height: 1.5;
}

body.mo-home .footer-col a:hover {
  color: #fff;
}

body.mo-home .footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted3);
  font-size: 11px;
}

body.mo-home .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

body.mo-home .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  body.mo-home .nav {
    gap: 16px;
  }

  body.mo-home .nav-links {
    gap: 12px;
    font-size: 11px;
  }

  body.mo-home .top-cta {
    display: none;
  }

  body.mo-home .hero-grid,
  body.mo-home .about-grid {
    grid-template-columns: 1fr;
  }

  body.mo-home .portrait-wrap {
    justify-self: start;
    width: min(560px, 100%);
  }

  body.mo-home .logo-strip,
  body.mo-home .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  body.mo-home .cert-org-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mo-home h1 {
    font-size: 62px;
  }

  body.mo-home .cta-title {
    font-size: 54px;
  }
}

@media (max-width: 780px) {
  body.mo-home .shell {
    width: min(var(--max), calc(100vw - 24px));
  }

  body.mo-home .nav {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  body.mo-home .header-actions {
    justify-self: start;
    flex-wrap: wrap;
  }

  body.mo-home .nav-links {
    justify-content: flex-start;
    gap: 14px;
    row-gap: 10px;
  }

  body.mo-home .hero {
    min-height: auto;
  }

  body.mo-home .hero-grid {
    padding: 36px 0 32px;
    min-height: auto;
  }

  body.mo-home h1 {
    font-size: 46px;
  }

  body.mo-home .hero-sub {
    font-size: 15px;
  }

  body.mo-home .meta-list,
  body.mo-home .focus-grid,
  body.mo-home .pillars,
  body.mo-home .facts-grid,
  body.mo-home .cert-org-grid,
  body.mo-home .cert-grid,
  body.mo-home .logo-strip,
  body.mo-home .footer-grid,
  body.mo-home .articles-grid {
    grid-template-columns: 1fr;
  }

  body.mo-home .section {
    padding: 68px 0;
  }

  body.mo-home h2 {
    font-size: 42px;
  }

  body.mo-home .cta-title {
    font-size: 42px;
  }

  body.mo-home .cert-title {
    font-size: 15px;
  }

  body.mo-home .cert-badge {
    font-size: 8px;
  }

  body.mo-home .portrait-caption,
  body.mo-home .footer-bottom,
  body.mo-home .home-pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  body.mo-home .lang-switcher {
    overflow: auto;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.mo-home *,
  body.mo-home *::before,
  body.mo-home *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  body.mo-home .reveal {
    opacity: 1;
    transform: none;
  }
}
