    :root {
      --bg: #f4f7fb;
      --bg-soft: #fafbfd;
      --card: rgba(255, 255, 255, 0.96);
      --line: #edf1f7;
      --line-strong: #e5ebf3;
      --text: #182544;
      --text-soft: #65728f;
      --text-muted: #8b96ad;
      --nav: #0e1627;
      --nav-deep: #09111d;
      --nav-mid: #10192b;
      --orange: #ff8d1f;
      --orange-strong: #ff6d00;
      --orange-soft: rgba(255, 141, 31, 0.1);
      --blue: #2f6df6;
      --blue-soft: #eef4ff;
      --shadow: 0 16px 40px rgba(20, 36, 74, 0.07);
      --shadow-soft: 0 10px 28px rgba(20, 36, 74, 0.05);
      --radius: 18px;
      --sidebar-width: 186px;
      --transition: 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 70% 10%, rgba(255, 166, 76, 0.16), transparent 18%),
        radial-gradient(circle at 10% 18%, rgba(59, 130, 246, 0.08), transparent 15%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
      overflow-x: hidden;
      min-width: 320px;
    }

    html.no-scroll,
    body.no-scroll {
      overflow: hidden;
      touch-action: none;
    }

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

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .page-layout {
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      position: relative;
    }

    .sidebar {
      position: sticky;
      top: 0;
      height: 100vh;
      flex: 0 0 var(--sidebar-width);
      width: var(--sidebar-width);
      color: #fff;
      background:
        radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.11), transparent 20%),
        radial-gradient(circle at 95% 82%, rgba(255, 141, 31, 0.12), transparent 18%),
        linear-gradient(180deg, #111b2b 0%, #0c1524 48%, #09111d 100%);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 16px 0 38px rgba(3, 9, 20, 0.26);
      z-index: 40;
      overflow: hidden;
    }

    .sidebar::before,
    .sidebar::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(42px);
      opacity: 0.35;
    }

    .sidebar::before {
      width: 140px;
      height: 140px;
      left: 0;
      top: -30px;
      background: rgba(255, 255, 255, 0.12);
      transform: translateX(-28%);
    }

    .sidebar::after {
      width: 100px;
      height: 100px;
      right: 0;
      bottom: 90px;
      background: rgba(255, 138, 28, 0.14);
      transform: translateX(20%);
    }

    .sidebar__inner {
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 20px 14px 18px;
      position: relative;
      z-index: 1;
    }

    .sidebar__brand {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-right: 40px;
      position: relative;
    }

    .sidebar__brand-box,
    .topbar__brand-box,
    .footer-brand__box {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      position: relative;
      overflow: hidden;
    }

    .sidebar__brand-box {
      color: #f6f9ff;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .sidebar__brand-title,
    .topbar__brand-title,
    .footer-brand__title {
      font-weight: 800;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    .sidebar__brand-title {
      font-size: 17px;
      color: #fff;
    }

    .sidebar__brand-subtitle,
    .topbar__brand-subtitle,
    .footer-brand__subtitle {
      margin-top: 4px;
      line-height: 1.35;
    }

    .sidebar__brand-subtitle {
      font-size: 11px;
      color: rgba(223, 231, 245, 0.68);
    }

    .sidebar__close {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      transition: background-color var(--transition), transform var(--transition);
    }

    .sidebar__close:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-50%) scale(1.02);
    }

    .sidebar__status {
      margin-top: 18px;
      padding: 16px 14px 14px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .sidebar__status-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .sidebar__status-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .sidebar__status-time {
      font-size: 13px;
      font-weight: 800;
      color: #ffc83d;
    }

    .sidebar__progress {
      height: 8px;
      margin: 12px 0 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      overflow: hidden;
    }

    .sidebar__progress-bar {
      width: 82%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #ffb62b 0%, #ff7d15 100%);
      box-shadow: 0 6px 12px rgba(255, 134, 25, 0.28);
    }

    .sidebar__status-text {
      margin: 0;
      font-size: 11px;
      line-height: 1.65;
      color: rgba(224, 232, 246, 0.72);
    }

    .sidebar__menu {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .menu-item {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 14px;
      border-radius: 16px;
      font-size: 14px;
      font-weight: 700;
      color: rgba(234, 239, 250, 0.88);
      border: 1px solid transparent;
      background: transparent;
      transition:
        transform 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease,
        color 220ms ease;
    }

    .menu-item svg {
      width: 18px;
      height: 18px;
    }

    .menu-item:hover,
    .menu-item:focus-visible {
      transform: translateX(2px);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      outline: none;
    }

    .menu-item--outline {
      border-color: rgba(255, 148, 36, 0.75);
      color: #fff;
      background: rgba(255, 141, 31, 0.08);
      box-shadow: 0 12px 24px rgba(255, 141, 31, 0.12);
    }

    .menu-item--outline:hover,
    .menu-item--outline:focus-visible {
      background: rgba(255, 141, 31, 0.16);
    }

    .menu-item--active {
      background: linear-gradient(180deg, rgba(43, 95, 217, 0.28), rgba(28, 71, 168, 0.2));
      border-color: rgba(114, 156, 255, 0.36);
      color: #fff;
      box-shadow: 0 14px 26px rgba(41, 89, 197, 0.16);
    }

    .menu-item__end {
      margin-left: auto;
      opacity: 0.78;
    }

    .sidebar__footer {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sidebar__support {
      padding: 14px 14px 13px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sidebar__support-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 800;
      color: #fff;
    }

    .sidebar__support-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #ffcb3f, #ff9c17);
      color: #533102;
      box-shadow: 0 8px 14px rgba(255, 162, 36, 0.26);
    }

    .sidebar__support-text {
      margin: 10px 0 0 32px;
      font-size: 11px;
      line-height: 1.7;
      color: rgba(224, 232, 246, 0.72);
    }

    .sidebar__search-all {
      width: 100%;
      min-height: 50px;
      border: 0;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 800;
      color: #3e2800;
      background: linear-gradient(180deg, #ffc92f 0%, #ffb00f 100%);
      box-shadow: 0 16px 28px rgba(255, 176, 15, 0.24);
      transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    }

    .sidebar__search-all:hover,
    .sidebar__search-all:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(255, 176, 15, 0.32);
      filter: saturate(1.02);
      outline: none;
    }

    .page-main {
      flex: 1 1 auto;
      min-width: 0;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(232, 237, 244, 0.92);
      box-shadow: 0 8px 26px rgba(24, 39, 78, 0.05);
      backdrop-filter: blur(18px);
    }

    .topbar__inner {
      margin: 0 auto;
      max-width: 1400px;
      padding: 16px 26px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .topbar__menu-toggle {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--text);
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-soft);
      transition: border-color var(--transition), color var(--transition), transform var(--transition);
    }

    .topbar__menu-toggle:hover,
    .topbar__menu-toggle:focus-visible {
      color: var(--orange-strong);
      border-color: rgba(255, 141, 31, 0.4);
      transform: translateY(-1px);
      outline: none;
    }

    .topbar__brand-row {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .topbar__brand-box {
      color: var(--orange);
      background: linear-gradient(180deg, #fffaf2 0%, #fff4e3 100%);
      border: 1px solid #ffe6c0;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .topbar__brand-title {
      font-size: 16px;
      color: #1c2a4a;
    }

    .topbar__brand-subtitle {
      font-size: 11px;
      color: #96a1b7;
    }

    .topbar__nav {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: 6px;
      min-width: 0;
    }

    .topbar__nav-link {
      position: relative;
      padding: 10px 0;
      font-size: 15px;
      font-weight: 800;
      color: #1c2745;
      transition: color 180ms ease;
      white-space: nowrap;
    }

    .topbar__nav-link:hover,
    .topbar__nav-link:focus-visible {
      color: var(--orange-strong);
      outline: none;
    }

    .topbar__nav-link.is-active {
      color: var(--orange-strong);
    }

    .topbar__nav-link.is-active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -17px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ffc22f, #ff7c15);
    }

    .topbar__actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .search-form {
      position: relative;
      display: flex;
      align-items: center;
      width: 244px;
      min-width: 0;
      height: 44px;
      padding: 0 14px 0 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fcfdff 0%, #fafcff 100%);
      box-shadow: var(--shadow-soft);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .search-form:focus-within {
      border-color: rgba(255, 141, 31, 0.48);
      box-shadow: 0 14px 24px rgba(255, 141, 31, 0.12);
    }

    .search-form__submit {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      border: 0;
      padding: 0;
      background: transparent;
      color: #8e99af;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: color 180ms ease;
    }

    .search-form:hover .search-form__submit,
    .search-form:focus-within .search-form__submit {
      color: var(--orange-strong);
    }

    .search-form input {
      width: 100%;
      border: 0;
      padding: 0;
      outline: none;
      background: transparent;
      color: #273350;
      font-size: 13px;
      font-weight: 600;
    }

    .search-form input::placeholder {
      color: #a0abbe;
    }

    .topbar__icon-group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-button {
      position: relative;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #ffffff, #fafcff);
      color: #1c2745;
      box-shadow: var(--shadow-soft);
      transition:
        transform 220ms ease,
        color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
    }

    .icon-button:hover,
    .icon-button:focus-visible {
      transform: translateY(-1px);
      color: var(--orange-strong);
      border-color: rgba(255, 141, 31, 0.4);
      box-shadow: 0 14px 24px rgba(255, 141, 31, 0.12);
      outline: none;
    }

    .icon-button__badge {
      position: absolute;
      top: -1px;
      right: -1px;
      min-width: 16px;
      height: 16px;
      padding: 0 4px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #ff9e28, #ff6d00);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      box-shadow: 0 6px 14px rgba(255, 109, 0, 0.28);
    }

    .page-main__canvas {
      position: relative;
      flex: 1 1 auto;
      padding: 18px 24px 44px;
      overflow: hidden;
    }

    .page-main__canvas::before,
    .page-main__canvas::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(42px);
      opacity: 0.4;
    }

    .page-main__canvas::before {
      width: 240px;
      height: 240px;
      top: 42px;
      right: 90px;
      background: rgba(255, 176, 15, 0.12);
    }

    .page-main__canvas::after {
      width: 220px;
      height: 220px;
      bottom: 120px;
      left: 16px;
      background: rgba(61, 132, 255, 0.08);
    }

    .content-inner {
      position: relative;
      z-index: 1;
      margin: 0 auto;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0 2px;
      font-size: 14px;
      font-weight: 700;
      color: #6f7c96;
    }

    .breadcrumb__sep {
      color: #b5bed0;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible {
      color: var(--orange-strong);
      outline: none;
    }

    .breadcrumb__current {
      color: var(--orange-strong);
    }

    .hero {
      display: grid;
      grid-template-columns: 132px minmax(0, 1fr) auto;
      gap: 28px;
      align-items: start;
      margin-top: 22px;
      padding: 0 2px 18px;
    }

    .hero__logo-card {
      width: 132px;
      height: 102px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vogt-mark {
      width: 104px;
      height: 62px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #17272a;
      font-size: 24px;
      font-weight: 400;
    }

    .vogt-mark::before,
    .vogt-mark::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: #7dbf5b;
      border-radius: 999px;
    }

    .vogt-mark::before {
      top: 0;
    }

    .vogt-mark::after {
      bottom: 0;
    }

    .vogt-mark__triangle {
      position: absolute;
      bottom: -7px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 8px solid #7dbf5b;
    }

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

    .hero__title {
      margin: 0;
      font-size: clamp(34px, 4.1vw, 52px);
      line-height: 1.04;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #122243;
    }

    .hero__badge {
      padding: 6px 11px;
      border-radius: 12px;
      border: 1px solid rgba(255, 141, 31, 0.56);
      background: rgba(255, 255, 255, 0.94);
      color: var(--orange-strong);
      font-size: 15px;
      font-weight: 800;
      box-shadow: 0 10px 18px rgba(255, 141, 31, 0.1);
    }

    .hero__subtitle {
      margin: 16px 0 12px;
      font-size: 17px;
      line-height: 1.55;
      font-weight: 800;
      color: #243253;
    }

    .hero__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero__tag {
      padding: 6px 10px;
      border-radius: 10px;
      border: 1px solid #edf1f6;
      background: #f7f9fc;
      color: #6d7b96;
      font-size: 12px;
      font-weight: 700;
      transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .hero__tag:hover,
    .hero__tag:focus-visible {
      background: #fff8ef;
      border-color: #ffdba6;
      color: var(--orange-strong);
      outline: none;
    }

    .hero__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
      padding-top: 8px;
    }

    .hero__action-row {
      display: flex;
      gap: 14px;
    }

    .btn {
      min-width: 138px;
      height: 48px;
      padding: 0 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: 15px;
      font-weight: 800;
      line-height: 48px;
      text-align: center;
      vertical-align: middle;
      transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease;
      user-select: none;
    }

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

    .btn:active {
      transform: translateY(0);
    }

    .btn--outline {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(255, 141, 31, 0.56);
      color: var(--orange-strong);
      box-shadow: 0 10px 18px rgba(255, 141, 31, 0.08);
    }

    .btn--outline:hover,
    .btn--outline:focus-visible {
      background: #fff8ef;
      box-shadow: 0 14px 22px rgba(255, 141, 31, 0.14);
    }

    .btn--outline.is-saved {
      background: linear-gradient(180deg, #fff6ea 0%, #fff2df 100%);
      border-color: rgba(255, 141, 31, 0.74);
      color: #ff7000;
    }

    .btn--primary {
      background: linear-gradient(180deg, #ff9120 0%, #ff6d00 100%);
      color: #fff;
      box-shadow: 0 16px 28px rgba(255, 109, 0, 0.22);
    }

    .btn--primary:hover,
    .btn--primary:focus-visible {
      box-shadow: 0 18px 30px rgba(255, 109, 0, 0.3);
      filter: saturate(1.02);
    }

    .hero__updated {
      font-size: 14px;
      font-weight: 700;
      color: #7c879f;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.72fr) 322px;
      gap: 22px;
      align-items: start;
    }

    .stack {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .section-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px 15px;
      border-bottom: 1px solid #f1f4f8;
    }

    .section-heading__line {
      width: 4px;
      height: 18px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ffa62d 0%, #ff6d00 100%);
      box-shadow: 0 4px 10px rgba(255, 141, 31, 0.2);
    }

    .section-heading h2 {
      margin: 0;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 800;
      color: #19284a;
    }

    .section-heading--side {
      border-bottom: 0;
      padding-bottom: 10px;
    }

    .info-strip {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      padding: 14px 14px 6px;
    }

    .info-strip__item {
      position: relative;
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
      min-height: 78px;
      padding: 12px 14px;
    }

    .info-strip__item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 12px;
      bottom: 12px;
      width: 1px;
      background: var(--line);
    }

    .info-strip__icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%);
      color: var(--blue);
      border: 1px solid #dfe9ff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
      flex: 0 0 auto;
    }

    .info-strip__label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: #7a87a1;
    }

    .info-strip__value {
      margin-top: 5px;
      display: block;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 800;
      color: #19284a;
      word-break: break-all;
    }

    .info-strip__value--link {
      color: var(--blue);
    }

    .info-strip__content--contact {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .info-strip__item--contact {
      align-items: flex-start;
    }

    .info-strip__value--contact {
      font-size: 12px;
      line-height: 1.6;
      font-weight: 700;
      word-break: break-word;
      overflow-wrap: anywhere;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      max-width: 100%;
    }

    .intro {
      display: grid;
      grid-template-columns: 238px minmax(0, 1fr);
      gap: 20px;
      padding: 18px 20px 22px;
      align-items: start;
    }

    .intro__visual {
      position: relative;
      height: 184px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #d9e0ea;
      /* background: #14202d; */
      box-shadow: 0 14px 24px rgba(19, 33, 56, 0.14);
    }

    .intro__text p {
      margin: 0 0 11px;
      font-size: 15px;
      line-height: 1.92;
      color: #3a4764;
      font-weight: 600;
    }

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

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      padding: 18px 18px 14px;
    }

    .feature-card {
      min-height: 148px;
      padding: 18px 16px 16px;
      border-radius: 16px;
      border: 1px solid #eef2f7;
      background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
      text-align: center;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .feature-card:hover,
    .feature-card:focus-within {
      transform: translateY(-2px);
      border-color: #ffdcb0;
      box-shadow: 0 14px 24px rgba(255, 141, 31, 0.12);
    }

    .feature-card__icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 12px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: var(--orange-strong);
      background: #fff8ef;
      border: 1px solid #ffe3be;
    }

    .feature-card__title {
      margin: 0 0 7px;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 800;
      color: #1b2949;
    }

    .feature-card__desc {
      margin: 0;
      font-size: 12px;
      line-height: 1.72;
      color: #5d6985;
      font-weight: 700;
    }

    .table-wrap {
      padding: 18px 18px 10px;
      overflow-x: auto;
    }

    .table-shell {
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 640px;
    }

    thead th {
      padding: 13px 12px;
      background: #f7f9fc;
      color: #67748f;
      font-size: 13px;
      font-weight: 800;
      text-align: left;
      border-bottom: 1px solid var(--line);
      white-space: nowrap;
    }

    tbody td {
      padding: 13px 12px;
      font-size: 14px;
      line-height: 1.45;
      color: #2a3855;
      font-weight: 700;
      border-bottom: 1px solid #eef2f6;
      background: #fff;
      transition: background-color 180ms ease;
    }

    tbody td.case-name-cell {
      max-width: 300px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    tbody tr:hover td {
      background: #fbfdff;
    }

    .table-link {
      color: var(--blue);
      font-weight: 800;
    }

    .table-link:hover,
    .table-link:focus-visible {
      color: #114fd1;
      outline: none;
      text-decoration: underline;
      text-decoration-thickness: 1px;
    }

    .pagination-container {
      padding: 12px 18px 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
      overflow-x: auto;
      white-space: nowrap;
    }

    .section-foot {
      padding: 0 18px 18px;
      display: flex;
      justify-content: center;
    }

    .link-button {
      border: 0;
      background: transparent;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 800;
      padding: 8px 10px;
      border-radius: 10px;
      transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .link-button:hover,
    .link-button:focus-visible {
      background: #f1f6ff;
      color: #114fd1;
      transform: translateY(-1px);
      outline: none;
    }

    .side-card {
      padding-bottom: 6px;
    }

    .overview-list,
    .advantage-list,
    .contact-list {
      list-style: none;
      margin: 0;
      padding: 0 18px 18px;
    }

    .overview-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .overview-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      font-size: 14px;
      line-height: 1.65;
      color: #2d3b59;
      font-weight: 700;
    }

    .overview-item .icon {
      width: 20px;
      height: 20px;
      color: var(--orange-strong);
      margin-top: 2px;
    }

    .overview-item strong {
      color: #1d2948;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0 18px 18px;
    }

    .tag-button {
      border: 1px solid #edf1f6;
      background: #f7f9fc;
      color: #46526d;
      border-radius: 12px;
      padding: 9px 12px;
      font-size: 13px;
      font-weight: 800;
      transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .tag-button:hover,
    .tag-button:focus-visible {
      background: #fff8ef;
      border-color: #ffd8ab;
      color: var(--orange-strong);
      transform: translateY(-1px);
      outline: none;
    }

    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (max-width: 1199px) {
      .content-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        grid-template-columns: 120px minmax(0, 1fr);
      }

      .hero__actions {
        grid-column: 1 / -1;
        align-items: flex-start;
      }

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

    @media (max-width: 767px) {
      .content-inner,
      .content-grid,
      .stack,
      .hero,
      .hero > div,
      .hero__actions,
      .hero__action-row,
      .card,
      .side-card {
        min-width: 0;
      }

      .content-inner {
        gap: 18px;
      }

      .breadcrumb {
        font-size: 12px;
        gap: 8px;
        padding: 0 2px;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        white-space: normal;
      }

      .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px 0;
      }

      .hero__logo-card {
        width: 108px;
        height: 84px;
      }

      .hero__title-row {
        flex-wrap: wrap;
        gap: 10px;
      }

      .hero__title {
        font-size: 28px;
        line-height: 1.2;
        word-break: break-word;
      }

      .hero__subtitle {
        margin: 12px 0 10px;
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
      }

      .hero__tags {
        gap: 8px;
      }

      .hero__tag {
        font-size: 12px;
        padding: 6px 9px;
      }

      .hero__actions {
        width: 100%;
        align-items: stretch;
        gap: 12px;
        padding-top: 0;
      }

      .hero__action-row {
        width: 100%;
        flex-direction: column;
        gap: 12px;
      }

      .hero__action-row .btn,
      .btn,
      .contact-card__action {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
      }

      .hero__updated {
        font-size: 12px;
      }

      .card {
        border-radius: 18px;
        overflow: hidden;
      }

      .section-heading {
        padding: 18px 18px 0;
      }

      .info-strip,
      .intro,
      .table-wrap,
      .side-card,
      .data-point-list,
      .note-panel,
      .team-grid,
      .faq-list,
      .contact-list,
      .tag-cloud,
      .cert-grid {
        padding-left: 18px;
        padding-right: 18px;
      }

      .info-strip {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .info-strip__item {
        padding: 14px 0;
      }

      .info-strip__item:not(:last-child)::after {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
      }

      .feature-grid,
      .cert-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .feature-card {
        min-height: auto;
        padding: 16px 14px;
      }

      .table-wrap {
        padding-top: 16px;
        padding-bottom: 8px;
      }

      .table-shell {
        min-width: 720px;
      }

      th,
      td {
        white-space: nowrap;
      }

      .contact-list {
        gap: 10px;
      }
    }

    @media (max-width: 479px) {
      .hero {
        padding: 16px;
      }

      .hero__logo-card {
        width: 96px;
        height: 76px;
      }

      .hero__title {
        font-size: 24px;
      }

      .section-heading {
        padding: 16px 16px 0;
      }

      .info-strip,
      .intro,
      .table-wrap,
      .side-card,
      .data-point-list,
      .note-panel,
      .team-grid,
      .faq-list,
      .contact-list {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero__badge {
        padding: 5px 10px;
        font-size: 11px;
      }
    }

    .advantage-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      font-size: 14px;
      line-height: 1.68;
      color: #33405e;
      font-weight: 700;
    }

    .advantage-item .icon {
      width: 20px;
      height: 20px;
      color: #284fb5;
      margin-top: 1px;
    }

    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-bottom: 14px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      color: var(--blue);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.5;
    }

    .contact-item .icon {
      width: 20px;
      height: 20px;
      color: var(--orange-strong);
    }

    .contact-item a {
      transition: color 180ms ease;
      word-break: break-all;
    }

    .contact-item a:hover,
    .contact-item a:focus-visible {
      color: #114fd1;
      outline: none;
    }

    .contact-card__action {
      margin: 0 18px 18px;
      width: calc(100% - 36px);
    }

    .cert-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ff8c00;
      color: #ffffff;
      font-size: 12px;
      font-weight: bold;
      margin-right: 8px;
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 0 18px 18px;
    }

    .cert-item {
      min-height: 90px;
      padding: 14px 10px;
      border-radius: 16px;
      border: 1px solid #e8edf5;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .cert-item:hover,
    .cert-item:focus-within {
      border-color: #d9e6ff;
      box-shadow: 0 12px 20px rgba(43, 95, 217, 0.08);
      transform: translateY(-1px);
    }

    .cert-item__icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      background: #e8f4fc;
      border: 2px solid #4a9eff;
    }

    .cert-icon-blue {
      background: #e8f4fc;
      border-color: #4a9eff;
    }

    .cert-check {
      color: #4a9eff;
      font-size: 18px;
      font-weight: bold;
    }

    .cert-star {
      color: #ffb800;
      font-size: 18px;
    }

    .cert-item__meta {
      text-align: center;
      min-width: 0;
    }

    .cert-item__label {
      display: block;
      font-size: 12px;
      line-height: 1.45;
      color: #6f7c95;
      font-weight: 600;
    }

    .cert-item__value {
      display: block;
      margin-top: 3px;
      font-size: 13px;
      line-height: 1.35;
      color: #1c2746;
      font-weight: 700;
    }

    .site-footer {
      position: relative;
      background:
        radial-gradient(circle at 85% 18%, rgba(255, 141, 31, 0.08), transparent 16%),
        radial-gradient(circle at 10% 30%, rgba(72, 130, 255, 0.08), transparent 14%),
        linear-gradient(180deg, #111a2b 0%, #0b1423 100%);
      color: #e6ecf7;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: auto auto 0 -80px;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: rgba(255, 141, 31, 0.06);
      filter: blur(44px);
    }

    .site-footer__inner {
      max-width: 1254px;
      margin: 0 auto;
      padding: 34px 30px 36px;
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr) auto;
      gap: 26px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand__box {
      color: #ffc73d;
      background: linear-gradient(180deg, rgba(255, 199, 61, 0.18), rgba(255, 199, 61, 0.08));
      border: 1px solid rgba(255, 199, 61, 0.18);
    }

    .footer-brand__title {
      font-size: 18px;
      color: #fff;
    }

    .footer-brand__subtitle {
      font-size: 12px;
      color: rgba(220, 228, 241, 0.68);
    }

    .footer-center {
      min-width: 0;
    }

    .footer-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 14px;
      font-weight: 700;
      color: rgba(231, 237, 247, 0.9);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #ffc447;
      outline: none;
    }

    .footer-meta {
      margin-top: 14px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 18px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(208, 218, 235, 0.74);
    }

    .footer-contact {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 14px;
      font-size: 13px;
      font-weight: 700;
      color: rgba(231, 237, 247, 0.88);
    }

    .footer-contact__title {
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      margin-right: 6px;
    }

    .footer-contact__item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .footer-contact__item .icon {
      color: #fff;
      opacity: 0.92;
    }

    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 14, 25, 0.5);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity var(--transition), visibility var(--transition);
      z-index: 70;
    }

    .toast {
      position: fixed;
      top: 24px;
      right: 24px;
      z-index: 110;
      min-width: 240px;
      max-width: min(420px, calc(100vw - 32px));
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(17, 26, 43, 0.96);
      color: #fff;
      box-shadow: 0 18px 40px rgba(12, 20, 35, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.6;
      transform: translateY(-10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

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

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity var(--transition), visibility var(--transition);
    }

    .modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(7, 14, 25, 0.52);
    }

    .modal__dialog {
      position: relative;
      z-index: 1;
      width: min(460px, calc(100vw - 30px));
      margin: min(10vh, 80px) auto 0;
      padding: 24px 24px 22px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 26px 54px rgba(12, 20, 35, 0.28);
      transform: translateY(12px) scale(0.98);
      transition: transform var(--transition);
      outline: none;
    }

    .modal.is-open .modal__dialog {
      transform: translateY(0) scale(1);
    }

    .modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fbfcff;
      color: #1d2948;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .modal__close:hover,
    .modal__close:focus-visible {
      color: var(--orange-strong);
      border-color: rgba(255, 141, 31, 0.4);
      transform: translateY(-1px);
      outline: none;
    }

    .modal__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange-strong);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .modal__title {
      margin: 14px 0 10px;
      font-size: 28px;
      line-height: 1.2;
      color: #172545;
      font-weight: 800;
    }

    .modal__desc {
      margin: 0 0 20px;
      color: #60708d;
      font-size: 14px;
      line-height: 1.8;
      font-weight: 600;
    }

    .modal__list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .modal__item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 16px;
      background: #f8fafd;
      border: 1px solid #edf1f7;
    }

    .modal__item-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--orange-strong);
      background: #fff7eb;
      border: 1px solid #ffe1b7;
    }

    .modal__item-label {
      display: block;
      font-size: 12px;
      line-height: 1.4;
      color: #7c89a0;
      font-weight: 700;
    }

    .modal__item-value {
      display: block;
      margin-top: 4px;
      font-size: 15px;
      line-height: 1.45;
      color: #1d2948;
      font-weight: 800;
      word-break: break-all;
    }

    .modal__actions {
      display: flex;
      gap: 12px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .modal__actions .btn {
      min-width: 0;
      flex: 1 1 0;
    }

    .backtop {
      position: fixed;
      right: 28px;
      bottom: 28px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 22, 39, 0.92);
      color: #fff;
      box-shadow: 0 16px 34px rgba(12, 20, 35, 0.34);
      z-index: 80;
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background-color 180ms ease;
    }

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

    .backtop:hover,
    .backtop:focus-visible {
      background: #182847;
      outline: none;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(12px);
    }

    body.is-ready [data-reveal] {
      animation: fade-up 560ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

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

    @media (max-width: 1199px) {
      :root {
        --sidebar-width: 168px;
      }

      .topbar__inner,
      .content-inner {
        max-width: 100%;
      }

      .topbar__inner {
        padding: 16px 20px;
        gap: 18px;
      }

      .topbar__nav {
        gap: 22px;
      }

      .topbar__nav-link {
        font-size: 14px;
      }

      .search-form {
        width: 212px;
      }

      .page-main__canvas {
        padding: 18px 18px 40px;
      }

      .hero {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 22px;
      }

      .hero__logo-card {
        width: 118px;
        height: 94px;
      }

      .hero__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 0;
      }

      .content-grid {
        grid-template-columns: minmax(0, 1fr) 304px;
      }

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

      .info-strip__item:nth-child(3)::after {
        display: none;
      }

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

      .site-footer__inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .footer-contact {
        justify-content: flex-start;
      }
    }

    @media (max-width: 930px) {
      .content-grid {
        grid-template-columns: 1fr;
      }

      .topbar__nav {
        gap: 16px;
      }

      .search-form {
        width: 184px;
      }

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

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

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

    @media (max-width: 767px) {
      .page-layout {
        display: block;
      }

      .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(84vw, 336px);
        max-width: 336px;
        height: 100dvh;
        transform: translateX(-104%);
        transition: transform var(--transition);
        z-index: 80;
      }

      .sidebar__inner {
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: max(16px, env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom));
      }

      .sidebar__close {
        display: inline-flex;
      }

      body.sidebar-open .sidebar {
        transform: translateX(0);
      }

      body.sidebar-open .sidebar-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .topbar__inner {
        padding: max(12px, env(safe-area-inset-top)) 14px 14px;
        gap: 12px;
        flex-wrap: wrap;
      }

      .topbar__menu-toggle {
        display: inline-flex;
      }

      .topbar__brand-row {
        flex: 1 1 auto;
        min-width: 0;
      }

      .topbar__brand-subtitle {
        display: none;
      }

      .topbar__nav {
        display: none;
      }

      .topbar__actions {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
        gap: 10px;
      }

      .search-form {
        width: auto;
        flex: 1 1 auto;
      }

      .page-main__canvas {
        padding: 14px 14px 32px;
      }

      .breadcrumb {
        gap: 8px;
        font-size: 13px;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .hero__logo-card {
        width: 136px;
      }

      .hero__actions {
        align-items: stretch;
        flex-direction: column;
      }

      .hero__action-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .btn {
        min-width: 0;
      }

      .info-strip {
        grid-template-columns: 1fr;
        padding: 10px 12px 6px;
      }

      .info-strip__item {
        padding: 12px 10px;
      }

      .info-strip__item::after {
        display: none;
      }

      .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .table-wrap {
        padding: 12px;
        overflow-x: auto;
      }

      table {
        min-width: 0;
        width: 100%;
      }

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

      .site-footer__inner {
        padding: 28px 16px 92px;
      }

      .footer-links,
      .footer-meta,
      .footer-contact {
        gap: 12px;
      }

      .footer-contact__title {
        font-size: 16px;
        margin-right: 0;
      }

      .toast {
        top: 18px;
        right: 14px;
      }

      .modal__dialog {
        margin-top: 72px;
        padding: 22px 18px 18px;
      }

      .modal__title {
        font-size: 24px;
      }

      .modal__actions .btn {
        flex-basis: 100%;
      }

      .backtop {
        right: 16px;
        bottom: 18px;
      }
    }

    @media (max-width: 520px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .hero__action-row {
        grid-template-columns: 1fr;
      }

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

    @media (prefers-reduced-motion: reduce) {

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