.fixed-cta {
        position: fixed;
        right: max(18px, calc((100vw - 1240px) / 2));
        bottom: 18px;
        z-index: 1000;
        display: none;
        align-items: center;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(230, 235, 239, .9);
        border-radius: 999px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 12px 30px rgba(28, 42, 55, .16);
        backdrop-filter: blur(10px);
      }

      .fixed-cta a {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0;
        white-space: nowrap;
      }

      .fixed-cta-login {
        min-width: 96px;
        padding: 0 18px;
        color: #40505b;
      }

      .fixed-cta-register {
        min-width: 138px;
        padding: 0 22px;
        background: linear-gradient(90deg, #23a9b4, #60b542);
        color: #fff;
        box-shadow: 0 8px 18px rgba(40, 164, 130, .24);
      }

      .fixed-cta.is-hidden {
        display: none;
      }

      @media (max-width: 560px) {
        body {
          padding-bottom: 82px;
        }

        .fixed-cta {
          right: 14px;
          bottom: 12px;
          left: 14px;
          display: flex;
          justify-content: stretch;
        }

        .fixed-cta.is-hidden {
          display: none;
        }

        .fixed-cta a {
          flex: 1;
          min-width: 0;
        }
      }
      .page-layout > .design-image-section,
      .page-layout > .faq {
        grid-column: 1 / -1;
        width: min(936px, 100%);
        margin-right: auto;
        margin-left: auto;
      }

      @media (min-width: 561px) {
        .page-layout > .faq .faq-list li {
          width: 100%;
        }
      }
      @media (min-width: 861px) {
        .nav {
          margin-left: auto;
        }

        .header-actions {
          flex-shrink: 0;
        }
      }